diff --git a/Cargo.toml b/Cargo.toml index 0f056de1..2e763d40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,13 @@ repository = "https://github.com/tree-sitter/tree-sitter-php" edition = "2018" build = "bindings/rust/build.rs" -include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] +include = [ + "bindings/rust/*", + "tree-sitter-php/src/*", + "tree-sitter-php-only/src/*", + "tree-sitter-php/src/queries/*", + "tree-sitter-php-only/src/queries/*", +] [lib] path = "bindings/rust/lib.rs" diff --git a/Package.swift b/Package.swift index 135e8662..35ed5528 100644 --- a/Package.swift +++ b/Package.swift @@ -4,25 +4,29 @@ import PackageDescription let package = Package( name: "TreeSitterPHP", products: [ - .library(name: "TreeSitterPHP", targets: ["TreeSitterPHP"]), + .library(name: "TreeSitterPHP", targets: ["TreeSitterPHP", "TreeSitterPHPOnly"]), ], dependencies: [], targets: [ .target(name: "TreeSitterPHP", - path: ".", + path: "tree-sitter-php", + exclude: [ + "corpus", + "grammar.js", + ], + sources: [ + "src/parser.c", + ], + resources: [ + .copy("queries") + ], + publicHeadersPath: "bindings/swift", + cSettings: [.headerSearchPath("src")]) + .target(name: "TreeSitterPHPOnly", + path: "tree-sitter-php-only", exclude: [ - "binding.gyp", - "bindings", - "Cargo.toml", "corpus", "grammar.js", - "LICENSE", - "Makefile", - "package.json", - "README.md", - "script", - "src/grammar.json", - "src/node-types.json", ], sources: [ "src/parser.c", diff --git a/binding.gyp b/binding.gyp index 8a07b400..cbc7531f 100644 --- a/binding.gyp +++ b/binding.gyp @@ -4,11 +4,13 @@ "target_name": "tree_sitter_php_binding", "include_dirs": [ " exports, Local module) { tpl->InstanceTemplate()->SetInternalFieldCount(1); Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); + Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); Nan::SetInternalFieldPointer(instance, 0, tree_sitter_php()); - Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("php").ToLocalChecked()); - Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); + Nan::Set(module, Nan::New("php").ToLocalChecked(), instance); + + Local instance_only = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); + Nan::SetInternalFieldPointer(instance_only, 0, tree_sitter_php_only()); + Nan::Set(instance_only, Nan::New("name").ToLocalChecked(), Nan::New("php_only").ToLocalChecked()); + Nan::Set(module, Nan::New("php_only").ToLocalChecked(), instance_only); } NODE_MODULE(tree_sitter_php_binding, Init) -} // namespace \ No newline at end of file +} // namespace diff --git a/bindings/node/index.js b/bindings/node/index.js index 61ef5153..152c6480 100644 --- a/bindings/node/index.js +++ b/bindings/node/index.js @@ -15,5 +15,6 @@ try { } try { - module.exports.nodeTypeInfo = require("../../src/node-types.json"); + module.exports.nodeTypeInfo = require("../../tree-sitter-php/src/node-types.json"); + module.exports.nodeTypeInfoOnly = require("../../tree-sitter-php-only/src/node-types.json"); } catch (_) {} diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index b177a6bd..65836feb 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -1,5 +1,6 @@ fn main() { - let src_dir = std::path::Path::new("src"); + let src_dir = std::path::Path::new("tree-sitter-php/src"); + let src_dir_only = std::path::Path::new("tree-sitter-php-only/src"); let mut c_config = cc::Build::new(); c_config.include(src_dir); @@ -9,11 +10,39 @@ fn main() { .flag_if_supported("-Wno-trigraphs"); let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); + c_config.compile("parser"); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + let mut c_config = cc::Build::new(); + c_config.include(src_dir_only); + c_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable") + .flag_if_supported("-Wno-trigraphs"); + let parser_path = src_dir_only.join("parser.c"); + c_config.file(&parser_path); + c_config.compile("parser_only"); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + let mut c_config = cc::Build::new(); + c_config.cpp(false); + c_config.include(src_dir); + c_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable"); let scanner_path = src_dir.join("scanner.c"); c_config.file(&scanner_path); + c_config.compile("scanner"); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - c_config.compile("parser"); + let mut c_config = cc::Build::new(); + c_config.cpp(false); + c_config.include(src_dir_only); + c_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable"); + let scanner_path = src_dir_only.join("scanner.c"); + c_config.file(&scanner_path); + c_config.compile("scanner_only"); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); } diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index 7b4e0301..1b2f0794 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -19,6 +19,7 @@ use tree_sitter::Language; extern "C" { fn tree_sitter_php() -> Language; + fn tree_sitter_php_only() -> Language; } /// Get the tree-sitter [Language][] for this grammar. @@ -28,17 +29,36 @@ pub fn language() -> Language { unsafe { tree_sitter_php() } } +/// Get the tree-sitter [Language][] for the php_only grammar. +/// +/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +pub fn only_language() -> Language { + unsafe { tree_sitter_php_only() } +} + /// The content of the [`node-types.json`][] file for this grammar. /// /// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types -pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); +pub const NODE_TYPES: &'static str = include_str!("../../tree-sitter-php/src/node-types.json"); + +pub const NODE_TYPES_ONLY: &'static str = include_str!("../../tree-sitter-php-only/src/node-types.json"); // Uncomment these to include any queries that this grammar contains -pub const HIGHLIGHT_QUERY: &'static str = include_str!("../../queries/highlights.scm"); -pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); +pub const HIGHLIGHT_QUERY_ONLY: &'static str = include_str!("../../tree-sitter-php-only/queries/highlights.scm"); +pub const INJECTIONS_QUERY: &'static str = include_str!("../../tree-sitter-php/queries/injections.scm"); +pub const INJECTIONS_QUERY_ONLY: &'static str = include_str!("../../tree-sitter-php-only/queries/injections.scm"); // pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); -pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); +pub const TAGS_QUERY_ONLY: &'static str = include_str!("../../tree-sitter-php-only/queries/tags.scm"); + +/// A parser that produces [`PHPTree`]s. +/// +/// This is a convenience wrapper around [`language`] and [`only_language`]. +pub struct PHPParser { + parser: Parser, + language: Language, + only_language: Language, +} #[cfg(test)] mod tests { diff --git a/bindings/swift/notes.txt b/bindings/swift/notes.txt new file mode 100644 index 00000000..c3bacbe0 --- /dev/null +++ b/bindings/swift/notes.txt @@ -0,0 +1,6 @@ +It would be more consistent to put Swift binding C headers here. But, that will not work because of two SPM limitations: + +- Each target must have a unique directory +- C headers must be within that directory + +Building both parsers as one target is possible, but would result in naming issue with the copied queries. If one day either of those limitations is removed, the per-parser bindings can be moved here. \ No newline at end of file diff --git a/package.json b/package.json index 1e5869fb..e0eae538 100644 --- a/package.json +++ b/package.json @@ -21,8 +21,8 @@ "shelljs": "^0.8.4" }, "scripts": { - "build": "tree-sitter generate && node-gyp build", - "test": "tree-sitter test && node script/parse-examples.js" + "build": "(cd tree-sitter-php && tree-sitter generate --no-bindings) && (cd tree-sitter-php-only && tree-sitter generate --no-bindings) && node-gyp build", + "test": "(cd tree-sitter-php && tree-sitter test) && (cd tree-sitter-php-only && tree-sitter test) && node script/parse-examples.js" }, "repository": { "type": "git", @@ -33,8 +33,7 @@ "scope": "source.php", "file-types": [ "php" - ], - "highlights": "queries/highlights.scm" + ] } ] } diff --git a/queries/injections.scm b/queries/injections.scm deleted file mode 100644 index 16d5736b..00000000 --- a/queries/injections.scm +++ /dev/null @@ -1,3 +0,0 @@ -((text) @injection.content - (#set! injection.language "html") - (#set! injection.combined)) diff --git a/src/parser.c b/src/parser.c deleted file mode 100644 index 285e781b..00000000 --- a/src/parser.c +++ /dev/null @@ -1,138488 +0,0 @@ -#include - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wmissing-field-initializers" -#endif - -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 2588 -#define LARGE_STATE_COUNT 559 -#define SYMBOL_COUNT 403 -#define ALIAS_COUNT 0 -#define TOKEN_COUNT 196 -#define EXTERNAL_TOKEN_COUNT 12 -#define FIELD_COUNT 25 -#define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 168 - -enum { - sym_name = 1, - sym_php_tag = 2, - anon_sym_QMARK_GT = 3, - aux_sym_text_token1 = 4, - aux_sym_text_token2 = 5, - anon_sym_SEMI = 6, - anon_sym_AMP = 7, - aux_sym_function_static_declaration_token1 = 8, - anon_sym_COMMA = 9, - anon_sym_EQ = 10, - aux_sym_global_declaration_token1 = 11, - aux_sym_namespace_definition_token1 = 12, - aux_sym_namespace_use_declaration_token1 = 13, - aux_sym_namespace_use_declaration_token2 = 14, - aux_sym_namespace_use_declaration_token3 = 15, - anon_sym_BSLASH = 16, - aux_sym_namespace_aliasing_clause_token1 = 17, - anon_sym_LBRACE = 18, - anon_sym_RBRACE = 19, - aux_sym_trait_declaration_token1 = 20, - aux_sym_interface_declaration_token1 = 21, - aux_sym_base_clause_token1 = 22, - aux_sym_enum_declaration_token1 = 23, - anon_sym_COLON = 24, - anon_sym_string = 25, - anon_sym_int = 26, - aux_sym_enum_case_token1 = 27, - aux_sym_class_declaration_token1 = 28, - aux_sym_final_modifier_token1 = 29, - aux_sym_abstract_modifier_token1 = 30, - aux_sym_readonly_modifier_token1 = 31, - aux_sym_class_interface_clause_token1 = 32, - sym_var_modifier = 33, - aux_sym_use_instead_of_clause_token1 = 34, - aux_sym_visibility_modifier_token1 = 35, - aux_sym_visibility_modifier_token2 = 36, - aux_sym_visibility_modifier_token3 = 37, - aux_sym__arrow_function_header_token1 = 38, - anon_sym_EQ_GT = 39, - anon_sym_LPAREN = 40, - anon_sym_RPAREN = 41, - anon_sym_DOT_DOT_DOT = 42, - anon_sym_QMARK = 43, - sym_bottom_type = 44, - anon_sym_PIPE = 45, - anon_sym_array = 46, - aux_sym_primitive_type_token1 = 47, - anon_sym_iterable = 48, - anon_sym_bool = 49, - anon_sym_float = 50, - anon_sym_void = 51, - anon_sym_mixed = 52, - anon_sym_static = 53, - anon_sym_false = 54, - anon_sym_null = 55, - anon_sym_true = 56, - aux_sym_cast_type_token1 = 57, - aux_sym_cast_type_token2 = 58, - aux_sym_cast_type_token3 = 59, - aux_sym_cast_type_token4 = 60, - aux_sym_cast_type_token5 = 61, - aux_sym_cast_type_token6 = 62, - aux_sym_cast_type_token7 = 63, - aux_sym_cast_type_token8 = 64, - aux_sym_cast_type_token9 = 65, - aux_sym_cast_type_token10 = 66, - aux_sym_cast_type_token11 = 67, - aux_sym_cast_type_token12 = 68, - aux_sym_echo_statement_token1 = 69, - anon_sym_unset = 70, - aux_sym_declare_statement_token1 = 71, - aux_sym_declare_statement_token2 = 72, - anon_sym_ticks = 73, - anon_sym_encoding = 74, - anon_sym_strict_types = 75, - sym_float = 76, - aux_sym_try_statement_token1 = 77, - aux_sym_catch_clause_token1 = 78, - aux_sym_finally_clause_token1 = 79, - aux_sym_goto_statement_token1 = 80, - aux_sym_continue_statement_token1 = 81, - aux_sym_break_statement_token1 = 82, - sym_integer = 83, - aux_sym_return_statement_token1 = 84, - aux_sym_throw_expression_token1 = 85, - aux_sym_while_statement_token1 = 86, - aux_sym_while_statement_token2 = 87, - aux_sym_do_statement_token1 = 88, - aux_sym_for_statement_token1 = 89, - aux_sym_for_statement_token2 = 90, - aux_sym_foreach_statement_token1 = 91, - aux_sym_foreach_statement_token2 = 92, - aux_sym_if_statement_token1 = 93, - aux_sym_if_statement_token2 = 94, - aux_sym_else_if_clause_token1 = 95, - aux_sym_else_clause_token1 = 96, - aux_sym_match_expression_token1 = 97, - aux_sym_match_default_expression_token1 = 98, - aux_sym_switch_statement_token1 = 99, - aux_sym_switch_block_token1 = 100, - anon_sym_AT = 101, - anon_sym_PLUS = 102, - anon_sym_DASH = 103, - anon_sym_TILDE = 104, - anon_sym_BANG = 105, - anon_sym_STAR_STAR = 106, - aux_sym_clone_expression_token1 = 107, - anon_sym_COLON_COLON = 108, - aux_sym_print_intrinsic_token1 = 109, - aux_sym_object_creation_expression_token1 = 110, - anon_sym_PLUS_PLUS = 111, - anon_sym_DASH_DASH = 112, - anon_sym_STAR_STAR_EQ = 113, - anon_sym_STAR_EQ = 114, - anon_sym_SLASH_EQ = 115, - anon_sym_PERCENT_EQ = 116, - anon_sym_PLUS_EQ = 117, - anon_sym_DASH_EQ = 118, - anon_sym_DOT_EQ = 119, - anon_sym_LT_LT_EQ = 120, - anon_sym_GT_GT_EQ = 121, - anon_sym_AMP_EQ = 122, - anon_sym_CARET_EQ = 123, - anon_sym_PIPE_EQ = 124, - anon_sym_QMARK_QMARK_EQ = 125, - anon_sym_DASH_GT = 126, - anon_sym_QMARK_DASH_GT = 127, - aux_sym__list_destructing_token1 = 128, - anon_sym_LBRACK = 129, - anon_sym_RBRACK = 130, - anon_sym_self = 131, - anon_sym_parent = 132, - anon_sym_POUND_LBRACK = 133, - sym_escape_sequence = 134, - anon_sym_BSLASHu = 135, - anon_sym_SQUOTE = 136, - anon_sym_LT_QMARK = 137, - anon_sym_QMARK_GT2 = 138, - aux_sym_encapsed_string_token1 = 139, - anon_sym_DQUOTE = 140, - aux_sym_string_token1 = 141, - sym_string_value = 142, - anon_sym_LT_LT_LT = 143, - anon_sym_DQUOTE2 = 144, - aux_sym__new_line_token1 = 145, - aux_sym__new_line_token2 = 146, - anon_sym_ = 147, - anon_sym_SQUOTE2 = 148, - anon_sym_BQUOTE = 149, - sym_boolean = 150, - sym_null = 151, - anon_sym_DOLLAR = 152, - aux_sym_yield_expression_token1 = 153, - aux_sym_yield_expression_token2 = 154, - aux_sym_binary_expression_token1 = 155, - anon_sym_QMARK_QMARK = 156, - aux_sym_binary_expression_token2 = 157, - aux_sym_binary_expression_token3 = 158, - aux_sym_binary_expression_token4 = 159, - anon_sym_PIPE_PIPE = 160, - anon_sym_AMP_AMP = 161, - anon_sym_CARET = 162, - anon_sym_EQ_EQ = 163, - anon_sym_BANG_EQ = 164, - anon_sym_LT_GT = 165, - anon_sym_EQ_EQ_EQ = 166, - anon_sym_BANG_EQ_EQ = 167, - anon_sym_LT = 168, - anon_sym_GT = 169, - anon_sym_LT_EQ = 170, - anon_sym_GT_EQ = 171, - anon_sym_LT_EQ_GT = 172, - anon_sym_LT_LT = 173, - anon_sym_GT_GT = 174, - anon_sym_DOT = 175, - anon_sym_STAR = 176, - anon_sym_SLASH = 177, - anon_sym_PERCENT = 178, - aux_sym_include_expression_token1 = 179, - aux_sym_include_once_expression_token1 = 180, - aux_sym_require_expression_token1 = 181, - aux_sym_require_once_expression_token1 = 182, - sym_comment = 183, - sym__automatic_semicolon = 184, - sym_encapsed_string_chars = 185, - sym_encapsed_string_chars_after_variable = 186, - sym_execution_string_chars = 187, - sym_execution_string_chars_after_variable = 188, - sym_encapsed_string_chars_heredoc = 189, - sym_encapsed_string_chars_after_variable_heredoc = 190, - sym__eof = 191, - sym_heredoc_start = 192, - sym_heredoc_end = 193, - sym_nowdoc_string = 194, - sym_sentinel_error = 195, - sym_program = 196, - sym_text_interpolation = 197, - sym_text = 198, - sym_empty_statement = 199, - sym_reference_modifier = 200, - sym_function_static_declaration = 201, - sym_static_variable_declaration = 202, - sym_global_declaration = 203, - sym_namespace_definition = 204, - sym_namespace_use_declaration = 205, - sym_namespace_use_clause = 206, - sym_qualified_name = 207, - sym_namespace_name_as_prefix = 208, - sym_namespace_name = 209, - sym_namespace_aliasing_clause = 210, - sym_namespace_use_group = 211, - sym_namespace_use_group_clause = 212, - sym_trait_declaration = 213, - sym_interface_declaration = 214, - sym_base_clause = 215, - sym_enum_declaration = 216, - sym_enum_declaration_list = 217, - sym__enum_member_declaration = 218, - sym_enum_case = 219, - sym_class_declaration = 220, - sym_declaration_list = 221, - sym_final_modifier = 222, - sym_abstract_modifier = 223, - sym_readonly_modifier = 224, - sym_class_interface_clause = 225, - sym__member_declaration = 226, - sym_const_declaration = 227, - sym__class_const_declaration = 228, - sym__const_declaration = 229, - sym_property_declaration = 230, - sym__modifier = 231, - sym_property_element = 232, - sym_property_initializer = 233, - sym_method_declaration = 234, - sym_static_modifier = 235, - sym_use_declaration = 236, - sym_use_list = 237, - sym_use_instead_of_clause = 238, - sym_use_as_clause = 239, - sym_visibility_modifier = 240, - sym_function_definition = 241, - sym__function_definition_header = 242, - sym__arrow_function_header = 243, - sym_arrow_function = 244, - sym_formal_parameters = 245, - sym_property_promotion_parameter = 246, - sym_simple_parameter = 247, - sym_variadic_parameter = 248, - sym__type = 249, - sym__types = 250, - sym_named_type = 251, - sym_optional_type = 252, - sym_union_type = 253, - sym_intersection_type = 254, - sym_primitive_type = 255, - sym_cast_type = 256, - sym__return_type = 257, - sym_const_element = 258, - sym_echo_statement = 259, - sym_unset_statement = 260, - sym_declare_statement = 261, - sym_declare_directive = 262, - sym_try_statement = 263, - sym_catch_clause = 264, - sym_type_list = 265, - sym_finally_clause = 266, - sym_goto_statement = 267, - sym_continue_statement = 268, - sym_break_statement = 269, - sym_return_statement = 270, - sym_throw_expression = 271, - sym_while_statement = 272, - sym_do_statement = 273, - sym_for_statement = 274, - sym__expressions = 275, - sym_sequence_expression = 276, - sym_foreach_statement = 277, - sym_foreach_pair = 278, - sym_if_statement = 279, - sym_colon_block = 280, - sym_else_if_clause = 281, - sym_else_clause = 282, - sym_else_if_clause_2 = 283, - sym_else_clause_2 = 284, - sym_match_expression = 285, - sym_match_block = 286, - sym_match_condition_list = 287, - sym_match_conditional_expression = 288, - sym_match_default_expression = 289, - sym_switch_statement = 290, - sym_switch_block = 291, - sym_case_statement = 292, - sym_default_statement = 293, - sym_compound_statement = 294, - sym_named_label_statement = 295, - sym_expression_statement = 296, - sym__expression = 297, - sym__unary_expression = 298, - sym_unary_op_expression = 299, - sym_exponentiation_expression = 300, - sym_clone_expression = 301, - sym__primary_expression = 302, - sym_parenthesized_expression = 303, - sym_class_constant_access_expression = 304, - sym_print_intrinsic = 305, - sym_anonymous_function_creation_expression = 306, - sym_anonymous_function_use_clause = 307, - sym_object_creation_expression = 308, - sym_update_expression = 309, - sym_cast_expression = 310, - sym_cast_variable = 311, - sym_assignment_expression = 312, - sym_reference_assignment_expression = 313, - sym_conditional_expression = 314, - sym_augmented_assignment_expression = 315, - sym_member_access_expression = 316, - sym_nullsafe_member_access_expression = 317, - sym_scoped_property_access_expression = 318, - sym_list_literal = 319, - sym__list_destructing = 320, - sym__array_destructing = 321, - sym__array_destructing_element = 322, - sym_function_call_expression = 323, - sym_scoped_call_expression = 324, - sym__scope_resolution_qualifier = 325, - sym_relative_scope = 326, - sym_variadic_placeholder = 327, - sym_arguments = 328, - sym_argument = 329, - sym_member_call_expression = 330, - sym_nullsafe_member_call_expression = 331, - sym_variadic_unpacking = 332, - sym_subscript_expression = 333, - sym__dereferencable_expression = 334, - sym_array_creation_expression = 335, - sym_attribute_group = 336, - sym_attribute_list = 337, - sym_attribute = 338, - sym__complex_string_part = 339, - sym__simple_string_member_access_expression = 340, - sym__simple_string_subscript_unary_expression = 341, - sym__simple_string_array_access_argument = 342, - sym__simple_string_subscript_expression = 343, - sym__simple_string_part = 344, - aux_sym__interpolated_string_body = 345, - aux_sym__interpolated_string_body_heredoc = 346, - sym_encapsed_string = 347, - sym_string = 348, - sym_heredoc_body = 349, - sym_heredoc = 350, - sym__new_line = 351, - sym_nowdoc_body = 352, - sym_nowdoc = 353, - aux_sym__interpolated_execution_operator_body = 354, - sym_shell_command_expression = 355, - sym__string = 356, - sym_dynamic_variable_name = 357, - sym_variable_name = 358, - sym_variable_reference = 359, - sym_by_ref = 360, - sym_yield_expression = 361, - sym_array_element_initializer = 362, - sym_binary_expression = 363, - sym_include_expression = 364, - sym_include_once_expression = 365, - sym_require_expression = 366, - sym_require_once_expression = 367, - sym__reserved_identifier = 368, - aux_sym_program_repeat1 = 369, - aux_sym_text_repeat1 = 370, - aux_sym_function_static_declaration_repeat1 = 371, - aux_sym_global_declaration_repeat1 = 372, - aux_sym_namespace_use_declaration_repeat1 = 373, - aux_sym_namespace_name_repeat1 = 374, - aux_sym_namespace_use_group_repeat1 = 375, - aux_sym_base_clause_repeat1 = 376, - aux_sym_enum_declaration_list_repeat1 = 377, - aux_sym_declaration_list_repeat1 = 378, - aux_sym__const_declaration_repeat1 = 379, - aux_sym_property_declaration_repeat1 = 380, - aux_sym_property_declaration_repeat2 = 381, - aux_sym_use_list_repeat1 = 382, - aux_sym_formal_parameters_repeat1 = 383, - aux_sym_union_type_repeat1 = 384, - aux_sym_intersection_type_repeat1 = 385, - aux_sym_unset_statement_repeat1 = 386, - aux_sym_try_statement_repeat1 = 387, - aux_sym_type_list_repeat1 = 388, - aux_sym_if_statement_repeat1 = 389, - aux_sym_if_statement_repeat2 = 390, - aux_sym_match_block_repeat1 = 391, - aux_sym_match_condition_list_repeat1 = 392, - aux_sym_switch_block_repeat1 = 393, - aux_sym_anonymous_function_use_clause_repeat1 = 394, - aux_sym__list_destructing_repeat1 = 395, - aux_sym__array_destructing_repeat1 = 396, - aux_sym_arguments_repeat1 = 397, - aux_sym_array_creation_expression_repeat1 = 398, - aux_sym_attribute_group_repeat1 = 399, - aux_sym_attribute_list_repeat1 = 400, - aux_sym_heredoc_body_repeat1 = 401, - aux_sym_nowdoc_body_repeat1 = 402, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [sym_name] = "name", - [sym_php_tag] = "php_tag", - [anon_sym_QMARK_GT] = "\?>", - [aux_sym_text_token1] = "text_token1", - [aux_sym_text_token2] = "text_token2", - [anon_sym_SEMI] = ";", - [anon_sym_AMP] = "&", - [aux_sym_function_static_declaration_token1] = "static", - [anon_sym_COMMA] = ",", - [anon_sym_EQ] = "=", - [aux_sym_global_declaration_token1] = "global", - [aux_sym_namespace_definition_token1] = "namespace", - [aux_sym_namespace_use_declaration_token1] = "use", - [aux_sym_namespace_use_declaration_token2] = "function", - [aux_sym_namespace_use_declaration_token3] = "const", - [anon_sym_BSLASH] = "\\", - [aux_sym_namespace_aliasing_clause_token1] = "as", - [anon_sym_LBRACE] = "{", - [anon_sym_RBRACE] = "}", - [aux_sym_trait_declaration_token1] = "trait", - [aux_sym_interface_declaration_token1] = "interface", - [aux_sym_base_clause_token1] = "extends", - [aux_sym_enum_declaration_token1] = "enum", - [anon_sym_COLON] = ":", - [anon_sym_string] = "string", - [anon_sym_int] = "int", - [aux_sym_enum_case_token1] = "case", - [aux_sym_class_declaration_token1] = "class", - [aux_sym_final_modifier_token1] = "final", - [aux_sym_abstract_modifier_token1] = "abstract", - [aux_sym_readonly_modifier_token1] = "readonly", - [aux_sym_class_interface_clause_token1] = "implements", - [sym_var_modifier] = "var_modifier", - [aux_sym_use_instead_of_clause_token1] = "insteadof", - [aux_sym_visibility_modifier_token1] = "public", - [aux_sym_visibility_modifier_token2] = "protected", - [aux_sym_visibility_modifier_token3] = "private", - [aux_sym__arrow_function_header_token1] = "fn", - [anon_sym_EQ_GT] = "=>", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", - [anon_sym_DOT_DOT_DOT] = "...", - [anon_sym_QMARK] = "\?", - [sym_bottom_type] = "bottom_type", - [anon_sym_PIPE] = "|", - [anon_sym_array] = "array", - [aux_sym_primitive_type_token1] = "callable", - [anon_sym_iterable] = "iterable", - [anon_sym_bool] = "bool", - [anon_sym_float] = "float", - [anon_sym_void] = "void", - [anon_sym_mixed] = "mixed", - [anon_sym_static] = "static", - [anon_sym_false] = "false", - [anon_sym_null] = "null", - [anon_sym_true] = "true", - [aux_sym_cast_type_token1] = "cast_type_token1", - [aux_sym_cast_type_token2] = "cast_type_token2", - [aux_sym_cast_type_token3] = "cast_type_token3", - [aux_sym_cast_type_token4] = "cast_type_token4", - [aux_sym_cast_type_token5] = "cast_type_token5", - [aux_sym_cast_type_token6] = "cast_type_token6", - [aux_sym_cast_type_token7] = "cast_type_token7", - [aux_sym_cast_type_token8] = "cast_type_token8", - [aux_sym_cast_type_token9] = "cast_type_token9", - [aux_sym_cast_type_token10] = "cast_type_token10", - [aux_sym_cast_type_token11] = "cast_type_token11", - [aux_sym_cast_type_token12] = "cast_type_token12", - [aux_sym_echo_statement_token1] = "echo", - [anon_sym_unset] = "unset", - [aux_sym_declare_statement_token1] = "declare", - [aux_sym_declare_statement_token2] = "enddeclare", - [anon_sym_ticks] = "ticks", - [anon_sym_encoding] = "encoding", - [anon_sym_strict_types] = "strict_types", - [sym_float] = "float", - [aux_sym_try_statement_token1] = "try", - [aux_sym_catch_clause_token1] = "catch", - [aux_sym_finally_clause_token1] = "finally", - [aux_sym_goto_statement_token1] = "goto", - [aux_sym_continue_statement_token1] = "continue", - [aux_sym_break_statement_token1] = "break", - [sym_integer] = "integer", - [aux_sym_return_statement_token1] = "return", - [aux_sym_throw_expression_token1] = "throw", - [aux_sym_while_statement_token1] = "while", - [aux_sym_while_statement_token2] = "endwhile", - [aux_sym_do_statement_token1] = "do", - [aux_sym_for_statement_token1] = "for", - [aux_sym_for_statement_token2] = "endfor", - [aux_sym_foreach_statement_token1] = "foreach", - [aux_sym_foreach_statement_token2] = "endforeach", - [aux_sym_if_statement_token1] = "if", - [aux_sym_if_statement_token2] = "endif", - [aux_sym_else_if_clause_token1] = "elseif", - [aux_sym_else_clause_token1] = "else", - [aux_sym_match_expression_token1] = "match", - [aux_sym_match_default_expression_token1] = "default", - [aux_sym_switch_statement_token1] = "switch", - [aux_sym_switch_block_token1] = "endswitch", - [anon_sym_AT] = "@", - [anon_sym_PLUS] = "+", - [anon_sym_DASH] = "-", - [anon_sym_TILDE] = "~", - [anon_sym_BANG] = "!", - [anon_sym_STAR_STAR] = "**", - [aux_sym_clone_expression_token1] = "clone", - [anon_sym_COLON_COLON] = "::", - [aux_sym_print_intrinsic_token1] = "print", - [aux_sym_object_creation_expression_token1] = "new", - [anon_sym_PLUS_PLUS] = "++", - [anon_sym_DASH_DASH] = "--", - [anon_sym_STAR_STAR_EQ] = "**=", - [anon_sym_STAR_EQ] = "*=", - [anon_sym_SLASH_EQ] = "/=", - [anon_sym_PERCENT_EQ] = "%=", - [anon_sym_PLUS_EQ] = "+=", - [anon_sym_DASH_EQ] = "-=", - [anon_sym_DOT_EQ] = ".=", - [anon_sym_LT_LT_EQ] = "<<=", - [anon_sym_GT_GT_EQ] = ">>=", - [anon_sym_AMP_EQ] = "&=", - [anon_sym_CARET_EQ] = "^=", - [anon_sym_PIPE_EQ] = "|=", - [anon_sym_QMARK_QMARK_EQ] = "\?\?=", - [anon_sym_DASH_GT] = "->", - [anon_sym_QMARK_DASH_GT] = "\?->", - [aux_sym__list_destructing_token1] = "list", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [anon_sym_self] = "self", - [anon_sym_parent] = "parent", - [anon_sym_POUND_LBRACK] = "#[", - [sym_escape_sequence] = "escape_sequence", - [anon_sym_BSLASHu] = "string_value", - [anon_sym_SQUOTE] = "'", - [anon_sym_LT_QMARK] = "string_value", - [anon_sym_QMARK_GT2] = "string_value", - [aux_sym_encapsed_string_token1] = "encapsed_string_token1", - [anon_sym_DQUOTE] = "\"", - [aux_sym_string_token1] = "string_token1", - [sym_string_value] = "string_value", - [anon_sym_LT_LT_LT] = "<<<", - [anon_sym_DQUOTE2] = "\"", - [aux_sym__new_line_token1] = "_new_line_token1", - [aux_sym__new_line_token2] = "_new_line_token2", - [anon_sym_] = "nowdoc_string", - [anon_sym_SQUOTE2] = "'", - [anon_sym_BQUOTE] = "`", - [sym_boolean] = "boolean", - [sym_null] = "null", - [anon_sym_DOLLAR] = "$", - [aux_sym_yield_expression_token1] = "yield", - [aux_sym_yield_expression_token2] = "from", - [aux_sym_binary_expression_token1] = "instanceof", - [anon_sym_QMARK_QMARK] = "\?\?", - [aux_sym_binary_expression_token2] = "and", - [aux_sym_binary_expression_token3] = "or", - [aux_sym_binary_expression_token4] = "xor", - [anon_sym_PIPE_PIPE] = "||", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_CARET] = "^", - [anon_sym_EQ_EQ] = "==", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_LT_GT] = "<>", - [anon_sym_EQ_EQ_EQ] = "===", - [anon_sym_BANG_EQ_EQ] = "!==", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", - [anon_sym_LT_EQ] = "<=", - [anon_sym_GT_EQ] = ">=", - [anon_sym_LT_EQ_GT] = "<=>", - [anon_sym_LT_LT] = "<<", - [anon_sym_GT_GT] = ">>", - [anon_sym_DOT] = ".", - [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", - [anon_sym_PERCENT] = "%", - [aux_sym_include_expression_token1] = "include", - [aux_sym_include_once_expression_token1] = "include_once", - [aux_sym_require_expression_token1] = "require", - [aux_sym_require_once_expression_token1] = "require_once", - [sym_comment] = "comment", - [sym__automatic_semicolon] = "_automatic_semicolon", - [sym_encapsed_string_chars] = "string_value", - [sym_encapsed_string_chars_after_variable] = "string_value", - [sym_execution_string_chars] = "string_value", - [sym_execution_string_chars_after_variable] = "string_value", - [sym_encapsed_string_chars_heredoc] = "string_value", - [sym_encapsed_string_chars_after_variable_heredoc] = "string_value", - [sym__eof] = "_eof", - [sym_heredoc_start] = "heredoc_start", - [sym_heredoc_end] = "heredoc_end", - [sym_nowdoc_string] = "nowdoc_string", - [sym_sentinel_error] = "sentinel_error", - [sym_program] = "program", - [sym_text_interpolation] = "text_interpolation", - [sym_text] = "text", - [sym_empty_statement] = "empty_statement", - [sym_reference_modifier] = "reference_modifier", - [sym_function_static_declaration] = "function_static_declaration", - [sym_static_variable_declaration] = "static_variable_declaration", - [sym_global_declaration] = "global_declaration", - [sym_namespace_definition] = "namespace_definition", - [sym_namespace_use_declaration] = "namespace_use_declaration", - [sym_namespace_use_clause] = "namespace_use_clause", - [sym_qualified_name] = "qualified_name", - [sym_namespace_name_as_prefix] = "namespace_name_as_prefix", - [sym_namespace_name] = "namespace_name", - [sym_namespace_aliasing_clause] = "namespace_aliasing_clause", - [sym_namespace_use_group] = "namespace_use_group", - [sym_namespace_use_group_clause] = "namespace_use_group_clause", - [sym_trait_declaration] = "trait_declaration", - [sym_interface_declaration] = "interface_declaration", - [sym_base_clause] = "base_clause", - [sym_enum_declaration] = "enum_declaration", - [sym_enum_declaration_list] = "enum_declaration_list", - [sym__enum_member_declaration] = "_enum_member_declaration", - [sym_enum_case] = "enum_case", - [sym_class_declaration] = "class_declaration", - [sym_declaration_list] = "declaration_list", - [sym_final_modifier] = "final_modifier", - [sym_abstract_modifier] = "abstract_modifier", - [sym_readonly_modifier] = "readonly_modifier", - [sym_class_interface_clause] = "class_interface_clause", - [sym__member_declaration] = "_member_declaration", - [sym_const_declaration] = "const_declaration", - [sym__class_const_declaration] = "const_declaration", - [sym__const_declaration] = "_const_declaration", - [sym_property_declaration] = "property_declaration", - [sym__modifier] = "_modifier", - [sym_property_element] = "property_element", - [sym_property_initializer] = "property_initializer", - [sym_method_declaration] = "method_declaration", - [sym_static_modifier] = "static_modifier", - [sym_use_declaration] = "use_declaration", - [sym_use_list] = "use_list", - [sym_use_instead_of_clause] = "use_instead_of_clause", - [sym_use_as_clause] = "use_as_clause", - [sym_visibility_modifier] = "visibility_modifier", - [sym_function_definition] = "function_definition", - [sym__function_definition_header] = "_function_definition_header", - [sym__arrow_function_header] = "_arrow_function_header", - [sym_arrow_function] = "arrow_function", - [sym_formal_parameters] = "formal_parameters", - [sym_property_promotion_parameter] = "property_promotion_parameter", - [sym_simple_parameter] = "simple_parameter", - [sym_variadic_parameter] = "variadic_parameter", - [sym__type] = "_type", - [sym__types] = "_types", - [sym_named_type] = "named_type", - [sym_optional_type] = "optional_type", - [sym_union_type] = "union_type", - [sym_intersection_type] = "intersection_type", - [sym_primitive_type] = "primitive_type", - [sym_cast_type] = "cast_type", - [sym__return_type] = "_return_type", - [sym_const_element] = "const_element", - [sym_echo_statement] = "echo_statement", - [sym_unset_statement] = "unset_statement", - [sym_declare_statement] = "declare_statement", - [sym_declare_directive] = "declare_directive", - [sym_try_statement] = "try_statement", - [sym_catch_clause] = "catch_clause", - [sym_type_list] = "type_list", - [sym_finally_clause] = "finally_clause", - [sym_goto_statement] = "goto_statement", - [sym_continue_statement] = "continue_statement", - [sym_break_statement] = "break_statement", - [sym_return_statement] = "return_statement", - [sym_throw_expression] = "throw_expression", - [sym_while_statement] = "while_statement", - [sym_do_statement] = "do_statement", - [sym_for_statement] = "for_statement", - [sym__expressions] = "_expressions", - [sym_sequence_expression] = "sequence_expression", - [sym_foreach_statement] = "foreach_statement", - [sym_foreach_pair] = "pair", - [sym_if_statement] = "if_statement", - [sym_colon_block] = "colon_block", - [sym_else_if_clause] = "else_if_clause", - [sym_else_clause] = "else_clause", - [sym_else_if_clause_2] = "else_if_clause", - [sym_else_clause_2] = "else_clause", - [sym_match_expression] = "match_expression", - [sym_match_block] = "match_block", - [sym_match_condition_list] = "match_condition_list", - [sym_match_conditional_expression] = "match_conditional_expression", - [sym_match_default_expression] = "match_default_expression", - [sym_switch_statement] = "switch_statement", - [sym_switch_block] = "switch_block", - [sym_case_statement] = "case_statement", - [sym_default_statement] = "default_statement", - [sym_compound_statement] = "compound_statement", - [sym_named_label_statement] = "named_label_statement", - [sym_expression_statement] = "expression_statement", - [sym__expression] = "_expression", - [sym__unary_expression] = "_unary_expression", - [sym_unary_op_expression] = "unary_op_expression", - [sym_exponentiation_expression] = "exponentiation_expression", - [sym_clone_expression] = "clone_expression", - [sym__primary_expression] = "_primary_expression", - [sym_parenthesized_expression] = "parenthesized_expression", - [sym_class_constant_access_expression] = "class_constant_access_expression", - [sym_print_intrinsic] = "print_intrinsic", - [sym_anonymous_function_creation_expression] = "anonymous_function_creation_expression", - [sym_anonymous_function_use_clause] = "anonymous_function_use_clause", - [sym_object_creation_expression] = "object_creation_expression", - [sym_update_expression] = "update_expression", - [sym_cast_expression] = "cast_expression", - [sym_cast_variable] = "cast_expression", - [sym_assignment_expression] = "assignment_expression", - [sym_reference_assignment_expression] = "reference_assignment_expression", - [sym_conditional_expression] = "conditional_expression", - [sym_augmented_assignment_expression] = "augmented_assignment_expression", - [sym_member_access_expression] = "member_access_expression", - [sym_nullsafe_member_access_expression] = "nullsafe_member_access_expression", - [sym_scoped_property_access_expression] = "scoped_property_access_expression", - [sym_list_literal] = "list_literal", - [sym__list_destructing] = "_list_destructing", - [sym__array_destructing] = "_array_destructing", - [sym__array_destructing_element] = "_array_destructing_element", - [sym_function_call_expression] = "function_call_expression", - [sym_scoped_call_expression] = "scoped_call_expression", - [sym__scope_resolution_qualifier] = "_scope_resolution_qualifier", - [sym_relative_scope] = "relative_scope", - [sym_variadic_placeholder] = "variadic_placeholder", - [sym_arguments] = "arguments", - [sym_argument] = "argument", - [sym_member_call_expression] = "member_call_expression", - [sym_nullsafe_member_call_expression] = "nullsafe_member_call_expression", - [sym_variadic_unpacking] = "variadic_unpacking", - [sym_subscript_expression] = "subscript_expression", - [sym__dereferencable_expression] = "_dereferencable_expression", - [sym_array_creation_expression] = "array_creation_expression", - [sym_attribute_group] = "attribute_group", - [sym_attribute_list] = "attribute_list", - [sym_attribute] = "attribute", - [sym__complex_string_part] = "_complex_string_part", - [sym__simple_string_member_access_expression] = "member_access_expression", - [sym__simple_string_subscript_unary_expression] = "unary_op_expression", - [sym__simple_string_array_access_argument] = "_simple_string_array_access_argument", - [sym__simple_string_subscript_expression] = "subscript_expression", - [sym__simple_string_part] = "_simple_string_part", - [aux_sym__interpolated_string_body] = "_interpolated_string_body", - [aux_sym__interpolated_string_body_heredoc] = "_interpolated_string_body_heredoc", - [sym_encapsed_string] = "encapsed_string", - [sym_string] = "string", - [sym_heredoc_body] = "heredoc_body", - [sym_heredoc] = "heredoc", - [sym__new_line] = "_new_line", - [sym_nowdoc_body] = "nowdoc_body", - [sym_nowdoc] = "nowdoc", - [aux_sym__interpolated_execution_operator_body] = "_interpolated_execution_operator_body", - [sym_shell_command_expression] = "shell_command_expression", - [sym__string] = "_string", - [sym_dynamic_variable_name] = "dynamic_variable_name", - [sym_variable_name] = "variable_name", - [sym_variable_reference] = "by_ref", - [sym_by_ref] = "by_ref", - [sym_yield_expression] = "yield_expression", - [sym_array_element_initializer] = "array_element_initializer", - [sym_binary_expression] = "binary_expression", - [sym_include_expression] = "include_expression", - [sym_include_once_expression] = "include_once_expression", - [sym_require_expression] = "require_expression", - [sym_require_once_expression] = "require_once_expression", - [sym__reserved_identifier] = "name", - [aux_sym_program_repeat1] = "program_repeat1", - [aux_sym_text_repeat1] = "text_repeat1", - [aux_sym_function_static_declaration_repeat1] = "function_static_declaration_repeat1", - [aux_sym_global_declaration_repeat1] = "global_declaration_repeat1", - [aux_sym_namespace_use_declaration_repeat1] = "namespace_use_declaration_repeat1", - [aux_sym_namespace_name_repeat1] = "namespace_name_repeat1", - [aux_sym_namespace_use_group_repeat1] = "namespace_use_group_repeat1", - [aux_sym_base_clause_repeat1] = "base_clause_repeat1", - [aux_sym_enum_declaration_list_repeat1] = "enum_declaration_list_repeat1", - [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", - [aux_sym__const_declaration_repeat1] = "_const_declaration_repeat1", - [aux_sym_property_declaration_repeat1] = "property_declaration_repeat1", - [aux_sym_property_declaration_repeat2] = "property_declaration_repeat2", - [aux_sym_use_list_repeat1] = "use_list_repeat1", - [aux_sym_formal_parameters_repeat1] = "formal_parameters_repeat1", - [aux_sym_union_type_repeat1] = "union_type_repeat1", - [aux_sym_intersection_type_repeat1] = "intersection_type_repeat1", - [aux_sym_unset_statement_repeat1] = "unset_statement_repeat1", - [aux_sym_try_statement_repeat1] = "try_statement_repeat1", - [aux_sym_type_list_repeat1] = "type_list_repeat1", - [aux_sym_if_statement_repeat1] = "if_statement_repeat1", - [aux_sym_if_statement_repeat2] = "if_statement_repeat2", - [aux_sym_match_block_repeat1] = "match_block_repeat1", - [aux_sym_match_condition_list_repeat1] = "match_condition_list_repeat1", - [aux_sym_switch_block_repeat1] = "switch_block_repeat1", - [aux_sym_anonymous_function_use_clause_repeat1] = "anonymous_function_use_clause_repeat1", - [aux_sym__list_destructing_repeat1] = "_list_destructing_repeat1", - [aux_sym__array_destructing_repeat1] = "_array_destructing_repeat1", - [aux_sym_arguments_repeat1] = "arguments_repeat1", - [aux_sym_array_creation_expression_repeat1] = "array_creation_expression_repeat1", - [aux_sym_attribute_group_repeat1] = "attribute_group_repeat1", - [aux_sym_attribute_list_repeat1] = "attribute_list_repeat1", - [aux_sym_heredoc_body_repeat1] = "heredoc_body_repeat1", - [aux_sym_nowdoc_body_repeat1] = "nowdoc_body_repeat1", -}; - -static const TSSymbol ts_symbol_map[] = { - [ts_builtin_sym_end] = ts_builtin_sym_end, - [sym_name] = sym_name, - [sym_php_tag] = sym_php_tag, - [anon_sym_QMARK_GT] = anon_sym_QMARK_GT, - [aux_sym_text_token1] = aux_sym_text_token1, - [aux_sym_text_token2] = aux_sym_text_token2, - [anon_sym_SEMI] = anon_sym_SEMI, - [anon_sym_AMP] = anon_sym_AMP, - [aux_sym_function_static_declaration_token1] = anon_sym_static, - [anon_sym_COMMA] = anon_sym_COMMA, - [anon_sym_EQ] = anon_sym_EQ, - [aux_sym_global_declaration_token1] = aux_sym_global_declaration_token1, - [aux_sym_namespace_definition_token1] = aux_sym_namespace_definition_token1, - [aux_sym_namespace_use_declaration_token1] = aux_sym_namespace_use_declaration_token1, - [aux_sym_namespace_use_declaration_token2] = aux_sym_namespace_use_declaration_token2, - [aux_sym_namespace_use_declaration_token3] = aux_sym_namespace_use_declaration_token3, - [anon_sym_BSLASH] = anon_sym_BSLASH, - [aux_sym_namespace_aliasing_clause_token1] = aux_sym_namespace_aliasing_clause_token1, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_RBRACE] = anon_sym_RBRACE, - [aux_sym_trait_declaration_token1] = aux_sym_trait_declaration_token1, - [aux_sym_interface_declaration_token1] = aux_sym_interface_declaration_token1, - [aux_sym_base_clause_token1] = aux_sym_base_clause_token1, - [aux_sym_enum_declaration_token1] = aux_sym_enum_declaration_token1, - [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_string] = anon_sym_string, - [anon_sym_int] = anon_sym_int, - [aux_sym_enum_case_token1] = aux_sym_enum_case_token1, - [aux_sym_class_declaration_token1] = aux_sym_class_declaration_token1, - [aux_sym_final_modifier_token1] = aux_sym_final_modifier_token1, - [aux_sym_abstract_modifier_token1] = aux_sym_abstract_modifier_token1, - [aux_sym_readonly_modifier_token1] = aux_sym_readonly_modifier_token1, - [aux_sym_class_interface_clause_token1] = aux_sym_class_interface_clause_token1, - [sym_var_modifier] = sym_var_modifier, - [aux_sym_use_instead_of_clause_token1] = aux_sym_use_instead_of_clause_token1, - [aux_sym_visibility_modifier_token1] = aux_sym_visibility_modifier_token1, - [aux_sym_visibility_modifier_token2] = aux_sym_visibility_modifier_token2, - [aux_sym_visibility_modifier_token3] = aux_sym_visibility_modifier_token3, - [aux_sym__arrow_function_header_token1] = aux_sym__arrow_function_header_token1, - [anon_sym_EQ_GT] = anon_sym_EQ_GT, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, - [anon_sym_QMARK] = anon_sym_QMARK, - [sym_bottom_type] = sym_bottom_type, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_array] = anon_sym_array, - [aux_sym_primitive_type_token1] = aux_sym_primitive_type_token1, - [anon_sym_iterable] = anon_sym_iterable, - [anon_sym_bool] = anon_sym_bool, - [anon_sym_float] = anon_sym_float, - [anon_sym_void] = anon_sym_void, - [anon_sym_mixed] = anon_sym_mixed, - [anon_sym_static] = anon_sym_static, - [anon_sym_false] = anon_sym_false, - [anon_sym_null] = anon_sym_null, - [anon_sym_true] = anon_sym_true, - [aux_sym_cast_type_token1] = aux_sym_cast_type_token1, - [aux_sym_cast_type_token2] = aux_sym_cast_type_token2, - [aux_sym_cast_type_token3] = aux_sym_cast_type_token3, - [aux_sym_cast_type_token4] = aux_sym_cast_type_token4, - [aux_sym_cast_type_token5] = aux_sym_cast_type_token5, - [aux_sym_cast_type_token6] = aux_sym_cast_type_token6, - [aux_sym_cast_type_token7] = aux_sym_cast_type_token7, - [aux_sym_cast_type_token8] = aux_sym_cast_type_token8, - [aux_sym_cast_type_token9] = aux_sym_cast_type_token9, - [aux_sym_cast_type_token10] = aux_sym_cast_type_token10, - [aux_sym_cast_type_token11] = aux_sym_cast_type_token11, - [aux_sym_cast_type_token12] = aux_sym_cast_type_token12, - [aux_sym_echo_statement_token1] = aux_sym_echo_statement_token1, - [anon_sym_unset] = anon_sym_unset, - [aux_sym_declare_statement_token1] = aux_sym_declare_statement_token1, - [aux_sym_declare_statement_token2] = aux_sym_declare_statement_token2, - [anon_sym_ticks] = anon_sym_ticks, - [anon_sym_encoding] = anon_sym_encoding, - [anon_sym_strict_types] = anon_sym_strict_types, - [sym_float] = sym_float, - [aux_sym_try_statement_token1] = aux_sym_try_statement_token1, - [aux_sym_catch_clause_token1] = aux_sym_catch_clause_token1, - [aux_sym_finally_clause_token1] = aux_sym_finally_clause_token1, - [aux_sym_goto_statement_token1] = aux_sym_goto_statement_token1, - [aux_sym_continue_statement_token1] = aux_sym_continue_statement_token1, - [aux_sym_break_statement_token1] = aux_sym_break_statement_token1, - [sym_integer] = sym_integer, - [aux_sym_return_statement_token1] = aux_sym_return_statement_token1, - [aux_sym_throw_expression_token1] = aux_sym_throw_expression_token1, - [aux_sym_while_statement_token1] = aux_sym_while_statement_token1, - [aux_sym_while_statement_token2] = aux_sym_while_statement_token2, - [aux_sym_do_statement_token1] = aux_sym_do_statement_token1, - [aux_sym_for_statement_token1] = aux_sym_for_statement_token1, - [aux_sym_for_statement_token2] = aux_sym_for_statement_token2, - [aux_sym_foreach_statement_token1] = aux_sym_foreach_statement_token1, - [aux_sym_foreach_statement_token2] = aux_sym_foreach_statement_token2, - [aux_sym_if_statement_token1] = aux_sym_if_statement_token1, - [aux_sym_if_statement_token2] = aux_sym_if_statement_token2, - [aux_sym_else_if_clause_token1] = aux_sym_else_if_clause_token1, - [aux_sym_else_clause_token1] = aux_sym_else_clause_token1, - [aux_sym_match_expression_token1] = aux_sym_match_expression_token1, - [aux_sym_match_default_expression_token1] = aux_sym_match_default_expression_token1, - [aux_sym_switch_statement_token1] = aux_sym_switch_statement_token1, - [aux_sym_switch_block_token1] = aux_sym_switch_block_token1, - [anon_sym_AT] = anon_sym_AT, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_TILDE] = anon_sym_TILDE, - [anon_sym_BANG] = anon_sym_BANG, - [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, - [aux_sym_clone_expression_token1] = aux_sym_clone_expression_token1, - [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, - [aux_sym_print_intrinsic_token1] = aux_sym_print_intrinsic_token1, - [aux_sym_object_creation_expression_token1] = aux_sym_object_creation_expression_token1, - [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, - [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, - [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, - [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, - [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, - [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, - [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, - [anon_sym_DOT_EQ] = anon_sym_DOT_EQ, - [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, - [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, - [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, - [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, - [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, - [anon_sym_QMARK_QMARK_EQ] = anon_sym_QMARK_QMARK_EQ, - [anon_sym_DASH_GT] = anon_sym_DASH_GT, - [anon_sym_QMARK_DASH_GT] = anon_sym_QMARK_DASH_GT, - [aux_sym__list_destructing_token1] = aux_sym__list_destructing_token1, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_self] = anon_sym_self, - [anon_sym_parent] = anon_sym_parent, - [anon_sym_POUND_LBRACK] = anon_sym_POUND_LBRACK, - [sym_escape_sequence] = sym_escape_sequence, - [anon_sym_BSLASHu] = sym_string_value, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, - [anon_sym_LT_QMARK] = sym_string_value, - [anon_sym_QMARK_GT2] = sym_string_value, - [aux_sym_encapsed_string_token1] = aux_sym_encapsed_string_token1, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [aux_sym_string_token1] = aux_sym_string_token1, - [sym_string_value] = sym_string_value, - [anon_sym_LT_LT_LT] = anon_sym_LT_LT_LT, - [anon_sym_DQUOTE2] = anon_sym_DQUOTE, - [aux_sym__new_line_token1] = aux_sym__new_line_token1, - [aux_sym__new_line_token2] = aux_sym__new_line_token2, - [anon_sym_] = sym_nowdoc_string, - [anon_sym_SQUOTE2] = anon_sym_SQUOTE, - [anon_sym_BQUOTE] = anon_sym_BQUOTE, - [sym_boolean] = sym_boolean, - [sym_null] = sym_null, - [anon_sym_DOLLAR] = anon_sym_DOLLAR, - [aux_sym_yield_expression_token1] = aux_sym_yield_expression_token1, - [aux_sym_yield_expression_token2] = aux_sym_yield_expression_token2, - [aux_sym_binary_expression_token1] = aux_sym_binary_expression_token1, - [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, - [aux_sym_binary_expression_token2] = aux_sym_binary_expression_token2, - [aux_sym_binary_expression_token3] = aux_sym_binary_expression_token3, - [aux_sym_binary_expression_token4] = aux_sym_binary_expression_token4, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_CARET] = anon_sym_CARET, - [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_LT_GT] = anon_sym_LT_GT, - [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, - [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_LT_EQ_GT] = anon_sym_LT_EQ_GT, - [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_GT_GT] = anon_sym_GT_GT, - [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [aux_sym_include_expression_token1] = aux_sym_include_expression_token1, - [aux_sym_include_once_expression_token1] = aux_sym_include_once_expression_token1, - [aux_sym_require_expression_token1] = aux_sym_require_expression_token1, - [aux_sym_require_once_expression_token1] = aux_sym_require_once_expression_token1, - [sym_comment] = sym_comment, - [sym__automatic_semicolon] = sym__automatic_semicolon, - [sym_encapsed_string_chars] = sym_string_value, - [sym_encapsed_string_chars_after_variable] = sym_string_value, - [sym_execution_string_chars] = sym_string_value, - [sym_execution_string_chars_after_variable] = sym_string_value, - [sym_encapsed_string_chars_heredoc] = sym_string_value, - [sym_encapsed_string_chars_after_variable_heredoc] = sym_string_value, - [sym__eof] = sym__eof, - [sym_heredoc_start] = sym_heredoc_start, - [sym_heredoc_end] = sym_heredoc_end, - [sym_nowdoc_string] = sym_nowdoc_string, - [sym_sentinel_error] = sym_sentinel_error, - [sym_program] = sym_program, - [sym_text_interpolation] = sym_text_interpolation, - [sym_text] = sym_text, - [sym_empty_statement] = sym_empty_statement, - [sym_reference_modifier] = sym_reference_modifier, - [sym_function_static_declaration] = sym_function_static_declaration, - [sym_static_variable_declaration] = sym_static_variable_declaration, - [sym_global_declaration] = sym_global_declaration, - [sym_namespace_definition] = sym_namespace_definition, - [sym_namespace_use_declaration] = sym_namespace_use_declaration, - [sym_namespace_use_clause] = sym_namespace_use_clause, - [sym_qualified_name] = sym_qualified_name, - [sym_namespace_name_as_prefix] = sym_namespace_name_as_prefix, - [sym_namespace_name] = sym_namespace_name, - [sym_namespace_aliasing_clause] = sym_namespace_aliasing_clause, - [sym_namespace_use_group] = sym_namespace_use_group, - [sym_namespace_use_group_clause] = sym_namespace_use_group_clause, - [sym_trait_declaration] = sym_trait_declaration, - [sym_interface_declaration] = sym_interface_declaration, - [sym_base_clause] = sym_base_clause, - [sym_enum_declaration] = sym_enum_declaration, - [sym_enum_declaration_list] = sym_enum_declaration_list, - [sym__enum_member_declaration] = sym__enum_member_declaration, - [sym_enum_case] = sym_enum_case, - [sym_class_declaration] = sym_class_declaration, - [sym_declaration_list] = sym_declaration_list, - [sym_final_modifier] = sym_final_modifier, - [sym_abstract_modifier] = sym_abstract_modifier, - [sym_readonly_modifier] = sym_readonly_modifier, - [sym_class_interface_clause] = sym_class_interface_clause, - [sym__member_declaration] = sym__member_declaration, - [sym_const_declaration] = sym_const_declaration, - [sym__class_const_declaration] = sym_const_declaration, - [sym__const_declaration] = sym__const_declaration, - [sym_property_declaration] = sym_property_declaration, - [sym__modifier] = sym__modifier, - [sym_property_element] = sym_property_element, - [sym_property_initializer] = sym_property_initializer, - [sym_method_declaration] = sym_method_declaration, - [sym_static_modifier] = sym_static_modifier, - [sym_use_declaration] = sym_use_declaration, - [sym_use_list] = sym_use_list, - [sym_use_instead_of_clause] = sym_use_instead_of_clause, - [sym_use_as_clause] = sym_use_as_clause, - [sym_visibility_modifier] = sym_visibility_modifier, - [sym_function_definition] = sym_function_definition, - [sym__function_definition_header] = sym__function_definition_header, - [sym__arrow_function_header] = sym__arrow_function_header, - [sym_arrow_function] = sym_arrow_function, - [sym_formal_parameters] = sym_formal_parameters, - [sym_property_promotion_parameter] = sym_property_promotion_parameter, - [sym_simple_parameter] = sym_simple_parameter, - [sym_variadic_parameter] = sym_variadic_parameter, - [sym__type] = sym__type, - [sym__types] = sym__types, - [sym_named_type] = sym_named_type, - [sym_optional_type] = sym_optional_type, - [sym_union_type] = sym_union_type, - [sym_intersection_type] = sym_intersection_type, - [sym_primitive_type] = sym_primitive_type, - [sym_cast_type] = sym_cast_type, - [sym__return_type] = sym__return_type, - [sym_const_element] = sym_const_element, - [sym_echo_statement] = sym_echo_statement, - [sym_unset_statement] = sym_unset_statement, - [sym_declare_statement] = sym_declare_statement, - [sym_declare_directive] = sym_declare_directive, - [sym_try_statement] = sym_try_statement, - [sym_catch_clause] = sym_catch_clause, - [sym_type_list] = sym_type_list, - [sym_finally_clause] = sym_finally_clause, - [sym_goto_statement] = sym_goto_statement, - [sym_continue_statement] = sym_continue_statement, - [sym_break_statement] = sym_break_statement, - [sym_return_statement] = sym_return_statement, - [sym_throw_expression] = sym_throw_expression, - [sym_while_statement] = sym_while_statement, - [sym_do_statement] = sym_do_statement, - [sym_for_statement] = sym_for_statement, - [sym__expressions] = sym__expressions, - [sym_sequence_expression] = sym_sequence_expression, - [sym_foreach_statement] = sym_foreach_statement, - [sym_foreach_pair] = sym_foreach_pair, - [sym_if_statement] = sym_if_statement, - [sym_colon_block] = sym_colon_block, - [sym_else_if_clause] = sym_else_if_clause, - [sym_else_clause] = sym_else_clause, - [sym_else_if_clause_2] = sym_else_if_clause, - [sym_else_clause_2] = sym_else_clause, - [sym_match_expression] = sym_match_expression, - [sym_match_block] = sym_match_block, - [sym_match_condition_list] = sym_match_condition_list, - [sym_match_conditional_expression] = sym_match_conditional_expression, - [sym_match_default_expression] = sym_match_default_expression, - [sym_switch_statement] = sym_switch_statement, - [sym_switch_block] = sym_switch_block, - [sym_case_statement] = sym_case_statement, - [sym_default_statement] = sym_default_statement, - [sym_compound_statement] = sym_compound_statement, - [sym_named_label_statement] = sym_named_label_statement, - [sym_expression_statement] = sym_expression_statement, - [sym__expression] = sym__expression, - [sym__unary_expression] = sym__unary_expression, - [sym_unary_op_expression] = sym_unary_op_expression, - [sym_exponentiation_expression] = sym_exponentiation_expression, - [sym_clone_expression] = sym_clone_expression, - [sym__primary_expression] = sym__primary_expression, - [sym_parenthesized_expression] = sym_parenthesized_expression, - [sym_class_constant_access_expression] = sym_class_constant_access_expression, - [sym_print_intrinsic] = sym_print_intrinsic, - [sym_anonymous_function_creation_expression] = sym_anonymous_function_creation_expression, - [sym_anonymous_function_use_clause] = sym_anonymous_function_use_clause, - [sym_object_creation_expression] = sym_object_creation_expression, - [sym_update_expression] = sym_update_expression, - [sym_cast_expression] = sym_cast_expression, - [sym_cast_variable] = sym_cast_expression, - [sym_assignment_expression] = sym_assignment_expression, - [sym_reference_assignment_expression] = sym_reference_assignment_expression, - [sym_conditional_expression] = sym_conditional_expression, - [sym_augmented_assignment_expression] = sym_augmented_assignment_expression, - [sym_member_access_expression] = sym_member_access_expression, - [sym_nullsafe_member_access_expression] = sym_nullsafe_member_access_expression, - [sym_scoped_property_access_expression] = sym_scoped_property_access_expression, - [sym_list_literal] = sym_list_literal, - [sym__list_destructing] = sym__list_destructing, - [sym__array_destructing] = sym__array_destructing, - [sym__array_destructing_element] = sym__array_destructing_element, - [sym_function_call_expression] = sym_function_call_expression, - [sym_scoped_call_expression] = sym_scoped_call_expression, - [sym__scope_resolution_qualifier] = sym__scope_resolution_qualifier, - [sym_relative_scope] = sym_relative_scope, - [sym_variadic_placeholder] = sym_variadic_placeholder, - [sym_arguments] = sym_arguments, - [sym_argument] = sym_argument, - [sym_member_call_expression] = sym_member_call_expression, - [sym_nullsafe_member_call_expression] = sym_nullsafe_member_call_expression, - [sym_variadic_unpacking] = sym_variadic_unpacking, - [sym_subscript_expression] = sym_subscript_expression, - [sym__dereferencable_expression] = sym__dereferencable_expression, - [sym_array_creation_expression] = sym_array_creation_expression, - [sym_attribute_group] = sym_attribute_group, - [sym_attribute_list] = sym_attribute_list, - [sym_attribute] = sym_attribute, - [sym__complex_string_part] = sym__complex_string_part, - [sym__simple_string_member_access_expression] = sym_member_access_expression, - [sym__simple_string_subscript_unary_expression] = sym_unary_op_expression, - [sym__simple_string_array_access_argument] = sym__simple_string_array_access_argument, - [sym__simple_string_subscript_expression] = sym_subscript_expression, - [sym__simple_string_part] = sym__simple_string_part, - [aux_sym__interpolated_string_body] = aux_sym__interpolated_string_body, - [aux_sym__interpolated_string_body_heredoc] = aux_sym__interpolated_string_body_heredoc, - [sym_encapsed_string] = sym_encapsed_string, - [sym_string] = sym_string, - [sym_heredoc_body] = sym_heredoc_body, - [sym_heredoc] = sym_heredoc, - [sym__new_line] = sym__new_line, - [sym_nowdoc_body] = sym_nowdoc_body, - [sym_nowdoc] = sym_nowdoc, - [aux_sym__interpolated_execution_operator_body] = aux_sym__interpolated_execution_operator_body, - [sym_shell_command_expression] = sym_shell_command_expression, - [sym__string] = sym__string, - [sym_dynamic_variable_name] = sym_dynamic_variable_name, - [sym_variable_name] = sym_variable_name, - [sym_variable_reference] = sym_by_ref, - [sym_by_ref] = sym_by_ref, - [sym_yield_expression] = sym_yield_expression, - [sym_array_element_initializer] = sym_array_element_initializer, - [sym_binary_expression] = sym_binary_expression, - [sym_include_expression] = sym_include_expression, - [sym_include_once_expression] = sym_include_once_expression, - [sym_require_expression] = sym_require_expression, - [sym_require_once_expression] = sym_require_once_expression, - [sym__reserved_identifier] = sym_name, - [aux_sym_program_repeat1] = aux_sym_program_repeat1, - [aux_sym_text_repeat1] = aux_sym_text_repeat1, - [aux_sym_function_static_declaration_repeat1] = aux_sym_function_static_declaration_repeat1, - [aux_sym_global_declaration_repeat1] = aux_sym_global_declaration_repeat1, - [aux_sym_namespace_use_declaration_repeat1] = aux_sym_namespace_use_declaration_repeat1, - [aux_sym_namespace_name_repeat1] = aux_sym_namespace_name_repeat1, - [aux_sym_namespace_use_group_repeat1] = aux_sym_namespace_use_group_repeat1, - [aux_sym_base_clause_repeat1] = aux_sym_base_clause_repeat1, - [aux_sym_enum_declaration_list_repeat1] = aux_sym_enum_declaration_list_repeat1, - [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, - [aux_sym__const_declaration_repeat1] = aux_sym__const_declaration_repeat1, - [aux_sym_property_declaration_repeat1] = aux_sym_property_declaration_repeat1, - [aux_sym_property_declaration_repeat2] = aux_sym_property_declaration_repeat2, - [aux_sym_use_list_repeat1] = aux_sym_use_list_repeat1, - [aux_sym_formal_parameters_repeat1] = aux_sym_formal_parameters_repeat1, - [aux_sym_union_type_repeat1] = aux_sym_union_type_repeat1, - [aux_sym_intersection_type_repeat1] = aux_sym_intersection_type_repeat1, - [aux_sym_unset_statement_repeat1] = aux_sym_unset_statement_repeat1, - [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, - [aux_sym_type_list_repeat1] = aux_sym_type_list_repeat1, - [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, - [aux_sym_if_statement_repeat2] = aux_sym_if_statement_repeat2, - [aux_sym_match_block_repeat1] = aux_sym_match_block_repeat1, - [aux_sym_match_condition_list_repeat1] = aux_sym_match_condition_list_repeat1, - [aux_sym_switch_block_repeat1] = aux_sym_switch_block_repeat1, - [aux_sym_anonymous_function_use_clause_repeat1] = aux_sym_anonymous_function_use_clause_repeat1, - [aux_sym__list_destructing_repeat1] = aux_sym__list_destructing_repeat1, - [aux_sym__array_destructing_repeat1] = aux_sym__array_destructing_repeat1, - [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, - [aux_sym_array_creation_expression_repeat1] = aux_sym_array_creation_expression_repeat1, - [aux_sym_attribute_group_repeat1] = aux_sym_attribute_group_repeat1, - [aux_sym_attribute_list_repeat1] = aux_sym_attribute_list_repeat1, - [aux_sym_heredoc_body_repeat1] = aux_sym_heredoc_body_repeat1, - [aux_sym_nowdoc_body_repeat1] = aux_sym_nowdoc_body_repeat1, -}; - -static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, - .named = true, - }, - [sym_name] = { - .visible = true, - .named = true, - }, - [sym_php_tag] = { - .visible = true, - .named = true, - }, - [anon_sym_QMARK_GT] = { - .visible = true, - .named = false, - }, - [aux_sym_text_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_text_token2] = { - .visible = false, - .named = false, - }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP] = { - .visible = true, - .named = false, - }, - [aux_sym_function_static_declaration_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, - [aux_sym_global_declaration_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_namespace_definition_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_namespace_use_declaration_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_namespace_use_declaration_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_namespace_use_declaration_token3] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASH] = { - .visible = true, - .named = false, - }, - [aux_sym_namespace_aliasing_clause_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [aux_sym_trait_declaration_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_interface_declaration_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_base_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_enum_declaration_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_string] = { - .visible = true, - .named = false, - }, - [anon_sym_int] = { - .visible = true, - .named = false, - }, - [aux_sym_enum_case_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_class_declaration_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_final_modifier_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_abstract_modifier_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_readonly_modifier_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_class_interface_clause_token1] = { - .visible = true, - .named = false, - }, - [sym_var_modifier] = { - .visible = true, - .named = true, - }, - [aux_sym_use_instead_of_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_visibility_modifier_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_visibility_modifier_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_visibility_modifier_token3] = { - .visible = true, - .named = false, - }, - [aux_sym__arrow_function_header_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK] = { - .visible = true, - .named = false, - }, - [sym_bottom_type] = { - .visible = true, - .named = true, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_array] = { - .visible = true, - .named = false, - }, - [aux_sym_primitive_type_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_iterable] = { - .visible = true, - .named = false, - }, - [anon_sym_bool] = { - .visible = true, - .named = false, - }, - [anon_sym_float] = { - .visible = true, - .named = false, - }, - [anon_sym_void] = { - .visible = true, - .named = false, - }, - [anon_sym_mixed] = { - .visible = true, - .named = false, - }, - [anon_sym_static] = { - .visible = true, - .named = false, - }, - [anon_sym_false] = { - .visible = true, - .named = false, - }, - [anon_sym_null] = { - .visible = true, - .named = false, - }, - [anon_sym_true] = { - .visible = true, - .named = false, - }, - [aux_sym_cast_type_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token5] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token6] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token7] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token8] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token9] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token10] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token11] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token12] = { - .visible = false, - .named = false, - }, - [aux_sym_echo_statement_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_unset] = { - .visible = true, - .named = false, - }, - [aux_sym_declare_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_declare_statement_token2] = { - .visible = true, - .named = false, - }, - [anon_sym_ticks] = { - .visible = true, - .named = false, - }, - [anon_sym_encoding] = { - .visible = true, - .named = false, - }, - [anon_sym_strict_types] = { - .visible = true, - .named = false, - }, - [sym_float] = { - .visible = true, - .named = true, - }, - [aux_sym_try_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_catch_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_finally_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_goto_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_continue_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_break_statement_token1] = { - .visible = true, - .named = false, - }, - [sym_integer] = { - .visible = true, - .named = true, - }, - [aux_sym_return_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_throw_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_while_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_while_statement_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_do_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_for_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_for_statement_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_foreach_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_foreach_statement_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_if_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_if_statement_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_else_if_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_else_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_match_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_match_default_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_switch_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_switch_block_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_AT] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR_STAR] = { - .visible = true, - .named = false, - }, - [aux_sym_clone_expression_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_COLON] = { - .visible = true, - .named = false, - }, - [aux_sym_print_intrinsic_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_object_creation_expression_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR_STAR_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK_QMARK_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK_DASH_GT] = { - .visible = true, - .named = false, - }, - [aux_sym__list_destructing_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_self] = { - .visible = true, - .named = false, - }, - [anon_sym_parent] = { - .visible = true, - .named = false, - }, - [anon_sym_POUND_LBRACK] = { - .visible = true, - .named = false, - }, - [sym_escape_sequence] = { - .visible = true, - .named = true, - }, - [anon_sym_BSLASHu] = { - .visible = true, - .named = true, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_QMARK] = { - .visible = true, - .named = true, - }, - [anon_sym_QMARK_GT2] = { - .visible = true, - .named = true, - }, - [aux_sym_encapsed_string_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [aux_sym_string_token1] = { - .visible = false, - .named = false, - }, - [sym_string_value] = { - .visible = true, - .named = true, - }, - [anon_sym_LT_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_DQUOTE2] = { - .visible = true, - .named = false, - }, - [aux_sym__new_line_token1] = { - .visible = false, - .named = false, - }, - [aux_sym__new_line_token2] = { - .visible = false, - .named = false, - }, - [anon_sym_] = { - .visible = true, - .named = true, - }, - [anon_sym_SQUOTE2] = { - .visible = true, - .named = false, - }, - [anon_sym_BQUOTE] = { - .visible = true, - .named = false, - }, - [sym_boolean] = { - .visible = true, - .named = true, - }, - [sym_null] = { - .visible = true, - .named = true, - }, - [anon_sym_DOLLAR] = { - .visible = true, - .named = false, - }, - [aux_sym_yield_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_yield_expression_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_binary_expression_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK_QMARK] = { - .visible = true, - .named = false, - }, - [aux_sym_binary_expression_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_binary_expression_token3] = { - .visible = true, - .named = false, - }, - [aux_sym_binary_expression_token4] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [aux_sym_include_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_include_once_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_require_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_require_once_expression_token1] = { - .visible = true, - .named = false, - }, - [sym_comment] = { - .visible = true, - .named = true, - }, - [sym__automatic_semicolon] = { - .visible = false, - .named = true, - }, - [sym_encapsed_string_chars] = { - .visible = true, - .named = true, - }, - [sym_encapsed_string_chars_after_variable] = { - .visible = true, - .named = true, - }, - [sym_execution_string_chars] = { - .visible = true, - .named = true, - }, - [sym_execution_string_chars_after_variable] = { - .visible = true, - .named = true, - }, - [sym_encapsed_string_chars_heredoc] = { - .visible = true, - .named = true, - }, - [sym_encapsed_string_chars_after_variable_heredoc] = { - .visible = true, - .named = true, - }, - [sym__eof] = { - .visible = false, - .named = true, - }, - [sym_heredoc_start] = { - .visible = true, - .named = true, - }, - [sym_heredoc_end] = { - .visible = true, - .named = true, - }, - [sym_nowdoc_string] = { - .visible = true, - .named = true, - }, - [sym_sentinel_error] = { - .visible = true, - .named = true, - }, - [sym_program] = { - .visible = true, - .named = true, - }, - [sym_text_interpolation] = { - .visible = true, - .named = true, - }, - [sym_text] = { - .visible = true, - .named = true, - }, - [sym_empty_statement] = { - .visible = true, - .named = true, - }, - [sym_reference_modifier] = { - .visible = true, - .named = true, - }, - [sym_function_static_declaration] = { - .visible = true, - .named = true, - }, - [sym_static_variable_declaration] = { - .visible = true, - .named = true, - }, - [sym_global_declaration] = { - .visible = true, - .named = true, - }, - [sym_namespace_definition] = { - .visible = true, - .named = true, - }, - [sym_namespace_use_declaration] = { - .visible = true, - .named = true, - }, - [sym_namespace_use_clause] = { - .visible = true, - .named = true, - }, - [sym_qualified_name] = { - .visible = true, - .named = true, - }, - [sym_namespace_name_as_prefix] = { - .visible = true, - .named = true, - }, - [sym_namespace_name] = { - .visible = true, - .named = true, - }, - [sym_namespace_aliasing_clause] = { - .visible = true, - .named = true, - }, - [sym_namespace_use_group] = { - .visible = true, - .named = true, - }, - [sym_namespace_use_group_clause] = { - .visible = true, - .named = true, - }, - [sym_trait_declaration] = { - .visible = true, - .named = true, - }, - [sym_interface_declaration] = { - .visible = true, - .named = true, - }, - [sym_base_clause] = { - .visible = true, - .named = true, - }, - [sym_enum_declaration] = { - .visible = true, - .named = true, - }, - [sym_enum_declaration_list] = { - .visible = true, - .named = true, - }, - [sym__enum_member_declaration] = { - .visible = false, - .named = true, - }, - [sym_enum_case] = { - .visible = true, - .named = true, - }, - [sym_class_declaration] = { - .visible = true, - .named = true, - }, - [sym_declaration_list] = { - .visible = true, - .named = true, - }, - [sym_final_modifier] = { - .visible = true, - .named = true, - }, - [sym_abstract_modifier] = { - .visible = true, - .named = true, - }, - [sym_readonly_modifier] = { - .visible = true, - .named = true, - }, - [sym_class_interface_clause] = { - .visible = true, - .named = true, - }, - [sym__member_declaration] = { - .visible = false, - .named = true, - }, - [sym_const_declaration] = { - .visible = true, - .named = true, - }, - [sym__class_const_declaration] = { - .visible = true, - .named = true, - }, - [sym__const_declaration] = { - .visible = false, - .named = true, - }, - [sym_property_declaration] = { - .visible = true, - .named = true, - }, - [sym__modifier] = { - .visible = false, - .named = true, - }, - [sym_property_element] = { - .visible = true, - .named = true, - }, - [sym_property_initializer] = { - .visible = true, - .named = true, - }, - [sym_method_declaration] = { - .visible = true, - .named = true, - }, - [sym_static_modifier] = { - .visible = true, - .named = true, - }, - [sym_use_declaration] = { - .visible = true, - .named = true, - }, - [sym_use_list] = { - .visible = true, - .named = true, - }, - [sym_use_instead_of_clause] = { - .visible = true, - .named = true, - }, - [sym_use_as_clause] = { - .visible = true, - .named = true, - }, - [sym_visibility_modifier] = { - .visible = true, - .named = true, - }, - [sym_function_definition] = { - .visible = true, - .named = true, - }, - [sym__function_definition_header] = { - .visible = false, - .named = true, - }, - [sym__arrow_function_header] = { - .visible = false, - .named = true, - }, - [sym_arrow_function] = { - .visible = true, - .named = true, - }, - [sym_formal_parameters] = { - .visible = true, - .named = true, - }, - [sym_property_promotion_parameter] = { - .visible = true, - .named = true, - }, - [sym_simple_parameter] = { - .visible = true, - .named = true, - }, - [sym_variadic_parameter] = { - .visible = true, - .named = true, - }, - [sym__type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__types] = { - .visible = false, - .named = true, - }, - [sym_named_type] = { - .visible = true, - .named = true, - }, - [sym_optional_type] = { - .visible = true, - .named = true, - }, - [sym_union_type] = { - .visible = true, - .named = true, - }, - [sym_intersection_type] = { - .visible = true, - .named = true, - }, - [sym_primitive_type] = { - .visible = true, - .named = true, - }, - [sym_cast_type] = { - .visible = true, - .named = true, - }, - [sym__return_type] = { - .visible = false, - .named = true, - }, - [sym_const_element] = { - .visible = true, - .named = true, - }, - [sym_echo_statement] = { - .visible = true, - .named = true, - }, - [sym_unset_statement] = { - .visible = true, - .named = true, - }, - [sym_declare_statement] = { - .visible = true, - .named = true, - }, - [sym_declare_directive] = { - .visible = true, - .named = true, - }, - [sym_try_statement] = { - .visible = true, - .named = true, - }, - [sym_catch_clause] = { - .visible = true, - .named = true, - }, - [sym_type_list] = { - .visible = true, - .named = true, - }, - [sym_finally_clause] = { - .visible = true, - .named = true, - }, - [sym_goto_statement] = { - .visible = true, - .named = true, - }, - [sym_continue_statement] = { - .visible = true, - .named = true, - }, - [sym_break_statement] = { - .visible = true, - .named = true, - }, - [sym_return_statement] = { - .visible = true, - .named = true, - }, - [sym_throw_expression] = { - .visible = true, - .named = true, - }, - [sym_while_statement] = { - .visible = true, - .named = true, - }, - [sym_do_statement] = { - .visible = true, - .named = true, - }, - [sym_for_statement] = { - .visible = true, - .named = true, - }, - [sym__expressions] = { - .visible = false, - .named = true, - }, - [sym_sequence_expression] = { - .visible = true, - .named = true, - }, - [sym_foreach_statement] = { - .visible = true, - .named = true, - }, - [sym_foreach_pair] = { - .visible = true, - .named = true, - }, - [sym_if_statement] = { - .visible = true, - .named = true, - }, - [sym_colon_block] = { - .visible = true, - .named = true, - }, - [sym_else_if_clause] = { - .visible = true, - .named = true, - }, - [sym_else_clause] = { - .visible = true, - .named = true, - }, - [sym_else_if_clause_2] = { - .visible = true, - .named = true, - }, - [sym_else_clause_2] = { - .visible = true, - .named = true, - }, - [sym_match_expression] = { - .visible = true, - .named = true, - }, - [sym_match_block] = { - .visible = true, - .named = true, - }, - [sym_match_condition_list] = { - .visible = true, - .named = true, - }, - [sym_match_conditional_expression] = { - .visible = true, - .named = true, - }, - [sym_match_default_expression] = { - .visible = true, - .named = true, - }, - [sym_switch_statement] = { - .visible = true, - .named = true, - }, - [sym_switch_block] = { - .visible = true, - .named = true, - }, - [sym_case_statement] = { - .visible = true, - .named = true, - }, - [sym_default_statement] = { - .visible = true, - .named = true, - }, - [sym_compound_statement] = { - .visible = true, - .named = true, - }, - [sym_named_label_statement] = { - .visible = true, - .named = true, - }, - [sym_expression_statement] = { - .visible = true, - .named = true, - }, - [sym__expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__unary_expression] = { - .visible = false, - .named = true, - }, - [sym_unary_op_expression] = { - .visible = true, - .named = true, - }, - [sym_exponentiation_expression] = { - .visible = true, - .named = true, - }, - [sym_clone_expression] = { - .visible = true, - .named = true, - }, - [sym__primary_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_parenthesized_expression] = { - .visible = true, - .named = true, - }, - [sym_class_constant_access_expression] = { - .visible = true, - .named = true, - }, - [sym_print_intrinsic] = { - .visible = true, - .named = true, - }, - [sym_anonymous_function_creation_expression] = { - .visible = true, - .named = true, - }, - [sym_anonymous_function_use_clause] = { - .visible = true, - .named = true, - }, - [sym_object_creation_expression] = { - .visible = true, - .named = true, - }, - [sym_update_expression] = { - .visible = true, - .named = true, - }, - [sym_cast_expression] = { - .visible = true, - .named = true, - }, - [sym_cast_variable] = { - .visible = true, - .named = true, - }, - [sym_assignment_expression] = { - .visible = true, - .named = true, - }, - [sym_reference_assignment_expression] = { - .visible = true, - .named = true, - }, - [sym_conditional_expression] = { - .visible = true, - .named = true, - }, - [sym_augmented_assignment_expression] = { - .visible = true, - .named = true, - }, - [sym_member_access_expression] = { - .visible = true, - .named = true, - }, - [sym_nullsafe_member_access_expression] = { - .visible = true, - .named = true, - }, - [sym_scoped_property_access_expression] = { - .visible = true, - .named = true, - }, - [sym_list_literal] = { - .visible = true, - .named = true, - }, - [sym__list_destructing] = { - .visible = false, - .named = true, - }, - [sym__array_destructing] = { - .visible = false, - .named = true, - }, - [sym__array_destructing_element] = { - .visible = false, - .named = true, - }, - [sym_function_call_expression] = { - .visible = true, - .named = true, - }, - [sym_scoped_call_expression] = { - .visible = true, - .named = true, - }, - [sym__scope_resolution_qualifier] = { - .visible = false, - .named = true, - }, - [sym_relative_scope] = { - .visible = true, - .named = true, - }, - [sym_variadic_placeholder] = { - .visible = true, - .named = true, - }, - [sym_arguments] = { - .visible = true, - .named = true, - }, - [sym_argument] = { - .visible = true, - .named = true, - }, - [sym_member_call_expression] = { - .visible = true, - .named = true, - }, - [sym_nullsafe_member_call_expression] = { - .visible = true, - .named = true, - }, - [sym_variadic_unpacking] = { - .visible = true, - .named = true, - }, - [sym_subscript_expression] = { - .visible = true, - .named = true, - }, - [sym__dereferencable_expression] = { - .visible = false, - .named = true, - }, - [sym_array_creation_expression] = { - .visible = true, - .named = true, - }, - [sym_attribute_group] = { - .visible = true, - .named = true, - }, - [sym_attribute_list] = { - .visible = true, - .named = true, - }, - [sym_attribute] = { - .visible = true, - .named = true, - }, - [sym__complex_string_part] = { - .visible = false, - .named = true, - }, - [sym__simple_string_member_access_expression] = { - .visible = true, - .named = true, - }, - [sym__simple_string_subscript_unary_expression] = { - .visible = true, - .named = true, - }, - [sym__simple_string_array_access_argument] = { - .visible = false, - .named = true, - }, - [sym__simple_string_subscript_expression] = { - .visible = true, - .named = true, - }, - [sym__simple_string_part] = { - .visible = false, - .named = true, - }, - [aux_sym__interpolated_string_body] = { - .visible = false, - .named = false, - }, - [aux_sym__interpolated_string_body_heredoc] = { - .visible = false, - .named = false, - }, - [sym_encapsed_string] = { - .visible = true, - .named = true, - }, - [sym_string] = { - .visible = true, - .named = true, - }, - [sym_heredoc_body] = { - .visible = true, - .named = true, - }, - [sym_heredoc] = { - .visible = true, - .named = true, - }, - [sym__new_line] = { - .visible = false, - .named = true, - }, - [sym_nowdoc_body] = { - .visible = true, - .named = true, - }, - [sym_nowdoc] = { - .visible = true, - .named = true, - }, - [aux_sym__interpolated_execution_operator_body] = { - .visible = false, - .named = false, - }, - [sym_shell_command_expression] = { - .visible = true, - .named = true, - }, - [sym__string] = { - .visible = false, - .named = true, - }, - [sym_dynamic_variable_name] = { - .visible = true, - .named = true, - }, - [sym_variable_name] = { - .visible = true, - .named = true, - }, - [sym_variable_reference] = { - .visible = true, - .named = true, - }, - [sym_by_ref] = { - .visible = true, - .named = true, - }, - [sym_yield_expression] = { - .visible = true, - .named = true, - }, - [sym_array_element_initializer] = { - .visible = true, - .named = true, - }, - [sym_binary_expression] = { - .visible = true, - .named = true, - }, - [sym_include_expression] = { - .visible = true, - .named = true, - }, - [sym_include_once_expression] = { - .visible = true, - .named = true, - }, - [sym_require_expression] = { - .visible = true, - .named = true, - }, - [sym_require_once_expression] = { - .visible = true, - .named = true, - }, - [sym__reserved_identifier] = { - .visible = true, - .named = true, - }, - [aux_sym_program_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_text_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_function_static_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_global_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_namespace_use_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_namespace_name_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_namespace_use_group_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_base_clause_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_enum_declaration_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_declaration_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__const_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_property_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_property_declaration_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_use_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_formal_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_union_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_intersection_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_unset_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_try_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_match_block_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_match_condition_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_switch_block_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_anonymous_function_use_clause_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__list_destructing_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__array_destructing_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_array_creation_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_attribute_group_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_attribute_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_heredoc_body_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_nowdoc_body_repeat1] = { - .visible = false, - .named = false, - }, -}; - -enum { - field_alternative = 1, - field_arguments = 2, - field_attributes = 3, - field_body = 4, - field_condition = 5, - field_conditional_expressions = 6, - field_default_value = 7, - field_end_tag = 8, - field_function = 9, - field_identifier = 10, - field_left = 11, - field_modifier = 12, - field_name = 13, - field_object = 14, - field_operator = 15, - field_parameters = 16, - field_readonly = 17, - field_reference_modifier = 18, - field_return_expression = 19, - field_return_type = 20, - field_right = 21, - field_scope = 22, - field_type = 23, - field_value = 24, - field_visibility = 25, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_alternative] = "alternative", - [field_arguments] = "arguments", - [field_attributes] = "attributes", - [field_body] = "body", - [field_condition] = "condition", - [field_conditional_expressions] = "conditional_expressions", - [field_default_value] = "default_value", - [field_end_tag] = "end_tag", - [field_function] = "function", - [field_identifier] = "identifier", - [field_left] = "left", - [field_modifier] = "modifier", - [field_name] = "name", - [field_object] = "object", - [field_operator] = "operator", - [field_parameters] = "parameters", - [field_readonly] = "readonly", - [field_reference_modifier] = "reference_modifier", - [field_return_expression] = "return_expression", - [field_return_type] = "return_type", - [field_right] = "right", - [field_scope] = "scope", - [field_type] = "type", - [field_value] = "value", - [field_visibility] = "visibility", -}; - -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 1}, - [3] = {.index = 2, .length = 1}, - [6] = {.index = 3, .length = 2}, - [7] = {.index = 5, .length = 2}, - [8] = {.index = 7, .length = 5}, - [9] = {.index = 12, .length = 1}, - [10] = {.index = 13, .length = 2}, - [11] = {.index = 15, .length = 2}, - [12] = {.index = 17, .length = 2}, - [13] = {.index = 19, .length = 2}, - [14] = {.index = 21, .length = 2}, - [16] = {.index = 23, .length = 2}, - [17] = {.index = 25, .length = 2}, - [18] = {.index = 27, .length = 1}, - [19] = {.index = 28, .length = 5}, - [20] = {.index = 33, .length = 2}, - [21] = {.index = 35, .length = 3}, - [22] = {.index = 38, .length = 2}, - [23] = {.index = 40, .length = 2}, - [24] = {.index = 42, .length = 2}, - [25] = {.index = 44, .length = 6}, - [26] = {.index = 50, .length = 2}, - [27] = {.index = 52, .length = 2}, - [28] = {.index = 54, .length = 2}, - [29] = {.index = 56, .length = 2}, - [30] = {.index = 58, .length = 2}, - [31] = {.index = 60, .length = 2}, - [32] = {.index = 62, .length = 3}, - [33] = {.index = 65, .length = 3}, - [34] = {.index = 68, .length = 3}, - [35] = {.index = 71, .length = 1}, - [36] = {.index = 72, .length = 3}, - [37] = {.index = 75, .length = 2}, - [38] = {.index = 77, .length = 2}, - [39] = {.index = 79, .length = 2}, - [40] = {.index = 81, .length = 3}, - [41] = {.index = 84, .length = 2}, - [42] = {.index = 86, .length = 1}, - [43] = {.index = 87, .length = 3}, - [44] = {.index = 90, .length = 3}, - [45] = {.index = 93, .length = 1}, - [48] = {.index = 94, .length = 3}, - [49] = {.index = 97, .length = 1}, - [50] = {.index = 98, .length = 3}, - [51] = {.index = 101, .length = 2}, - [52] = {.index = 103, .length = 2}, - [53] = {.index = 105, .length = 2}, - [54] = {.index = 107, .length = 2}, - [55] = {.index = 109, .length = 3}, - [56] = {.index = 112, .length = 3}, - [57] = {.index = 115, .length = 3}, - [58] = {.index = 118, .length = 3}, - [59] = {.index = 121, .length = 3}, - [60] = {.index = 124, .length = 3}, - [61] = {.index = 127, .length = 2}, - [62] = {.index = 129, .length = 3}, - [63] = {.index = 132, .length = 3}, - [64] = {.index = 135, .length = 2}, - [65] = {.index = 137, .length = 2}, - [66] = {.index = 139, .length = 3}, - [67] = {.index = 142, .length = 3}, - [68] = {.index = 145, .length = 2}, - [69] = {.index = 147, .length = 3}, - [70] = {.index = 150, .length = 2}, - [71] = {.index = 152, .length = 3}, - [72] = {.index = 155, .length = 3}, - [73] = {.index = 158, .length = 2}, - [74] = {.index = 160, .length = 4}, - [75] = {.index = 164, .length = 4}, - [76] = {.index = 168, .length = 3}, - [77] = {.index = 171, .length = 3}, - [78] = {.index = 174, .length = 1}, - [79] = {.index = 175, .length = 4}, - [80] = {.index = 179, .length = 1}, - [81] = {.index = 180, .length = 2}, - [82] = {.index = 180, .length = 2}, - [83] = {.index = 182, .length = 2}, - [84] = {.index = 184, .length = 4}, - [85] = {.index = 188, .length = 2}, - [86] = {.index = 190, .length = 3}, - [87] = {.index = 193, .length = 2}, - [88] = {.index = 195, .length = 4}, - [89] = {.index = 199, .length = 3}, - [90] = {.index = 202, .length = 3}, - [91] = {.index = 205, .length = 3}, - [92] = {.index = 208, .length = 2}, - [93] = {.index = 210, .length = 3}, - [94] = {.index = 213, .length = 4}, - [95] = {.index = 217, .length = 4}, - [96] = {.index = 221, .length = 3}, - [97] = {.index = 224, .length = 3}, - [98] = {.index = 227, .length = 4}, - [99] = {.index = 231, .length = 4}, - [100] = {.index = 235, .length = 3}, - [101] = {.index = 238, .length = 3}, - [102] = {.index = 241, .length = 4}, - [103] = {.index = 245, .length = 3}, - [104] = {.index = 248, .length = 3}, - [105] = {.index = 251, .length = 3}, - [106] = {.index = 254, .length = 4}, - [107] = {.index = 258, .length = 3}, - [108] = {.index = 261, .length = 3}, - [109] = {.index = 264, .length = 3}, - [110] = {.index = 267, .length = 3}, - [111] = {.index = 270, .length = 3}, - [112] = {.index = 273, .length = 4}, - [113] = {.index = 277, .length = 3}, - [114] = {.index = 280, .length = 4}, - [115] = {.index = 284, .length = 2}, - [116] = {.index = 286, .length = 5}, - [117] = {.index = 291, .length = 4}, - [118] = {.index = 295, .length = 5}, - [119] = {.index = 300, .length = 2}, - [120] = {.index = 302, .length = 1}, - [121] = {.index = 303, .length = 2}, - [122] = {.index = 305, .length = 1}, - [125] = {.index = 306, .length = 3}, - [126] = {.index = 309, .length = 5}, - [127] = {.index = 314, .length = 2}, - [128] = {.index = 316, .length = 3}, - [129] = {.index = 319, .length = 3}, - [130] = {.index = 322, .length = 3}, - [131] = {.index = 325, .length = 4}, - [132] = {.index = 329, .length = 4}, - [133] = {.index = 333, .length = 3}, - [134] = {.index = 336, .length = 5}, - [135] = {.index = 341, .length = 4}, - [136] = {.index = 345, .length = 4}, - [137] = {.index = 349, .length = 3}, - [138] = {.index = 349, .length = 3}, - [139] = {.index = 352, .length = 4}, - [140] = {.index = 356, .length = 4}, - [141] = {.index = 360, .length = 4}, - [142] = {.index = 364, .length = 4}, - [143] = {.index = 368, .length = 4}, - [144] = {.index = 372, .length = 4}, - [145] = {.index = 376, .length = 4}, - [146] = {.index = 380, .length = 4}, - [147] = {.index = 384, .length = 4}, - [148] = {.index = 388, .length = 5}, - [149] = {.index = 393, .length = 6}, - [150] = {.index = 399, .length = 1}, - [151] = {.index = 400, .length = 2}, - [152] = {.index = 402, .length = 1}, - [153] = {.index = 403, .length = 3}, - [154] = {.index = 406, .length = 5}, - [155] = {.index = 411, .length = 5}, - [156] = {.index = 416, .length = 4}, - [157] = {.index = 420, .length = 4}, - [158] = {.index = 424, .length = 5}, - [159] = {.index = 429, .length = 3}, - [160] = {.index = 432, .length = 4}, - [161] = {.index = 436, .length = 5}, - [162] = {.index = 441, .length = 5}, - [163] = {.index = 446, .length = 2}, - [164] = {.index = 448, .length = 2}, - [165] = {.index = 450, .length = 3}, - [166] = {.index = 453, .length = 5}, - [167] = {.index = 458, .length = 3}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_name, 0}, - [1] = - {field_body, 1}, - [2] = - {field_parameters, 1}, - [3] = - {field_name, 0, .inherited = true}, - {field_object, 0, .inherited = true}, - [5] = - {field_arguments, 1}, - {field_function, 0}, - [7] = - {field_body, 1}, - {field_name, 0, .inherited = true}, - {field_parameters, 0, .inherited = true}, - {field_reference_modifier, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - [12] = - {field_name, 1}, - [13] = - {field_body, 2}, - {field_name, 1}, - [15] = - {field_name, 1}, - {field_parameters, 2}, - [17] = - {field_body, 2}, - {field_parameters, 1}, - [19] = - {field_parameters, 2}, - {field_reference_modifier, 1}, - [21] = - {field_parameters, 1}, - {field_return_type, 2, .inherited = true}, - [23] = - {field_body, 2}, - {field_condition, 1}, - [25] = - {field_end_tag, 2}, - {field_identifier, 1}, - [27] = - {field_parameters, 2}, - [28] = - {field_attributes, 0, .inherited = true}, - {field_body, 2}, - {field_parameters, 0, .inherited = true}, - {field_reference_modifier, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - [33] = - {field_left, 0}, - {field_right, 2}, - [35] = - {field_left, 0}, - {field_operator, 1}, - {field_right, 2}, - [38] = - {field_name, 2}, - {field_scope, 0}, - [40] = - {field_name, 2}, - {field_object, 0}, - [42] = - {field_attributes, 0}, - {field_parameters, 2}, - [44] = - {field_attributes, 0}, - {field_body, 2}, - {field_name, 1, .inherited = true}, - {field_parameters, 1, .inherited = true}, - {field_reference_modifier, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [50] = - {field_body, 3}, - {field_parameters, 2}, - [52] = - {field_name, 0}, - {field_value, 2}, - [54] = - {field_name, 1}, - {field_reference_modifier, 0}, - [56] = - {field_name, 1}, - {field_visibility, 0}, - [58] = - {field_name, 1}, - {field_type, 0}, - [60] = - {field_attributes, 0}, - {field_name, 1}, - [62] = - {field_name, 1}, - {field_parameters, 2}, - {field_return_type, 3, .inherited = true}, - [65] = - {field_name, 2}, - {field_parameters, 3}, - {field_reference_modifier, 1}, - [68] = - {field_body, 3}, - {field_parameters, 2}, - {field_reference_modifier, 1}, - [71] = - {field_return_type, 1}, - [72] = - {field_body, 3}, - {field_parameters, 1}, - {field_return_type, 2, .inherited = true}, - [75] = - {field_body, 3}, - {field_parameters, 1}, - [77] = - {field_attributes, 0, .inherited = true}, - {field_modifier, 0, .inherited = true}, - [79] = - {field_body, 3}, - {field_name, 1}, - [81] = - {field_parameters, 2}, - {field_reference_modifier, 1}, - {field_return_type, 3, .inherited = true}, - [84] = - {field_type, 1}, - {field_value, 3}, - [86] = - {field_alternative, 0}, - [87] = - {field_alternative, 3}, - {field_body, 2}, - {field_condition, 1}, - [90] = - {field_alternative, 3, .inherited = true}, - {field_body, 2}, - {field_condition, 1}, - [93] = - {field_attributes, 1}, - [94] = - {field_end_tag, 3}, - {field_identifier, 1}, - {field_value, 2}, - [97] = - {field_reference_modifier, 0}, - [98] = - {field_body, 3}, - {field_modifier, 0}, - {field_name, 2}, - [101] = - {field_parameters, 3}, - {field_reference_modifier, 2}, - [103] = - {field_parameters, 2}, - {field_return_type, 3, .inherited = true}, - [105] = - {field_alternative, 3}, - {field_condition, 0}, - [107] = - {field_left, 0}, - {field_right, 3}, - [109] = - {field_arguments, 3}, - {field_name, 2}, - {field_scope, 0}, - [112] = - {field_arguments, 3}, - {field_name, 2}, - {field_object, 0}, - [115] = - {field_attributes, 0}, - {field_body, 3}, - {field_parameters, 2}, - [118] = - {field_attributes, 0}, - {field_body, 3}, - {field_name, 2}, - [121] = - {field_attributes, 0}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - [124] = - {field_attributes, 0}, - {field_parameters, 2}, - {field_return_type, 3, .inherited = true}, - [127] = - {field_attributes, 0}, - {field_parameters, 3}, - [129] = - {field_body, 4}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - [132] = - {field_body, 4}, - {field_parameters, 2}, - {field_return_type, 3, .inherited = true}, - [135] = - {field_body, 4}, - {field_parameters, 2}, - [137] = - {field_name, 2}, - {field_reference_modifier, 0}, - [139] = - {field_name, 2}, - {field_readonly, 1}, - {field_visibility, 0}, - [142] = - {field_name, 2}, - {field_type, 1}, - {field_visibility, 0}, - [145] = - {field_name, 2}, - {field_type, 0}, - [147] = - {field_name, 2}, - {field_reference_modifier, 1}, - {field_type, 0}, - [150] = - {field_attributes, 0}, - {field_name, 2}, - [152] = - {field_attributes, 0}, - {field_name, 2}, - {field_reference_modifier, 1}, - [155] = - {field_attributes, 0}, - {field_name, 2}, - {field_type, 1}, - [158] = - {field_default_value, 2}, - {field_name, 0}, - [160] = - {field_name, 2}, - {field_parameters, 3}, - {field_reference_modifier, 1}, - {field_return_type, 4, .inherited = true}, - [164] = - {field_body, 4}, - {field_parameters, 2}, - {field_reference_modifier, 1}, - {field_return_type, 3, .inherited = true}, - [168] = - {field_body, 4}, - {field_parameters, 2}, - {field_reference_modifier, 1}, - [171] = - {field_body, 4}, - {field_parameters, 1}, - {field_return_type, 3, .inherited = true}, - [174] = - {field_modifier, 0}, - [175] = - {field_name, 0, .inherited = true}, - {field_parameters, 0, .inherited = true}, - {field_reference_modifier, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - [179] = - {field_attributes, 0}, - [180] = - {field_body, 4}, - {field_name, 1}, - [182] = - {field_body, 1}, - {field_condition, 3}, - [184] = - {field_alternative, 3, .inherited = true}, - {field_alternative, 4}, - {field_body, 2}, - {field_condition, 1}, - [188] = - {field_alternative, 0, .inherited = true}, - {field_alternative, 1, .inherited = true}, - [190] = - {field_end_tag, 4}, - {field_identifier, 1}, - {field_value, 2}, - [193] = - {field_end_tag, 4}, - {field_identifier, 2}, - [195] = - {field_end_tag, 4}, - {field_identifier, 1}, - {field_identifier, 2}, - {field_identifier, 3}, - [199] = - {field_body, 4}, - {field_modifier, 0}, - {field_name, 2}, - [202] = - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 4, .inherited = true}, - [205] = - {field_alternative, 4}, - {field_body, 2}, - {field_condition, 0}, - [208] = - {field_name, 3}, - {field_object, 0}, - [210] = - {field_attributes, 0}, - {field_body, 4}, - {field_parameters, 3}, - [213] = - {field_attributes, 0}, - {field_body, 4}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - [217] = - {field_attributes, 0}, - {field_body, 4}, - {field_parameters, 2}, - {field_return_type, 3, .inherited = true}, - [221] = - {field_attributes, 0}, - {field_body, 4}, - {field_parameters, 2}, - [224] = - {field_attributes, 0}, - {field_body, 4}, - {field_name, 2}, - [227] = - {field_attributes, 0}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 4, .inherited = true}, - [231] = - {field_attributes, 0}, - {field_body, 4}, - {field_modifier, 1}, - {field_name, 3}, - [235] = - {field_attributes, 0}, - {field_parameters, 4}, - {field_reference_modifier, 3}, - [238] = - {field_attributes, 0}, - {field_parameters, 3}, - {field_return_type, 4, .inherited = true}, - [241] = - {field_body, 5}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 4, .inherited = true}, - [245] = - {field_body, 5}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - [248] = - {field_body, 5}, - {field_parameters, 2}, - {field_return_type, 4, .inherited = true}, - [251] = - {field_default_value, 3}, - {field_name, 1}, - {field_reference_modifier, 0}, - [254] = - {field_name, 3}, - {field_readonly, 1}, - {field_type, 2}, - {field_visibility, 0}, - [258] = - {field_default_value, 3}, - {field_name, 1}, - {field_visibility, 0}, - [261] = - {field_name, 3}, - {field_reference_modifier, 1}, - {field_type, 0}, - [264] = - {field_default_value, 3}, - {field_name, 1}, - {field_type, 0}, - [267] = - {field_attributes, 0}, - {field_name, 3}, - {field_reference_modifier, 1}, - [270] = - {field_attributes, 0}, - {field_name, 3}, - {field_type, 1}, - [273] = - {field_attributes, 0}, - {field_name, 3}, - {field_reference_modifier, 2}, - {field_type, 1}, - [277] = - {field_attributes, 0}, - {field_default_value, 3}, - {field_name, 1}, - [280] = - {field_body, 5}, - {field_parameters, 2}, - {field_reference_modifier, 1}, - {field_return_type, 4, .inherited = true}, - [284] = - {field_attributes, 0}, - {field_modifier, 1}, - [286] = - {field_attributes, 0}, - {field_name, 1, .inherited = true}, - {field_parameters, 1, .inherited = true}, - {field_reference_modifier, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [291] = - {field_name, 1, .inherited = true}, - {field_parameters, 1, .inherited = true}, - {field_reference_modifier, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [295] = - {field_body, 2}, - {field_name, 1, .inherited = true}, - {field_parameters, 1, .inherited = true}, - {field_reference_modifier, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [300] = - {field_body, 5}, - {field_name, 1}, - [302] = - {field_return_expression, 2}, - [303] = - {field_conditional_expressions, 0}, - {field_return_expression, 2}, - [305] = - {field_value, 1}, - [306] = - {field_end_tag, 5}, - {field_identifier, 2}, - {field_value, 4}, - [309] = - {field_end_tag, 5}, - {field_identifier, 1}, - {field_identifier, 2}, - {field_identifier, 3}, - {field_value, 4}, - [314] = - {field_name, 0}, - {field_reference_modifier, 2}, - [316] = - {field_body, 5}, - {field_modifier, 0}, - {field_name, 2}, - [319] = - {field_arguments, 5}, - {field_name, 3}, - {field_scope, 0}, - [322] = - {field_arguments, 5}, - {field_name, 3}, - {field_object, 0}, - [325] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 4}, - {field_reference_modifier, 3}, - [329] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 3}, - {field_return_type, 4, .inherited = true}, - [333] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 3}, - [336] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 4, .inherited = true}, - [341] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - [345] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 2}, - {field_return_type, 4, .inherited = true}, - [349] = - {field_attributes, 0}, - {field_body, 5}, - {field_name, 2}, - [352] = - {field_attributes, 0}, - {field_body, 5}, - {field_modifier, 1}, - {field_name, 3}, - [356] = - {field_attributes, 0}, - {field_parameters, 4}, - {field_reference_modifier, 3}, - {field_return_type, 5, .inherited = true}, - [360] = - {field_body, 6}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 5, .inherited = true}, - [364] = - {field_default_value, 4}, - {field_name, 2}, - {field_readonly, 1}, - {field_visibility, 0}, - [368] = - {field_default_value, 4}, - {field_name, 2}, - {field_type, 1}, - {field_visibility, 0}, - [372] = - {field_default_value, 4}, - {field_name, 2}, - {field_reference_modifier, 1}, - {field_type, 0}, - [376] = - {field_attributes, 0}, - {field_default_value, 4}, - {field_name, 2}, - {field_reference_modifier, 1}, - [380] = - {field_attributes, 0}, - {field_name, 4}, - {field_reference_modifier, 2}, - {field_type, 1}, - [384] = - {field_attributes, 0}, - {field_default_value, 4}, - {field_name, 2}, - {field_type, 1}, - [388] = - {field_attributes, 0}, - {field_name, 2, .inherited = true}, - {field_parameters, 2, .inherited = true}, - {field_reference_modifier, 2, .inherited = true}, - {field_return_type, 2, .inherited = true}, - [393] = - {field_attributes, 0}, - {field_body, 3}, - {field_name, 2, .inherited = true}, - {field_parameters, 2, .inherited = true}, - {field_reference_modifier, 2, .inherited = true}, - {field_return_type, 2, .inherited = true}, - [399] = - {field_type, 1}, - [400] = - {field_body, 4}, - {field_type, 2}, - [402] = - {field_body, 6}, - [403] = - {field_end_tag, 6}, - {field_identifier, 2}, - {field_value, 4}, - [406] = - {field_end_tag, 6}, - {field_identifier, 1}, - {field_identifier, 2}, - {field_identifier, 3}, - {field_value, 4}, - [411] = - {field_attributes, 0}, - {field_body, 6}, - {field_parameters, 4}, - {field_reference_modifier, 3}, - {field_return_type, 5, .inherited = true}, - [416] = - {field_attributes, 0}, - {field_body, 6}, - {field_parameters, 4}, - {field_reference_modifier, 3}, - [420] = - {field_attributes, 0}, - {field_body, 6}, - {field_parameters, 3}, - {field_return_type, 5, .inherited = true}, - [424] = - {field_attributes, 0}, - {field_body, 6}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 5, .inherited = true}, - [429] = - {field_attributes, 0}, - {field_body, 6}, - {field_name, 2}, - [432] = - {field_attributes, 0}, - {field_body, 6}, - {field_modifier, 1}, - {field_name, 3}, - [436] = - {field_default_value, 5}, - {field_name, 3}, - {field_readonly, 1}, - {field_type, 2}, - {field_visibility, 0}, - [441] = - {field_attributes, 0}, - {field_default_value, 5}, - {field_name, 3}, - {field_reference_modifier, 2}, - {field_type, 1}, - [446] = - {field_attributes, 0}, - {field_type, 2}, - [448] = - {field_name, 1}, - {field_value, 3}, - [450] = - {field_body, 5}, - {field_name, 3}, - {field_type, 2}, - [453] = - {field_attributes, 0}, - {field_body, 7}, - {field_parameters, 4}, - {field_reference_modifier, 3}, - {field_return_type, 6, .inherited = true}, - [458] = - {field_attributes, 0}, - {field_name, 2}, - {field_value, 4}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, - [4] = { - [0] = sym_list_literal, - }, - [5] = { - [0] = sym_string_value, - }, - [15] = { - [0] = anon_sym_array, - }, - [46] = { - [1] = sym_list_literal, - }, - [47] = { - [2] = sym_list_literal, - }, - [81] = { - [3] = sym_primitive_type, - }, - [119] = { - [3] = sym_primitive_type, - }, - [123] = { - [3] = sym_list_literal, - }, - [124] = { - [4] = sym_list_literal, - }, - [137] = { - [4] = sym_primitive_type, - }, - [159] = { - [4] = sym_primitive_type, - }, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - sym__list_destructing, 2, - sym__list_destructing, - sym_list_literal, - sym__array_destructing, 2, - sym__array_destructing, - sym_list_literal, - 0, -}; - -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 3, - [4] = 4, - [5] = 5, - [6] = 6, - [7] = 2, - [8] = 8, - [9] = 8, - [10] = 10, - [11] = 10, - [12] = 12, - [13] = 12, - [14] = 12, - [15] = 12, - [16] = 16, - [17] = 17, - [18] = 16, - [19] = 19, - [20] = 19, - [21] = 21, - [22] = 22, - [23] = 23, - [24] = 24, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 27, - [29] = 29, - [30] = 30, - [31] = 31, - [32] = 31, - [33] = 33, - [34] = 34, - [35] = 35, - [36] = 17, - [37] = 37, - [38] = 25, - [39] = 19, - [40] = 26, - [41] = 41, - [42] = 30, - [43] = 43, - [44] = 27, - [45] = 45, - [46] = 46, - [47] = 45, - [48] = 25, - [49] = 43, - [50] = 33, - [51] = 34, - [52] = 27, - [53] = 46, - [54] = 54, - [55] = 34, - [56] = 30, - [57] = 25, - [58] = 17, - [59] = 24, - [60] = 23, - [61] = 45, - [62] = 54, - [63] = 21, - [64] = 46, - [65] = 19, - [66] = 19, - [67] = 16, - [68] = 30, - [69] = 45, - [70] = 17, - [71] = 71, - [72] = 46, - [73] = 37, - [74] = 16, - [75] = 34, - [76] = 30, - [77] = 35, - [78] = 78, - [79] = 78, - [80] = 80, - [81] = 81, - [82] = 81, - [83] = 80, - [84] = 81, - [85] = 81, - [86] = 86, - [87] = 86, - [88] = 86, - [89] = 86, - [90] = 90, - [91] = 91, - [92] = 91, - [93] = 91, - [94] = 90, - [95] = 90, - [96] = 90, - [97] = 91, - [98] = 90, - [99] = 91, - [100] = 90, - [101] = 101, - [102] = 101, - [103] = 101, - [104] = 101, - [105] = 101, - [106] = 106, - [107] = 106, - [108] = 106, - [109] = 106, - [110] = 106, - [111] = 106, - [112] = 106, - [113] = 106, - [114] = 114, - [115] = 115, - [116] = 115, - [117] = 114, - [118] = 118, - [119] = 119, - [120] = 120, - [121] = 121, - [122] = 118, - [123] = 118, - [124] = 121, - [125] = 121, - [126] = 121, - [127] = 118, - [128] = 121, - [129] = 119, - [130] = 118, - [131] = 121, - [132] = 118, - [133] = 133, - [134] = 118, - [135] = 135, - [136] = 121, - [137] = 120, - [138] = 118, - [139] = 121, - [140] = 140, - [141] = 135, - [142] = 133, - [143] = 140, - [144] = 144, - [145] = 145, - [146] = 146, - [147] = 147, - [148] = 146, - [149] = 145, - [150] = 150, - [151] = 144, - [152] = 152, - [153] = 153, - [154] = 152, - [155] = 155, - [156] = 156, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 158, - [162] = 162, - [163] = 158, - [164] = 160, - [165] = 162, - [166] = 166, - [167] = 167, - [168] = 167, - [169] = 169, - [170] = 166, - [171] = 160, - [172] = 162, - [173] = 159, - [174] = 166, - [175] = 169, - [176] = 169, - [177] = 167, - [178] = 159, - [179] = 166, - [180] = 167, - [181] = 169, - [182] = 160, - [183] = 158, - [184] = 159, - [185] = 162, - [186] = 186, - [187] = 187, - [188] = 188, - [189] = 186, - [190] = 186, - [191] = 186, - [192] = 192, - [193] = 193, - [194] = 186, - [195] = 186, - [196] = 196, - [197] = 197, - [198] = 198, - [199] = 193, - [200] = 196, - [201] = 187, - [202] = 202, - [203] = 202, - [204] = 204, - [205] = 204, - [206] = 206, - [207] = 207, - [208] = 207, - [209] = 204, - [210] = 210, - [211] = 206, - [212] = 206, - [213] = 213, - [214] = 207, - [215] = 210, - [216] = 210, - [217] = 206, - [218] = 206, - [219] = 206, - [220] = 207, - [221] = 204, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 227, - [228] = 228, - [229] = 229, - [230] = 230, - [231] = 231, - [232] = 232, - [233] = 224, - [234] = 231, - [235] = 235, - [236] = 236, - [237] = 237, - [238] = 238, - [239] = 239, - [240] = 239, - [241] = 241, - [242] = 236, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 247, - [248] = 248, - [249] = 249, - [250] = 250, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 225, - [255] = 227, - [256] = 232, - [257] = 235, - [258] = 224, - [259] = 228, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 238, - [264] = 262, - [265] = 241, - [266] = 266, - [267] = 262, - [268] = 241, - [269] = 269, - [270] = 270, - [271] = 271, - [272] = 272, - [273] = 273, - [274] = 274, - [275] = 266, - [276] = 270, - [277] = 277, - [278] = 278, - [279] = 229, - [280] = 261, - [281] = 241, - [282] = 282, - [283] = 283, - [284] = 277, - [285] = 285, - [286] = 282, - [287] = 287, - [288] = 287, - [289] = 289, - [290] = 243, - [291] = 244, - [292] = 228, - [293] = 236, - [294] = 261, - [295] = 289, - [296] = 235, - [297] = 285, - [298] = 229, - [299] = 232, - [300] = 227, - [301] = 225, - [302] = 253, - [303] = 252, - [304] = 251, - [305] = 226, - [306] = 253, - [307] = 250, - [308] = 278, - [309] = 287, - [310] = 249, - [311] = 248, - [312] = 222, - [313] = 246, - [314] = 245, - [315] = 236, - [316] = 244, - [317] = 243, - [318] = 238, - [319] = 239, - [320] = 282, - [321] = 247, - [322] = 322, - [323] = 245, - [324] = 247, - [325] = 325, - [326] = 322, - [327] = 278, - [328] = 285, - [329] = 246, - [330] = 239, - [331] = 277, - [332] = 241, - [333] = 289, - [334] = 243, - [335] = 244, - [336] = 336, - [337] = 236, - [338] = 245, - [339] = 287, - [340] = 246, - [341] = 270, - [342] = 282, - [343] = 277, - [344] = 270, - [345] = 289, - [346] = 266, - [347] = 285, - [348] = 278, - [349] = 247, - [350] = 224, - [351] = 222, - [352] = 248, - [353] = 241, - [354] = 249, - [355] = 262, - [356] = 356, - [357] = 241, - [358] = 236, - [359] = 250, - [360] = 236, - [361] = 266, - [362] = 251, - [363] = 222, - [364] = 252, - [365] = 253, - [366] = 366, - [367] = 225, - [368] = 238, - [369] = 266, - [370] = 370, - [371] = 371, - [372] = 248, - [373] = 262, - [374] = 374, - [375] = 227, - [376] = 232, - [377] = 229, - [378] = 235, - [379] = 374, - [380] = 261, - [381] = 371, - [382] = 249, - [383] = 241, - [384] = 250, - [385] = 251, - [386] = 252, - [387] = 266, - [388] = 322, - [389] = 226, - [390] = 226, - [391] = 374, - [392] = 241, - [393] = 393, - [394] = 236, - [395] = 228, - [396] = 236, - [397] = 236, - [398] = 230, - [399] = 241, - [400] = 322, - [401] = 262, - [402] = 230, - [403] = 403, - [404] = 266, - [405] = 238, - [406] = 406, - [407] = 230, - [408] = 266, - [409] = 266, - [410] = 231, - [411] = 411, - [412] = 412, - [413] = 238, - [414] = 371, - [415] = 374, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 420, - [422] = 419, - [423] = 420, - [424] = 420, - [425] = 418, - [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 430, - [432] = 432, - [433] = 430, - [434] = 434, - [435] = 430, - [436] = 436, - [437] = 430, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 442, - [443] = 443, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 448, - [449] = 449, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 453, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 476, - [477] = 477, - [478] = 478, - [479] = 479, - [480] = 448, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 440, - [490] = 490, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 496, - [497] = 497, - [498] = 498, - [499] = 499, - [500] = 500, - [501] = 501, - [502] = 502, - [503] = 503, - [504] = 504, - [505] = 432, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 516, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 427, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 533, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 538, - [539] = 539, - [540] = 540, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 551, - [553] = 551, - [554] = 551, - [555] = 555, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 578, - [582] = 580, - [583] = 564, - [584] = 559, - [585] = 580, - [586] = 586, - [587] = 578, - [588] = 560, - [589] = 589, - [590] = 590, - [591] = 563, - [592] = 561, - [593] = 562, - [594] = 564, - [595] = 573, - [596] = 596, - [597] = 580, - [598] = 574, - [599] = 556, - [600] = 600, - [601] = 577, - [602] = 558, - [603] = 569, - [604] = 590, - [605] = 575, - [606] = 571, - [607] = 568, - [608] = 576, - [609] = 566, - [610] = 567, - [611] = 572, - [612] = 555, - [613] = 565, - [614] = 570, - [615] = 578, - [616] = 586, - [617] = 596, - [618] = 557, - [619] = 590, - [620] = 620, - [621] = 586, - [622] = 622, - [623] = 579, - [624] = 579, - [625] = 625, - [626] = 590, - [627] = 586, - [628] = 628, - [629] = 625, - [630] = 630, - [631] = 563, - [632] = 561, - [633] = 566, - [634] = 562, - [635] = 635, - [636] = 636, - [637] = 559, - [638] = 560, - [639] = 635, - [640] = 640, - [641] = 641, - [642] = 642, - [643] = 643, - [644] = 644, - [645] = 573, - [646] = 646, - [647] = 575, - [648] = 646, - [649] = 571, - [650] = 572, - [651] = 651, - [652] = 555, - [653] = 565, - [654] = 567, - [655] = 655, - [656] = 574, - [657] = 577, - [658] = 576, - [659] = 568, - [660] = 558, - [661] = 570, - [662] = 569, - [663] = 556, - [664] = 566, - [665] = 557, - [666] = 561, - [667] = 559, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 563, - [672] = 561, - [673] = 562, - [674] = 674, - [675] = 675, - [676] = 676, - [677] = 560, - [678] = 562, - [679] = 679, - [680] = 655, - [681] = 681, - [682] = 562, - [683] = 683, - [684] = 563, - [685] = 681, - [686] = 668, - [687] = 687, - [688] = 688, - [689] = 641, - [690] = 561, - [691] = 691, - [692] = 563, - [693] = 560, - [694] = 694, - [695] = 687, - [696] = 560, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 559, - [701] = 559, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 558, - [706] = 706, - [707] = 569, - [708] = 565, - [709] = 709, - [710] = 710, - [711] = 570, - [712] = 712, - [713] = 713, - [714] = 550, - [715] = 555, - [716] = 716, - [717] = 568, - [718] = 572, - [719] = 719, - [720] = 577, - [721] = 571, - [722] = 722, - [723] = 567, - [724] = 573, - [725] = 557, - [726] = 726, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 730, - [731] = 731, - [732] = 732, - [733] = 733, - [734] = 574, - [735] = 735, - [736] = 736, - [737] = 737, - [738] = 738, - [739] = 739, - [740] = 556, - [741] = 575, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 733, - [746] = 576, - [747] = 747, - [748] = 716, - [749] = 643, - [750] = 559, - [751] = 562, - [752] = 560, - [753] = 642, - [754] = 427, - [755] = 561, - [756] = 641, - [757] = 702, - [758] = 758, - [759] = 563, - [760] = 635, - [761] = 635, - [762] = 762, - [763] = 763, - [764] = 640, - [765] = 432, - [766] = 766, - [767] = 688, - [768] = 768, - [769] = 572, - [770] = 569, - [771] = 555, - [772] = 556, - [773] = 773, - [774] = 558, - [775] = 577, - [776] = 576, - [777] = 777, - [778] = 566, - [779] = 568, - [780] = 575, - [781] = 573, - [782] = 574, - [783] = 571, - [784] = 567, - [785] = 565, - [786] = 557, - [787] = 570, - [788] = 788, - [789] = 777, - [790] = 790, - [791] = 560, - [792] = 561, - [793] = 563, - [794] = 794, - [795] = 562, - [796] = 651, - [797] = 560, - [798] = 702, - [799] = 799, - [800] = 703, - [801] = 559, - [802] = 799, - [803] = 803, - [804] = 440, - [805] = 699, - [806] = 655, - [807] = 561, - [808] = 563, - [809] = 697, - [810] = 691, - [811] = 803, - [812] = 560, - [813] = 683, - [814] = 561, - [815] = 448, - [816] = 559, - [817] = 817, - [818] = 670, - [819] = 794, - [820] = 562, - [821] = 687, - [822] = 681, - [823] = 681, - [824] = 794, - [825] = 559, - [826] = 826, - [827] = 566, - [828] = 655, - [829] = 562, - [830] = 687, - [831] = 794, - [832] = 817, - [833] = 688, - [834] = 675, - [835] = 790, - [836] = 669, - [837] = 799, - [838] = 794, - [839] = 641, - [840] = 563, - [841] = 574, - [842] = 556, - [843] = 568, - [844] = 575, - [845] = 702, - [846] = 727, - [847] = 702, - [848] = 569, - [849] = 570, - [850] = 573, - [851] = 576, - [852] = 709, - [853] = 710, - [854] = 565, - [855] = 557, - [856] = 567, - [857] = 555, - [858] = 706, - [859] = 737, - [860] = 726, - [861] = 738, - [862] = 743, - [863] = 719, - [864] = 732, - [865] = 729, - [866] = 713, - [867] = 730, - [868] = 712, - [869] = 731, - [870] = 742, - [871] = 747, - [872] = 571, - [873] = 550, - [874] = 728, - [875] = 736, - [876] = 744, - [877] = 572, - [878] = 558, - [879] = 722, - [880] = 704, - [881] = 739, - [882] = 577, - [883] = 763, - [884] = 766, - [885] = 768, - [886] = 762, - [887] = 688, - [888] = 888, - [889] = 889, - [890] = 890, - [891] = 891, - [892] = 892, - [893] = 893, - [894] = 894, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 906, - [907] = 555, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 556, - [915] = 915, - [916] = 916, - [917] = 558, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 927, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 557, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 448, - [954] = 440, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 962, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 966, - [967] = 967, - [968] = 968, - [969] = 969, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 973, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 977, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 983, - [984] = 984, - [985] = 985, - [986] = 986, - [987] = 987, - [988] = 962, - [989] = 982, - [990] = 961, - [991] = 977, - [992] = 981, - [993] = 966, - [994] = 968, - [995] = 967, - [996] = 965, - [997] = 971, - [998] = 969, - [999] = 986, - [1000] = 956, - [1001] = 983, - [1002] = 973, - [1003] = 964, - [1004] = 957, - [1005] = 979, - [1006] = 978, - [1007] = 976, - [1008] = 974, - [1009] = 970, - [1010] = 958, - [1011] = 955, - [1012] = 972, - [1013] = 959, - [1014] = 960, - [1015] = 963, - [1016] = 985, - [1017] = 987, - [1018] = 980, - [1019] = 975, - [1020] = 984, - [1021] = 955, - [1022] = 976, - [1023] = 896, - [1024] = 940, - [1025] = 945, - [1026] = 427, - [1027] = 906, - [1028] = 919, - [1029] = 950, - [1030] = 930, - [1031] = 985, - [1032] = 932, - [1033] = 938, - [1034] = 987, - [1035] = 555, - [1036] = 908, - [1037] = 888, - [1038] = 904, - [1039] = 556, - [1040] = 558, - [1041] = 924, - [1042] = 939, - [1043] = 949, - [1044] = 951, - [1045] = 948, - [1046] = 928, - [1047] = 911, - [1048] = 922, - [1049] = 889, - [1050] = 920, - [1051] = 909, - [1052] = 557, - [1053] = 902, - [1054] = 891, - [1055] = 975, - [1056] = 941, - [1057] = 915, - [1058] = 916, - [1059] = 927, - [1060] = 918, - [1061] = 962, - [1062] = 984, - [1063] = 947, - [1064] = 972, - [1065] = 958, - [1066] = 923, - [1067] = 936, - [1068] = 921, - [1069] = 926, - [1070] = 970, - [1071] = 974, - [1072] = 1072, - [1073] = 978, - [1074] = 979, - [1075] = 934, - [1076] = 973, - [1077] = 963, - [1078] = 942, - [1079] = 960, - [1080] = 959, - [1081] = 957, - [1082] = 964, - [1083] = 983, - [1084] = 956, - [1085] = 986, - [1086] = 969, - [1087] = 971, - [1088] = 910, - [1089] = 961, - [1090] = 898, - [1091] = 965, - [1092] = 967, - [1093] = 968, - [1094] = 935, - [1095] = 929, - [1096] = 925, - [1097] = 900, - [1098] = 933, - [1099] = 966, - [1100] = 981, - [1101] = 944, - [1102] = 977, - [1103] = 931, - [1104] = 905, - [1105] = 899, - [1106] = 894, - [1107] = 893, - [1108] = 892, - [1109] = 913, - [1110] = 937, - [1111] = 432, - [1112] = 903, - [1113] = 980, - [1114] = 901, - [1115] = 897, - [1116] = 912, - [1117] = 890, - [1118] = 946, - [1119] = 895, - [1120] = 982, - [1121] = 952, - [1122] = 957, - [1123] = 955, - [1124] = 964, - [1125] = 971, - [1126] = 962, - [1127] = 987, - [1128] = 985, - [1129] = 972, - [1130] = 958, - [1131] = 970, - [1132] = 974, - [1133] = 976, - [1134] = 978, - [1135] = 979, - [1136] = 973, - [1137] = 968, - [1138] = 969, - [1139] = 966, - [1140] = 967, - [1141] = 961, - [1142] = 981, - [1143] = 986, - [1144] = 965, - [1145] = 980, - [1146] = 956, - [1147] = 982, - [1148] = 977, - [1149] = 975, - [1150] = 983, - [1151] = 984, - [1152] = 963, - [1153] = 960, - [1154] = 959, - [1155] = 1155, - [1156] = 1156, - [1157] = 1157, - [1158] = 963, - [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 1161, - [1163] = 1163, - [1164] = 1164, - [1165] = 1165, - [1166] = 963, - [1167] = 1167, - [1168] = 1161, - [1169] = 1161, - [1170] = 1167, - [1171] = 1167, - [1172] = 1172, - [1173] = 1173, - [1174] = 1167, - [1175] = 1160, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, - [1185] = 1185, - [1186] = 1186, - [1187] = 1187, - [1188] = 1188, - [1189] = 1189, - [1190] = 1184, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1187, - [1195] = 1160, - [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1184, - [1200] = 1184, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1192, - [1206] = 1189, - [1207] = 1207, - [1208] = 1188, - [1209] = 1209, - [1210] = 1165, - [1211] = 1211, - [1212] = 1165, - [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1215, - [1217] = 1217, - [1218] = 1214, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1220, - [1224] = 1224, - [1225] = 1225, - [1226] = 1215, - [1227] = 1227, - [1228] = 1213, - [1229] = 1225, - [1230] = 1224, - [1231] = 1213, - [1232] = 1227, - [1233] = 1213, - [1234] = 1220, - [1235] = 1224, - [1236] = 1227, - [1237] = 1219, - [1238] = 1220, - [1239] = 1224, - [1240] = 1240, - [1241] = 1227, - [1242] = 1225, - [1243] = 1224, - [1244] = 1227, - [1245] = 1245, - [1246] = 1221, - [1247] = 1227, - [1248] = 1219, - [1249] = 1222, - [1250] = 1220, - [1251] = 1213, - [1252] = 1215, - [1253] = 1227, - [1254] = 1245, - [1255] = 1219, - [1256] = 1245, - [1257] = 1224, - [1258] = 1227, - [1259] = 1259, - [1260] = 1224, - [1261] = 1261, - [1262] = 1221, - [1263] = 1245, - [1264] = 1264, - [1265] = 1214, - [1266] = 1220, - [1267] = 1264, - [1268] = 1227, - [1269] = 1245, - [1270] = 1224, - [1271] = 1220, - [1272] = 1214, - [1273] = 1213, - [1274] = 1224, - [1275] = 1275, - [1276] = 1214, - [1277] = 1220, - [1278] = 1278, - [1279] = 1214, - [1280] = 1224, - [1281] = 1220, - [1282] = 1282, - [1283] = 1245, - [1284] = 1227, - [1285] = 1285, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1286, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1294, - [1297] = 1294, - [1298] = 1295, - [1299] = 1295, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, - [1304] = 1304, - [1305] = 1303, - [1306] = 1306, - [1307] = 1303, - [1308] = 1308, - [1309] = 1309, - [1310] = 1310, - [1311] = 1287, - [1312] = 1293, - [1313] = 1313, - [1314] = 1314, - [1315] = 1315, - [1316] = 1316, - [1317] = 1317, - [1318] = 1318, - [1319] = 1301, - [1320] = 1300, - [1321] = 1321, - [1322] = 1322, - [1323] = 1072, - [1324] = 1324, - [1325] = 1304, - [1326] = 1326, - [1327] = 1308, - [1328] = 1302, - [1329] = 1306, - [1330] = 1330, - [1331] = 432, - [1332] = 1332, - [1333] = 1333, - [1334] = 1334, - [1335] = 1335, - [1336] = 1336, - [1337] = 1337, - [1338] = 1338, - [1339] = 1339, - [1340] = 1336, - [1341] = 1341, - [1342] = 1342, - [1343] = 427, - [1344] = 1335, - [1345] = 1345, - [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 1353, - [1354] = 568, - [1355] = 1355, - [1356] = 1356, - [1357] = 1357, - [1358] = 1358, - [1359] = 1359, - [1360] = 1360, - [1361] = 1361, - [1362] = 1362, - [1363] = 1363, - [1364] = 1356, - [1365] = 1365, - [1366] = 1366, - [1367] = 1367, - [1368] = 1368, - [1369] = 1369, - [1370] = 522, - [1371] = 1371, - [1372] = 1372, - [1373] = 1373, - [1374] = 469, - [1375] = 1375, - [1376] = 1361, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1380, - [1381] = 1381, - [1382] = 1382, - [1383] = 524, - [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 1384, - [1388] = 1357, - [1389] = 1389, - [1390] = 1390, - [1391] = 1389, - [1392] = 1390, - [1393] = 1393, - [1394] = 1394, - [1395] = 1393, - [1396] = 1396, - [1397] = 1397, - [1398] = 1397, - [1399] = 1399, - [1400] = 569, - [1401] = 1401, - [1402] = 1402, - [1403] = 1403, - [1404] = 568, - [1405] = 577, - [1406] = 1406, - [1407] = 1407, - [1408] = 1408, - [1409] = 1409, - [1410] = 1410, - [1411] = 1410, - [1412] = 1412, - [1413] = 1413, - [1414] = 1413, - [1415] = 1415, - [1416] = 1416, - [1417] = 1417, - [1418] = 1418, - [1419] = 1419, - [1420] = 1420, - [1421] = 1421, - [1422] = 670, - [1423] = 1417, - [1424] = 568, - [1425] = 641, - [1426] = 1426, - [1427] = 1287, - [1428] = 1428, - [1429] = 1429, - [1430] = 1430, - [1431] = 1430, - [1432] = 1432, - [1433] = 1433, - [1434] = 1432, - [1435] = 1428, - [1436] = 1436, - [1437] = 1428, - [1438] = 1432, - [1439] = 1428, - [1440] = 1428, - [1441] = 1292, - [1442] = 1290, - [1443] = 1443, - [1444] = 1291, - [1445] = 1445, - [1446] = 1430, - [1447] = 1428, - [1448] = 1448, - [1449] = 1288, - [1450] = 1432, - [1451] = 1430, - [1452] = 1452, - [1453] = 1432, - [1454] = 1217, - [1455] = 1428, - [1456] = 1432, - [1457] = 1428, - [1458] = 1458, - [1459] = 1459, - [1460] = 1432, - [1461] = 1430, - [1462] = 1448, - [1463] = 1428, - [1464] = 1448, - [1465] = 1428, - [1466] = 1432, - [1467] = 1467, - [1468] = 1468, - [1469] = 1430, - [1470] = 1448, - [1471] = 1293, - [1472] = 1430, - [1473] = 1430, - [1474] = 1432, - [1475] = 1475, - [1476] = 1428, - [1477] = 1428, - [1478] = 1430, - [1479] = 1432, - [1480] = 568, - [1481] = 1428, - [1482] = 1448, - [1483] = 1430, - [1484] = 1432, - [1485] = 1430, - [1486] = 1486, - [1487] = 1487, - [1488] = 1486, - [1489] = 1421, - [1490] = 417, - [1491] = 1491, - [1492] = 1491, - [1493] = 1487, - [1494] = 1494, - [1495] = 1495, - [1496] = 1495, - [1497] = 1418, - [1498] = 1498, - [1499] = 416, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, - [1508] = 1504, - [1509] = 562, - [1510] = 1510, - [1511] = 1401, - [1512] = 1502, - [1513] = 1513, - [1514] = 773, - [1515] = 1394, - [1516] = 1516, - [1517] = 1517, - [1518] = 1504, - [1519] = 655, - [1520] = 655, - [1521] = 1504, - [1522] = 1502, - [1523] = 1507, - [1524] = 562, - [1525] = 1502, - [1526] = 1502, - [1527] = 569, - [1528] = 1528, - [1529] = 1507, - [1530] = 1530, - [1531] = 1505, - [1532] = 655, - [1533] = 1443, - [1534] = 577, - [1535] = 1412, - [1536] = 1409, - [1537] = 1537, - [1538] = 1399, - [1539] = 1539, - [1540] = 1504, - [1541] = 1541, - [1542] = 1504, - [1543] = 1543, - [1544] = 568, - [1545] = 1545, - [1546] = 1546, - [1547] = 1547, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, - [1551] = 1551, - [1552] = 1552, - [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1554, - [1557] = 1557, - [1558] = 1547, - [1559] = 1559, - [1560] = 577, - [1561] = 568, - [1562] = 569, - [1563] = 1552, - [1564] = 1412, - [1565] = 1409, - [1566] = 1566, - [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, - [1572] = 1546, - [1573] = 418, - [1574] = 1574, - [1575] = 1575, - [1576] = 1576, - [1577] = 1577, - [1578] = 1551, - [1579] = 1557, - [1580] = 1548, - [1581] = 1549, - [1582] = 1582, - [1583] = 1583, - [1584] = 1584, - [1585] = 419, - [1586] = 1584, - [1587] = 1587, - [1588] = 1588, - [1589] = 1575, - [1590] = 418, - [1591] = 1567, - [1592] = 1592, - [1593] = 1593, - [1594] = 1594, - [1595] = 1595, - [1596] = 1577, - [1597] = 1592, - [1598] = 1505, - [1599] = 1582, - [1600] = 419, - [1601] = 1559, - [1602] = 1401, - [1603] = 1587, - [1604] = 1394, - [1605] = 1399, - [1606] = 1575, - [1607] = 1588, - [1608] = 1608, - [1609] = 1608, - [1610] = 1610, - [1611] = 1611, - [1612] = 1577, - [1613] = 1545, - [1614] = 1555, - [1615] = 1570, - [1616] = 1568, - [1617] = 1617, - [1618] = 1618, - [1619] = 426, - [1620] = 1620, - [1621] = 1618, - [1622] = 1622, - [1623] = 1623, - [1624] = 1618, - [1625] = 449, - [1626] = 1626, - [1627] = 1627, - [1628] = 1628, - [1629] = 442, - [1630] = 447, - [1631] = 439, - [1632] = 438, - [1633] = 1633, - [1634] = 1623, - [1635] = 1635, - [1636] = 441, - [1637] = 436, - [1638] = 1638, - [1639] = 1639, - [1640] = 1640, - [1641] = 1641, - [1642] = 443, - [1643] = 1623, - [1644] = 1644, - [1645] = 1645, - [1646] = 1646, - [1647] = 1647, - [1648] = 1627, - [1649] = 1649, - [1650] = 1626, - [1651] = 1620, - [1652] = 1623, - [1653] = 1645, - [1654] = 1569, - [1655] = 1655, - [1656] = 1656, - [1657] = 1657, - [1658] = 1622, - [1659] = 1623, - [1660] = 1660, - [1661] = 1628, - [1662] = 1662, - [1663] = 1663, - [1664] = 434, - [1665] = 1623, - [1666] = 1666, - [1667] = 1618, - [1668] = 1668, - [1669] = 1669, - [1670] = 1670, - [1671] = 428, - [1672] = 450, - [1673] = 451, - [1674] = 1645, - [1675] = 1675, - [1676] = 1618, - [1677] = 1677, - [1678] = 1678, - [1679] = 1638, - [1680] = 1594, - [1681] = 1539, - [1682] = 1623, - [1683] = 1611, - [1684] = 1618, - [1685] = 1623, - [1686] = 1669, - [1687] = 1618, - [1688] = 1618, - [1689] = 1618, - [1690] = 1666, - [1691] = 1641, - [1692] = 1692, - [1693] = 1627, - [1694] = 1694, - [1695] = 1677, - [1696] = 1623, - [1697] = 1697, - [1698] = 1656, - [1699] = 1655, - [1700] = 1700, - [1701] = 446, - [1702] = 1702, - [1703] = 444, - [1704] = 1593, - [1705] = 1623, - [1706] = 429, - [1707] = 1639, - [1708] = 1618, - [1709] = 1617, - [1710] = 1623, - [1711] = 1711, - [1712] = 1618, - [1713] = 1702, - [1714] = 1623, - [1715] = 445, - [1716] = 1660, - [1717] = 1717, - [1718] = 1694, - [1719] = 1719, - [1720] = 1720, - [1721] = 1721, - [1722] = 1722, - [1723] = 1723, - [1724] = 1724, - [1725] = 1725, - [1726] = 1726, - [1727] = 1727, - [1728] = 1728, - [1729] = 1729, - [1730] = 1730, - [1731] = 1731, - [1732] = 1721, - [1733] = 1733, - [1734] = 1734, - [1735] = 1735, - [1736] = 1736, - [1737] = 1737, - [1738] = 1738, - [1739] = 1739, - [1740] = 1740, - [1741] = 1741, - [1742] = 1742, - [1743] = 1743, - [1744] = 1744, - [1745] = 1745, - [1746] = 1721, - [1747] = 1747, - [1748] = 1748, - [1749] = 1749, - [1750] = 1750, - [1751] = 1751, - [1752] = 1752, - [1753] = 1753, - [1754] = 1754, - [1755] = 1733, - [1756] = 1721, - [1757] = 1757, - [1758] = 1758, - [1759] = 1759, - [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1763, - [1764] = 1761, - [1765] = 1765, - [1766] = 1620, - [1767] = 1767, - [1768] = 1768, - [1769] = 1769, - [1770] = 1770, - [1771] = 1724, - [1772] = 1726, - [1773] = 1773, - [1774] = 1731, - [1775] = 1775, - [1776] = 1776, - [1777] = 1775, - [1778] = 1736, - [1779] = 1779, - [1780] = 1780, - [1781] = 1760, - [1782] = 1782, - [1783] = 1758, - [1784] = 1752, - [1785] = 1765, - [1786] = 1786, - [1787] = 1779, - [1788] = 1788, - [1789] = 1763, - [1790] = 1762, - [1791] = 1791, - [1792] = 1719, - [1793] = 1735, - [1794] = 1794, - [1795] = 1795, - [1796] = 1796, - [1797] = 1797, - [1798] = 1798, - [1799] = 1799, - [1800] = 1773, - [1801] = 1801, - [1802] = 1802, - [1803] = 1566, - [1804] = 1753, - [1805] = 1805, - [1806] = 1749, - [1807] = 1807, - [1808] = 1808, - [1809] = 1782, - [1810] = 1723, - [1811] = 1811, - [1812] = 1759, - [1813] = 1736, - [1814] = 1814, - [1815] = 1767, - [1816] = 1748, - [1817] = 1817, - [1818] = 1818, - [1819] = 651, - [1820] = 1750, - [1821] = 1796, - [1822] = 1801, - [1823] = 1802, - [1824] = 1824, - [1825] = 1808, - [1826] = 1826, - [1827] = 1799, - [1828] = 1743, - [1829] = 1798, - [1830] = 1791, - [1831] = 1831, - [1832] = 1818, - [1833] = 1720, - [1834] = 1831, - [1835] = 1835, - [1836] = 1754, - [1837] = 1837, - [1838] = 1818, - [1839] = 1837, - [1840] = 1840, - [1841] = 1841, - [1842] = 1795, - [1843] = 1644, - [1844] = 1844, - [1845] = 1845, - [1846] = 1826, - [1847] = 1847, - [1848] = 1848, - [1849] = 1626, - [1850] = 1797, - [1851] = 1851, - [1852] = 1852, - [1853] = 1853, - [1854] = 1805, - [1855] = 1722, - [1856] = 1729, - [1857] = 1791, - [1858] = 1730, - [1859] = 1859, - [1860] = 1860, - [1861] = 1754, - [1862] = 532, - [1863] = 1863, - [1864] = 1864, - [1865] = 1865, - [1866] = 1866, - [1867] = 1867, - [1868] = 1868, - [1869] = 1869, - [1870] = 1824, - [1871] = 1871, - [1872] = 1871, - [1873] = 1873, - [1874] = 1874, - [1875] = 1678, - [1876] = 1876, - [1877] = 1877, - [1878] = 1878, - [1879] = 1879, - [1880] = 1880, - [1881] = 1878, - [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 1887, - [1888] = 1888, - [1889] = 1889, - [1890] = 1865, - [1891] = 1891, - [1892] = 1892, - [1893] = 1893, - [1894] = 1894, - [1895] = 522, - [1896] = 1896, - [1897] = 1897, - [1898] = 1866, - [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1902, - [1903] = 1903, - [1904] = 1904, - [1905] = 1905, - [1906] = 1906, - [1907] = 1892, - [1908] = 1908, - [1909] = 1893, - [1910] = 1910, - [1911] = 1911, - [1912] = 1912, - [1913] = 1901, - [1914] = 1914, - [1915] = 1915, - [1916] = 1916, - [1917] = 1917, - [1918] = 1918, - [1919] = 1919, - [1920] = 1920, - [1921] = 1921, - [1922] = 1922, - [1923] = 1923, - [1924] = 1924, - [1925] = 1925, - [1926] = 1926, - [1927] = 1927, - [1928] = 1928, - [1929] = 1929, - [1930] = 1930, - [1931] = 515, - [1932] = 1287, - [1933] = 510, - [1934] = 1868, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1938, - [1939] = 467, - [1940] = 482, - [1941] = 548, - [1942] = 549, - [1943] = 457, - [1944] = 546, - [1945] = 538, - [1946] = 534, - [1947] = 530, - [1948] = 1948, - [1949] = 527, - [1950] = 1950, - [1951] = 1646, - [1952] = 1877, - [1953] = 1953, - [1954] = 1954, - [1955] = 519, - [1956] = 1956, - [1957] = 518, - [1958] = 516, - [1959] = 1959, - [1960] = 513, - [1961] = 1961, - [1962] = 1649, - [1963] = 509, - [1964] = 507, - [1965] = 1965, - [1966] = 506, - [1967] = 453, - [1968] = 503, - [1969] = 497, - [1970] = 498, - [1971] = 504, - [1972] = 1972, - [1973] = 508, - [1974] = 512, - [1975] = 1975, - [1976] = 1976, - [1977] = 1977, - [1978] = 1978, - [1979] = 523, - [1980] = 469, - [1981] = 1981, - [1982] = 540, - [1983] = 1886, - [1984] = 1935, - [1985] = 1985, - [1986] = 1986, - [1987] = 541, - [1988] = 526, - [1989] = 1981, - [1990] = 535, - [1991] = 547, - [1992] = 478, - [1993] = 477, - [1994] = 466, - [1995] = 456, - [1996] = 1887, - [1997] = 1986, - [1998] = 1998, - [1999] = 463, - [2000] = 2000, - [2001] = 2001, - [2002] = 481, - [2003] = 2003, - [2004] = 484, - [2005] = 1894, - [2006] = 485, - [2007] = 2007, - [2008] = 487, - [2009] = 2009, - [2010] = 488, - [2011] = 1929, - [2012] = 490, - [2013] = 491, - [2014] = 2014, - [2015] = 492, - [2016] = 2016, - [2017] = 496, - [2018] = 499, - [2019] = 500, - [2020] = 458, - [2021] = 1985, - [2022] = 2022, - [2023] = 1937, - [2024] = 520, - [2025] = 524, - [2026] = 528, - [2027] = 529, - [2028] = 536, - [2029] = 473, - [2030] = 454, - [2031] = 2031, - [2032] = 1866, - [2033] = 511, - [2034] = 2034, - [2035] = 539, - [2036] = 2036, - [2037] = 2037, - [2038] = 2038, - [2039] = 2039, - [2040] = 1972, - [2041] = 1910, - [2042] = 455, - [2043] = 459, - [2044] = 1910, - [2045] = 2045, - [2046] = 2046, - [2047] = 1866, - [2048] = 2048, - [2049] = 461, - [2050] = 2050, - [2051] = 2051, - [2052] = 462, - [2053] = 464, - [2054] = 2054, - [2055] = 465, - [2056] = 468, - [2057] = 542, - [2058] = 470, - [2059] = 471, - [2060] = 1924, - [2061] = 472, - [2062] = 474, - [2063] = 2063, - [2064] = 475, - [2065] = 525, - [2066] = 2066, - [2067] = 2067, - [2068] = 2068, - [2069] = 1910, - [2070] = 2070, - [2071] = 1866, - [2072] = 476, - [2073] = 1866, - [2074] = 543, - [2075] = 544, - [2076] = 545, - [2077] = 533, - [2078] = 1910, - [2079] = 2079, - [2080] = 2080, - [2081] = 479, - [2082] = 2082, - [2083] = 531, - [2084] = 2084, - [2085] = 2085, - [2086] = 537, - [2087] = 1976, - [2088] = 1866, - [2089] = 483, - [2090] = 2090, - [2091] = 1910, - [2092] = 486, - [2093] = 2093, - [2094] = 493, - [2095] = 494, - [2096] = 495, - [2097] = 501, - [2098] = 502, - [2099] = 1866, - [2100] = 514, - [2101] = 1910, - [2102] = 2102, - [2103] = 517, - [2104] = 1910, - [2105] = 452, - [2106] = 2106, - [2107] = 2107, - [2108] = 2108, - [2109] = 2109, - [2110] = 2110, - [2111] = 2111, - [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2118, - [2119] = 2119, - [2120] = 1421, - [2121] = 2121, - [2122] = 2122, - [2123] = 2109, - [2124] = 1936, - [2125] = 2125, - [2126] = 2126, - [2127] = 2127, - [2128] = 2128, - [2129] = 2109, - [2130] = 2130, - [2131] = 2131, - [2132] = 2132, - [2133] = 2133, - [2134] = 2134, - [2135] = 2135, - [2136] = 1617, - [2137] = 2137, - [2138] = 2138, - [2139] = 2139, - [2140] = 2140, - [2141] = 2141, - [2142] = 2142, - [2143] = 2143, - [2144] = 2144, - [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 2148, - [2149] = 2149, - [2150] = 2150, - [2151] = 2151, - [2152] = 2152, - [2153] = 2109, - [2154] = 2154, - [2155] = 2155, - [2156] = 2156, - [2157] = 2157, - [2158] = 2158, - [2159] = 2159, - [2160] = 2160, - [2161] = 2161, - [2162] = 2162, - [2163] = 2163, - [2164] = 2164, - [2165] = 2165, - [2166] = 2166, - [2167] = 2161, - [2168] = 2168, - [2169] = 2169, - [2170] = 2170, - [2171] = 2171, - [2172] = 2172, - [2173] = 2173, - [2174] = 2174, - [2175] = 2175, - [2176] = 2176, - [2177] = 2177, - [2178] = 2137, - [2179] = 2179, - [2180] = 2180, - [2181] = 2181, - [2182] = 2139, - [2183] = 2183, - [2184] = 2142, - [2185] = 2146, - [2186] = 2148, - [2187] = 2187, - [2188] = 2188, - [2189] = 2189, - [2190] = 2141, - [2191] = 2191, - [2192] = 2192, - [2193] = 2142, - [2194] = 2194, - [2195] = 2195, - [2196] = 2196, - [2197] = 2197, - [2198] = 2198, - [2199] = 2199, - [2200] = 2200, - [2201] = 2141, - [2202] = 2142, - [2203] = 2179, - [2204] = 2204, - [2205] = 2205, - [2206] = 2206, - [2207] = 2207, - [2208] = 2208, - [2209] = 2209, - [2210] = 2210, - [2211] = 2211, - [2212] = 2212, - [2213] = 2213, - [2214] = 2214, - [2215] = 2125, - [2216] = 2216, - [2217] = 2217, - [2218] = 2218, - [2219] = 2219, - [2220] = 2220, - [2221] = 2221, - [2222] = 2222, - [2223] = 2223, - [2224] = 2156, - [2225] = 2225, - [2226] = 2226, - [2227] = 2227, - [2228] = 2228, - [2229] = 2229, - [2230] = 2230, - [2231] = 2223, - [2232] = 2138, - [2233] = 2149, - [2234] = 2234, - [2235] = 2155, - [2236] = 2234, - [2237] = 2237, - [2238] = 2238, - [2239] = 2239, - [2240] = 2180, - [2241] = 2160, - [2242] = 2242, - [2243] = 2165, - [2244] = 2122, - [2245] = 2115, - [2246] = 2176, - [2247] = 2183, - [2248] = 2188, - [2249] = 2189, - [2250] = 2219, - [2251] = 2228, - [2252] = 2252, - [2253] = 2195, - [2254] = 2254, - [2255] = 2230, - [2256] = 2161, - [2257] = 1641, - [2258] = 2238, - [2259] = 2252, - [2260] = 2260, - [2261] = 2214, - [2262] = 2262, - [2263] = 2208, - [2264] = 2264, - [2265] = 1953, - [2266] = 2266, - [2267] = 2221, - [2268] = 2268, - [2269] = 2269, - [2270] = 2260, - [2271] = 2271, - [2272] = 2272, - [2273] = 2273, - [2274] = 2109, - [2275] = 2275, - [2276] = 2276, - [2277] = 2269, - [2278] = 2278, - [2279] = 2273, - [2280] = 2242, - [2281] = 2281, - [2282] = 2229, - [2283] = 2227, - [2284] = 2284, - [2285] = 2225, - [2286] = 2286, - [2287] = 2220, - [2288] = 2288, - [2289] = 2109, - [2290] = 2290, - [2291] = 2209, - [2292] = 2181, - [2293] = 2174, - [2294] = 2173, - [2295] = 2295, - [2296] = 2170, - [2297] = 2169, - [2298] = 2298, - [2299] = 2135, - [2300] = 2154, - [2301] = 2301, - [2302] = 2152, - [2303] = 2106, - [2304] = 2116, - [2305] = 2305, - [2306] = 2119, - [2307] = 2126, - [2308] = 2266, - [2309] = 2110, - [2310] = 2310, - [2311] = 2114, - [2312] = 2117, - [2313] = 2127, - [2314] = 2314, - [2315] = 2315, - [2316] = 2271, - [2317] = 2317, - [2318] = 2318, - [2319] = 2319, - [2320] = 2320, - [2321] = 2321, - [2322] = 2164, - [2323] = 2275, - [2324] = 2128, - [2325] = 2325, - [2326] = 2278, - [2327] = 2262, - [2328] = 2328, - [2329] = 2329, - [2330] = 2328, - [2331] = 2331, - [2332] = 2210, - [2333] = 2213, - [2334] = 2216, - [2335] = 2222, - [2336] = 2336, - [2337] = 2337, - [2338] = 2338, - [2339] = 2226, - [2340] = 2340, - [2341] = 2239, - [2342] = 2342, - [2343] = 2187, - [2344] = 2141, - [2345] = 2329, - [2346] = 2346, - [2347] = 2347, - [2348] = 2348, - [2349] = 2349, - [2350] = 2264, - [2351] = 2336, - [2352] = 2211, - [2353] = 2346, - [2354] = 2268, - [2355] = 2290, - [2356] = 2305, - [2357] = 2347, - [2358] = 2358, - [2359] = 2348, - [2360] = 2161, - [2361] = 2218, - [2362] = 2349, - [2363] = 2358, - [2364] = 2364, - [2365] = 2365, - [2366] = 2366, - [2367] = 2367, - [2368] = 2368, - [2369] = 2369, - [2370] = 2367, - [2371] = 2371, - [2372] = 2372, - [2373] = 2373, - [2374] = 2374, - [2375] = 2375, - [2376] = 2376, - [2377] = 2377, - [2378] = 2378, - [2379] = 2379, - [2380] = 2380, - [2381] = 2372, - [2382] = 2365, - [2383] = 2375, - [2384] = 2380, - [2385] = 2385, - [2386] = 2386, - [2387] = 2387, - [2388] = 2388, - [2389] = 2389, - [2390] = 2390, - [2391] = 2387, - [2392] = 2373, - [2393] = 2393, - [2394] = 2394, - [2395] = 2395, - [2396] = 2396, - [2397] = 2397, - [2398] = 2379, - [2399] = 2399, - [2400] = 2400, - [2401] = 2374, - [2402] = 2402, - [2403] = 2394, - [2404] = 2404, - [2405] = 2380, - [2406] = 2406, - [2407] = 2395, - [2408] = 2408, - [2409] = 2409, - [2410] = 2410, - [2411] = 2411, - [2412] = 2412, - [2413] = 2413, - [2414] = 2414, - [2415] = 1975, - [2416] = 2416, - [2417] = 2376, - [2418] = 2418, - [2419] = 2374, - [2420] = 2420, - [2421] = 2421, - [2422] = 2422, - [2423] = 2423, - [2424] = 2424, - [2425] = 2425, - [2426] = 2399, - [2427] = 2420, - [2428] = 2423, - [2429] = 2429, - [2430] = 2430, - [2431] = 2431, - [2432] = 2402, - [2433] = 2385, - [2434] = 2390, - [2435] = 2435, - [2436] = 2436, - [2437] = 2371, - [2438] = 2406, - [2439] = 2439, - [2440] = 2388, - [2441] = 2387, - [2442] = 2386, - [2443] = 2385, - [2444] = 2369, - [2445] = 2380, - [2446] = 2446, - [2447] = 2447, - [2448] = 2448, - [2449] = 2386, - [2450] = 2390, - [2451] = 2365, - [2452] = 2452, - [2453] = 2453, - [2454] = 2454, - [2455] = 2410, - [2456] = 2388, - [2457] = 2397, - [2458] = 2396, - [2459] = 2365, - [2460] = 2460, - [2461] = 2365, - [2462] = 2001, - [2463] = 2463, - [2464] = 2364, - [2465] = 2367, - [2466] = 2466, - [2467] = 2467, - [2468] = 2385, - [2469] = 2469, - [2470] = 2470, - [2471] = 2424, - [2472] = 2425, - [2473] = 2429, - [2474] = 2474, - [2475] = 2446, - [2476] = 2454, - [2477] = 2393, - [2478] = 2478, - [2479] = 2479, - [2480] = 2480, - [2481] = 2452, - [2482] = 2386, - [2483] = 2483, - [2484] = 2484, - [2485] = 2485, - [2486] = 2386, - [2487] = 2487, - [2488] = 2488, - [2489] = 2460, - [2490] = 2436, - [2491] = 2435, - [2492] = 2385, - [2493] = 2422, - [2494] = 2409, - [2495] = 2408, - [2496] = 2367, - [2497] = 2497, - [2498] = 2498, - [2499] = 2485, - [2500] = 2414, - [2501] = 2376, - [2502] = 2416, - [2503] = 2466, - [2504] = 2504, - [2505] = 2505, - [2506] = 2506, - [2507] = 2507, - [2508] = 2369, - [2509] = 2509, - [2510] = 2510, - [2511] = 2371, - [2512] = 2373, - [2513] = 2513, - [2514] = 2374, - [2515] = 2515, - [2516] = 2376, - [2517] = 2386, - [2518] = 2379, - [2519] = 2447, - [2520] = 2386, - [2521] = 2371, - [2522] = 2510, - [2523] = 2523, - [2524] = 2386, - [2525] = 2369, - [2526] = 2387, - [2527] = 2388, - [2528] = 2400, - [2529] = 2484, - [2530] = 2530, - [2531] = 2484, - [2532] = 2532, - [2533] = 2483, - [2534] = 2466, - [2535] = 2535, - [2536] = 2452, - [2537] = 2379, - [2538] = 2510, - [2539] = 2539, - [2540] = 2488, - [2541] = 2541, - [2542] = 2386, - [2543] = 2386, - [2544] = 2544, - [2545] = 2545, - [2546] = 2546, - [2547] = 2547, - [2548] = 2497, - [2549] = 2400, - [2550] = 2550, - [2551] = 2551, - [2552] = 2498, - [2553] = 2379, - [2554] = 2504, - [2555] = 2551, - [2556] = 2550, - [2557] = 2505, - [2558] = 2379, - [2559] = 2404, - [2560] = 2507, - [2561] = 2431, - [2562] = 2366, - [2563] = 2509, - [2564] = 2377, - [2565] = 2386, - [2566] = 2466, - [2567] = 2386, - [2568] = 1421, - [2569] = 2510, - [2570] = 2550, - [2571] = 2571, - [2572] = 2377, - [2573] = 2379, - [2574] = 2550, - [2575] = 2546, - [2576] = 2379, - [2577] = 2377, - [2578] = 2386, - [2579] = 2546, - [2580] = 2580, - [2581] = 2546, - [2582] = 2545, - [2583] = 2390, - [2584] = 2545, - [2585] = 2545, - [2586] = 2586, - [2587] = 2587, -}; - -static inline bool sym_escape_sequence_character_set_1(int32_t c) { - return (c < 'e' - ? (c < '\\' - ? (c < '$' - ? c == '"' - : c <= '$') - : (c <= '\\' || c == '`')) - : (c <= 'f' || (c < 't' - ? (c < 'r' - ? c == 'n' - : c <= 'r') - : (c <= 't' || c == 'v')))); -} - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(73); - if (lookahead == '!') ADVANCE(142); - if (lookahead == '"') ADVANCE(189); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '%') ADVANCE(235); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(195); - if (lookahead == '(') ADVANCE(102); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '*') ADVANCE(230); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(228); - if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(123); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(89); - if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '?') ADVANCE(105); - if (lookahead == '@') ADVANCE(131); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '^') ADVANCE(207); - if (lookahead == '_') ADVANCE(275); - if (lookahead == '`') ADVANCE(196); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '|') ADVANCE(111); - if (lookahead == '}') ADVANCE(98); - if (lookahead == '~') ADVANCE(140); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(263); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(236); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(239); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(240); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(258); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(273); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(266); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(262); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(256); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(68) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(125); - if (('C' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 1: - if (lookahead == '\n') ADVANCE(278); - END_STATE(); - case 2: - if (lookahead == '\n') ADVANCE(278); - if (lookahead == '\r') ADVANCE(1); - if (lookahead != 0 && - lookahead != '>') ADVANCE(279); - END_STATE(); - case 3: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') ADVANCE(192); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '-') ADVANCE(33); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '<') ADVANCE(39); - if (lookahead == '?') ADVANCE(35); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(57); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '\t' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(4) - END_STATE(); - case 4: - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') ADVANCE(192); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '-') ADVANCE(33); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '<') ADVANCE(39); - if (lookahead == '?') ADVANCE(35); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(40); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '\t' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(4) - END_STATE(); - case 5: - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '\r') ADVANCE(193); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '?') ADVANCE(37); - if (lookahead == '\t' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(5) - END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(142); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '(') ADVANCE(102); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '*') ADVANCE(231); - if (lookahead == '+') ADVANCE(133); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(136); - if (lookahead == '.') ADVANCE(228); - if (lookahead == '/') ADVANCE(232); - if (lookahead == '0') ADVANCE(123); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(89); - if (lookahead == '<') ADVANCE(213); - if (lookahead == '=') ADVANCE(32); - if (lookahead == '>') ADVANCE(218); - if (lookahead == '?') ADVANCE(109); - if (lookahead == '@') ADVANCE(131); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '^') ADVANCE(206); - if (lookahead == '_') ADVANCE(275); - if (lookahead == '`') ADVANCE(196); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(98); - if (lookahead == '~') ADVANCE(140); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(263); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(237); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(239); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(241); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(273); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(271); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(262); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(125); - if (('C' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(141); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '(') ADVANCE(102); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '+') ADVANCE(133); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(136); - if (lookahead == '.') ADVANCE(119); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(123); - if (lookahead == '<') ADVANCE(30); - if (lookahead == '?') ADVANCE(37); - if (lookahead == '@') ADVANCE(131); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '_') ADVANCE(275); - if (lookahead == '`') ADVANCE(196); - if (lookahead == '~') ADVANCE(140); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(263); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(237); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(239); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(241); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(273); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(271); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(262); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(125); - if (('C' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(141); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '(') ADVANCE(102); - if (lookahead == '+') ADVANCE(133); - if (lookahead == '-') ADVANCE(136); - if (lookahead == '.') ADVANCE(120); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(123); - if (lookahead == '<') ADVANCE(30); - if (lookahead == '?') ADVANCE(37); - if (lookahead == '@') ADVANCE(131); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == '_') ADVANCE(275); - if (lookahead == '`') ADVANCE(196); - if (lookahead == '~') ADVANCE(140); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(263); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(236); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(239); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(240); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(258); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(273); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(266); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(262); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(256); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(125); - if (('C' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 9: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '"') ADVANCE(189); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(195); - if (lookahead == '(') ADVANCE(102); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '*') ADVANCE(231); - if (lookahead == '+') ADVANCE(132); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(227); - if (lookahead == '/') ADVANCE(232); - if (lookahead == '0') ADVANCE(128); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(89); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(218); - if (lookahead == '?') ADVANCE(107); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '^') ADVANCE(206); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(98); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(130); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 10: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '(') ADVANCE(102); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '*') ADVANCE(231); - if (lookahead == '+') ADVANCE(133); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(227); - if (lookahead == '/') ADVANCE(232); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(89); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '=') ADVANCE(32); - if (lookahead == '>') ADVANCE(218); - if (lookahead == '?') ADVANCE(107); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(57); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '^') ADVANCE(206); - if (lookahead == '`') ADVANCE(196); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(98); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(11) - if (('A' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 11: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '(') ADVANCE(102); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '*') ADVANCE(231); - if (lookahead == '+') ADVANCE(133); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(227); - if (lookahead == '/') ADVANCE(232); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(89); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '=') ADVANCE(32); - if (lookahead == '>') ADVANCE(218); - if (lookahead == '?') ADVANCE(107); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(40); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '^') ADVANCE(206); - if (lookahead == '`') ADVANCE(196); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(98); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(11) - if (('A' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 12: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '(') ADVANCE(102); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '*') ADVANCE(231); - if (lookahead == '+') ADVANCE(132); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(227); - if (lookahead == '/') ADVANCE(232); - if (lookahead == '0') ADVANCE(128); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(89); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(218); - if (lookahead == '?') ADVANCE(107); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '^') ADVANCE(206); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(98); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(130); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 13: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '&') ADVANCE(91); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '*') ADVANCE(231); - if (lookahead == '+') ADVANCE(132); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(227); - if (lookahead == '/') ADVANCE(232); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(89); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '=') ADVANCE(32); - if (lookahead == '>') ADVANCE(218); - if (lookahead == '?') ADVANCE(109); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '^') ADVANCE(206); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(98); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(13) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 14: - if (lookahead == '"') ADVANCE(175); - if (lookahead == '\'') ADVANCE(177); - END_STATE(); - case 15: - if (lookahead == '"') ADVANCE(176); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '(') ADVANCE(102); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '<') ADVANCE(30); - if (lookahead == '?') ADVANCE(37); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(263); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(237); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(271); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(15) - if (('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 16: - if (lookahead == '"') ADVANCE(176); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '(') ADVANCE(102); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(128); - if (lookahead == '<') ADVANCE(30); - if (lookahead == '?') ADVANCE(37); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == '}') ADVANCE(98); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(263); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(237); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(271); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(16) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(130); - if (('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 17: - if (lookahead == '"') ADVANCE(176); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '.') ADVANCE(120); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(123); - if (lookahead == '<') ADVANCE(30); - if (lookahead == '?') ADVANCE(37); - if (lookahead == '_') ADVANCE(60); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(14); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(43); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(53); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(50); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(17) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(125); - END_STATE(); - case 18: - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '&') ADVANCE(90); - if (lookahead == ')') ADVANCE(103); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(18) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 19: - if (lookahead == '#') ADVANCE(280); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '?') ADVANCE(37); - if (lookahead == '}') ADVANCE(98); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(271); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(19) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 20: - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(20) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 21: - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '<') ADVANCE(39); - if (lookahead == '?') ADVANCE(35); - if (lookahead == '\\') ADVANCE(57); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(22) - END_STATE(); - case 22: - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '<') ADVANCE(39); - if (lookahead == '?') ADVANCE(35); - if (lookahead == '\\') ADVANCE(40); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(22) - END_STATE(); - case 23: - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(279); - END_STATE(); - case 24: - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(278); - if (lookahead != 0) ADVANCE(25); - END_STATE(); - case 25: - if (lookahead == '*') ADVANCE(24); - if (lookahead != 0) ADVANCE(25); - END_STATE(); - case 26: - if (lookahead == '.') ADVANCE(28); - END_STATE(); - case 27: - if (lookahead == '.') ADVANCE(120); - if (lookahead == '_') ADVANCE(60); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27); - END_STATE(); - case 28: - if (lookahead == '.') ADVANCE(104); - END_STATE(); - case 29: - if (lookahead == '<') ADVANCE(188); - END_STATE(); - case 30: - if (lookahead == '<') ADVANCE(29); - END_STATE(); - case 31: - if (lookahead == '=') ADVANCE(209); - END_STATE(); - case 32: - if (lookahead == '=') ADVANCE(208); - if (lookahead == '>') ADVANCE(101); - END_STATE(); - case 33: - if (lookahead == '>') ADVANCE(161); - END_STATE(); - case 34: - if (lookahead == '>') ADVANCE(101); - END_STATE(); - case 35: - if (lookahead == '>') ADVANCE(174); - END_STATE(); - case 36: - if (lookahead == '>') ADVANCE(162); - END_STATE(); - case 37: - if (lookahead == '>') ADVANCE(76); - END_STATE(); - case 38: - if (lookahead == '?') ADVANCE(75); - END_STATE(); - case 39: - if (lookahead == '?') ADVANCE(173); - END_STATE(); - case 40: - if (lookahead == 'u') ADVANCE(170); - END_STATE(); - case 41: - if (lookahead == '}') ADVANCE(166); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); - END_STATE(); - case 42: - if (lookahead == '+' || - lookahead == '-') ADVANCE(61); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); - END_STATE(); - case 43: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(46); - END_STATE(); - case 44: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(197); - END_STATE(); - case 45: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(49); - END_STATE(); - case 46: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(51); - END_STATE(); - case 47: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(199); - END_STATE(); - case 48: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(47); - END_STATE(); - case 49: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(74); - END_STATE(); - case 50: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(52); - END_STATE(); - case 51: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(44); - END_STATE(); - case 52: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(44); - END_STATE(); - case 53: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(48); - END_STATE(); - case 54: - if (lookahead == '0' || - lookahead == '1') ADVANCE(126); - END_STATE(); - case 55: - if (lookahead == '8' || - lookahead == '9') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(124); - END_STATE(); - case 56: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(129); - END_STATE(); - case 57: - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(166); - if (lookahead == 'u') ADVANCE(171); - if (lookahead == 'x') ADVANCE(64); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(168); - END_STATE(); - case 58: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(125); - END_STATE(); - case 59: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(120); - END_STATE(); - case 60: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27); - END_STATE(); - case 61: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); - END_STATE(); - case 62: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); - END_STATE(); - case 63: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); - END_STATE(); - case 64: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(169); - END_STATE(); - case 65: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); - END_STATE(); - case 66: - if (lookahead != 0 && - lookahead != '*') ADVANCE(183); - if (lookahead == '*') ADVANCE(182); - END_STATE(); - case 67: - if (lookahead != 0) ADVANCE(186); - END_STATE(); - case 68: - if (eof) ADVANCE(73); - if (lookahead == '!') ADVANCE(142); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '%') ADVANCE(235); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '(') ADVANCE(102); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '*') ADVANCE(230); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(228); - if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(123); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(89); - if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '?') ADVANCE(105); - if (lookahead == '@') ADVANCE(131); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '^') ADVANCE(207); - if (lookahead == '_') ADVANCE(275); - if (lookahead == '`') ADVANCE(196); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '|') ADVANCE(111); - if (lookahead == '}') ADVANCE(98); - if (lookahead == '~') ADVANCE(140); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(263); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(236); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(239); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(240); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(258); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(273); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(266); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(262); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(256); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(68) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(125); - if (('C' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 69: - if (eof) ADVANCE(73); - if (lookahead == '!') ADVANCE(141); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '(') ADVANCE(102); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '+') ADVANCE(133); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(136); - if (lookahead == '.') ADVANCE(120); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(123); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(89); - if (lookahead == '<') ADVANCE(30); - if (lookahead == '?') ADVANCE(37); - if (lookahead == '@') ADVANCE(131); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '_') ADVANCE(275); - if (lookahead == '`') ADVANCE(196); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '}') ADVANCE(98); - if (lookahead == '~') ADVANCE(140); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(263); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(237); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(239); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(241); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(273); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(271); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(262); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(69) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(125); - if (('C' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 70: - if (eof) ADVANCE(73); - if (lookahead == '!') ADVANCE(31); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '%') ADVANCE(235); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == '(') ADVANCE(102); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '*') ADVANCE(230); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(229); - if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(128); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(89); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '?') ADVANCE(106); - if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '^') ADVANCE(207); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '|') ADVANCE(111); - if (lookahead == '}') ADVANCE(98); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(70) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(130); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 71: - if (eof) ADVANCE(73); - if (lookahead == '#') ADVANCE(86); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '<') ADVANCE(78); - if (lookahead == '?') ADVANCE(87); - if (lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(81); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(71) - if (lookahead != 0) ADVANCE(88); - END_STATE(); - case 72: - if (eof) ADVANCE(73); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(201); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '(') ADVANCE(102); - if (lookahead == ')') ADVANCE(103); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '<') ADVANCE(38); - if (lookahead == '=') ADVANCE(34); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '\\') ADVANCE(96); - if (lookahead == ']') ADVANCE(164); - if (lookahead == '{') ADVANCE(97); - if (lookahead == '|') ADVANCE(110); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(271); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(72) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 73: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 74: - ACCEPT_TOKEN(sym_php_tag); - END_STATE(); - case 75: - ACCEPT_TOKEN(sym_php_tag); - if (lookahead == '=') ADVANCE(74); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(45); - END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_QMARK_GT); - END_STATE(); - case 77: - ACCEPT_TOKEN(anon_sym_QMARK_GT); - if (lookahead != 0 && - lookahead != '<') ADVANCE(88); - END_STATE(); - case 78: - ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '?') ADVANCE(75); - END_STATE(); - case 79: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(88); - if (lookahead == '\r') ADVANCE(80); - if (lookahead == '<') ADVANCE(279); - if (lookahead == '>') ADVANCE(88); - if (lookahead != 0) ADVANCE(85); - END_STATE(); - case 80: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(88); - if (lookahead != 0 && - lookahead != '<') ADVANCE(88); - END_STATE(); - case 81: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '#') ADVANCE(86); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '?') ADVANCE(87); - if (lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(81); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(81); - if (lookahead != 0 && - lookahead != '<') ADVANCE(88); - END_STATE(); - case 82: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(84); - if (lookahead == '/') ADVANCE(85); - if (lookahead != 0 && - lookahead != '<') ADVANCE(88); - END_STATE(); - case 83: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(83); - if (lookahead == '/') ADVANCE(88); - if (lookahead == '<') ADVANCE(25); - if (lookahead != 0) ADVANCE(84); - END_STATE(); - case 84: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(83); - if (lookahead == '<') ADVANCE(25); - if (lookahead != 0) ADVANCE(84); - END_STATE(); - case 85: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '<') ADVANCE(279); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(88); - if (lookahead != 0) ADVANCE(85); - END_STATE(); - case 86: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '<') ADVANCE(279); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '?' || - lookahead == '[') ADVANCE(88); - if (lookahead != 0) ADVANCE(85); - END_STATE(); - case 87: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '>') ADVANCE(77); - if (lookahead != 0 && - lookahead != '<') ADVANCE(88); - END_STATE(); - case 88: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead != 0 && - lookahead != '<') ADVANCE(88); - END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 91: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(205); - END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(205); - if (lookahead == '=') ADVANCE(157); - END_STATE(); - case 93: - ACCEPT_TOKEN(aux_sym_function_static_declaration_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 94: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 95: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(208); - if (lookahead == '>') ADVANCE(101); - END_STATE(); - case 96: - ACCEPT_TOKEN(anon_sym_BSLASH); - END_STATE(); - case 97: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 98: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 99: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(145); - END_STATE(); - case 101: - ACCEPT_TOKEN(anon_sym_EQ_GT); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 103: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 104: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - END_STATE(); - case 105: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(36); - if (lookahead == '>') ADVANCE(174); - if (lookahead == '?') ADVANCE(203); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(36); - if (lookahead == '>') ADVANCE(76); - if (lookahead == '?') ADVANCE(203); - END_STATE(); - case 107: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(36); - if (lookahead == '>') ADVANCE(76); - if (lookahead == '?') ADVANCE(202); - END_STATE(); - case 108: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(76); - END_STATE(); - case 109: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(76); - if (lookahead == '?') ADVANCE(202); - END_STATE(); - case 110: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 111: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(159); - if (lookahead == '|') ADVANCE(204); - END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(204); - END_STATE(); - case 113: - ACCEPT_TOKEN(aux_sym_cast_type_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 114: - ACCEPT_TOKEN(aux_sym_cast_type_token3); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 115: - ACCEPT_TOKEN(aux_sym_cast_type_token6); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 116: - ACCEPT_TOKEN(aux_sym_cast_type_token8); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 117: - ACCEPT_TOKEN(aux_sym_cast_type_token11); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 118: - ACCEPT_TOKEN(aux_sym_cast_type_token12); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 119: - ACCEPT_TOKEN(sym_float); - if (lookahead == '.') ADVANCE(28); - if (lookahead == '_') ADVANCE(59); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(120); - END_STATE(); - case 120: - ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(59); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(120); - END_STATE(); - case 121: - ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(276); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 122: - ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(61); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); - END_STATE(); - case 123: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(120); - if (lookahead == '_') ADVANCE(55); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(54); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(129); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(63); - if (lookahead == '8' || - lookahead == '9') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(124); - END_STATE(); - case 124: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(120); - if (lookahead == '_') ADVANCE(55); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); - if (lookahead == '8' || - lookahead == '9') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(124); - END_STATE(); - case 125: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(120); - if (lookahead == '_') ADVANCE(58); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(125); - END_STATE(); - case 126: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(54); - if (lookahead == '0' || - lookahead == '1') ADVANCE(126); - END_STATE(); - case 127: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(63); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); - END_STATE(); - case 128: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(56); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(54); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(129); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(63); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(129); - END_STATE(); - case 129: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(56); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(129); - END_STATE(); - case 130: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(146); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(146); - if (lookahead == '=') ADVANCE(152); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(147); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(147); - if (lookahead == '=') ADVANCE(153); - if (lookahead == '>') ADVANCE(161); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(147); - if (lookahead == '>') ADVANCE(161); - END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(161); - END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 141: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 142: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(209); - END_STATE(); - case 143: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - END_STATE(); - case 144: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(148); - END_STATE(); - case 145: - ACCEPT_TOKEN(anon_sym_COLON_COLON); - END_STATE(); - case 146: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - END_STATE(); - case 148: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); - END_STATE(); - case 149: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - END_STATE(); - case 151: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 153: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_DOT_EQ); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_AMP_EQ); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - END_STATE(); - case 159: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); - END_STATE(); - case 160: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); - END_STATE(); - case 161: - ACCEPT_TOKEN(anon_sym_DASH_GT); - END_STATE(); - case 162: - ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_POUND_LBRACK); - END_STATE(); - case 166: - ACCEPT_TOKEN(sym_escape_sequence); - END_STATE(); - case 167: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(166); - END_STATE(); - case 168: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(167); - END_STATE(); - case 169: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_BSLASHu); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_BSLASHu); - if (lookahead == '{') ADVANCE(65); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_LT_QMARK); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_QMARK_GT2); - END_STATE(); - case 175: - ACCEPT_TOKEN(aux_sym_encapsed_string_token1); - END_STATE(); - case 176: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 177: - ACCEPT_TOKEN(aux_sym_string_token1); - END_STATE(); - case 178: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '\r') ADVANCE(179); - if (lookahead == '>') ADVANCE(186); - if (lookahead == '\\') ADVANCE(282); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(185); - END_STATE(); - case 179: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '\\') ADVANCE(67); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(186); - END_STATE(); - case 180: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '#') ADVANCE(187); - if (lookahead == '/') ADVANCE(181); - if (lookahead == '?') ADVANCE(184); - if (lookahead == '\\') ADVANCE(67); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(180); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(186); - END_STATE(); - case 181: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '\\') ADVANCE(67); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(186); - END_STATE(); - case 182: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '/') ADVANCE(186); - if (lookahead == '\\') ADVANCE(66); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(183); - END_STATE(); - case 183: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '\\') ADVANCE(66); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(183); - END_STATE(); - case 184: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '>') ADVANCE(186); - if (lookahead == '\\') ADVANCE(67); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(186); - END_STATE(); - case 185: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '?') ADVANCE(178); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(186); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(185); - END_STATE(); - case 186: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(67); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(186); - END_STATE(); - case 187: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '?' || - lookahead == '[') ADVANCE(186); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(185); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_DQUOTE2); - END_STATE(); - case 190: - ACCEPT_TOKEN(aux_sym__new_line_token1); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') ADVANCE(192); - if (lookahead == '?') ADVANCE(35); - END_STATE(); - case 191: - ACCEPT_TOKEN(aux_sym__new_line_token1); - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '\r') ADVANCE(193); - END_STATE(); - case 192: - ACCEPT_TOKEN(aux_sym__new_line_token2); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') ADVANCE(192); - if (lookahead == '?') ADVANCE(35); - END_STATE(); - case 193: - ACCEPT_TOKEN(aux_sym__new_line_token2); - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '\r') ADVANCE(193); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_); - END_STATE(); - case 195: - ACCEPT_TOKEN(anon_sym_SQUOTE2); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_BQUOTE); - END_STATE(); - case 197: - ACCEPT_TOKEN(sym_boolean); - END_STATE(); - case 198: - ACCEPT_TOKEN(sym_boolean); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 199: - ACCEPT_TOKEN(sym_null); - END_STATE(); - case 200: - ACCEPT_TOKEN(sym_null); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(160); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 207: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(158); - END_STATE(); - case 208: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(211); - END_STATE(); - case 209: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(212); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym_LT_GT); - END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); - END_STATE(); - case 212: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); - END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(223); - if (lookahead == '=') ADVANCE(219); - if (lookahead == '>') ADVANCE(210); - END_STATE(); - case 214: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(224); - if (lookahead == '=') ADVANCE(219); - if (lookahead == '>') ADVANCE(210); - END_STATE(); - case 215: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(222); - if (lookahead == '=') ADVANCE(219); - if (lookahead == '>') ADVANCE(210); - END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '?') ADVANCE(75); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(226); - END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(225); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(221); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 221: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_LT_LT); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(188); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(155); - END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(156); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 228: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(28); - if (lookahead == '_') ADVANCE(59); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(120); - END_STATE(); - case 229: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(154); - END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(144); - if (lookahead == '=') ADVANCE(149); - END_STATE(); - case 231: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(143); - END_STATE(); - case 232: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(279); - END_STATE(); - case 233: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(279); - if (lookahead == '=') ADVANCE(150); - END_STATE(); - case 234: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 235: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(151); - END_STATE(); - case 236: - ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(175); - if (lookahead == '\'') ADVANCE(177); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(260); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 237: - ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(175); - if (lookahead == '\'') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 238: - ACCEPT_TOKEN(sym_name); - if (lookahead == '.') ADVANCE(120); - if (lookahead == '_') ADVANCE(275); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 239: - ACCEPT_TOKEN(sym_name); - if (lookahead == '+' || - lookahead == '-') ADVANCE(61); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 240: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(255); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(259); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 241: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(255); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 242: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(274); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 243: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(270); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(251); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 244: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 245: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(268); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 246: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(93); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 247: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(198); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 248: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 249: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(117); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 250: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 251: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(257); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 252: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(114); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 253: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(200); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 254: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(253); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 255: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(264); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 256: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(265); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 257: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(249); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 258: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(267); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 259: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(245); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 260: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(252); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 261: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(242); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 262: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(272); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 263: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(261); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 264: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(247); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 265: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(248); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 266: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(243); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 267: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(115); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 268: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(116); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 269: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 270: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 271: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 272: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(247); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 273: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(254); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 274: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(113); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 275: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 276: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 277: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(277); - END_STATE(); - case 278: - ACCEPT_TOKEN(sym_comment); - END_STATE(); - case 279: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '?') ADVANCE(2); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(279); - END_STATE(); - case 280: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '[') ADVANCE(165); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '?') ADVANCE(279); - END_STATE(); - case 281: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '?' && - lookahead != '[') ADVANCE(279); - END_STATE(); - case 282: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '?') ADVANCE(185); - if (lookahead == '?') ADVANCE(178); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(186); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == 'A') ADVANCE(1); - if (lookahead == 'B') ADVANCE(2); - if (lookahead == 'E') ADVANCE(3); - if (lookahead == 'F') ADVANCE(4); - if (lookahead == 'I') ADVANCE(5); - if (lookahead == 'M') ADVANCE(6); - if (lookahead == 'N') ADVANCE(7); - if (lookahead == 'P') ADVANCE(8); - if (lookahead == 'S') ADVANCE(9); - if (lookahead == 'T') ADVANCE(10); - if (lookahead == 'U') ADVANCE(11); - if (lookahead == 'V') ADVANCE(12); - if (lookahead == 'a') ADVANCE(13); - if (lookahead == 'b') ADVANCE(14); - if (lookahead == 'e') ADVANCE(15); - if (lookahead == 'f') ADVANCE(16); - if (lookahead == 'i') ADVANCE(17); - if (lookahead == 'm') ADVANCE(18); - if (lookahead == 'n') ADVANCE(19); - if (lookahead == 'p') ADVANCE(20); - if (lookahead == 's') ADVANCE(21); - if (lookahead == 't') ADVANCE(22); - if (lookahead == 'u') ADVANCE(23); - if (lookahead == 'v') ADVANCE(24); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(25); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(26); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(27); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(28); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(29); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(30); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(31); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(32); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(33); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(0) - END_STATE(); - case 1: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(34); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(35); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(36); - END_STATE(); - case 2: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(37); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(38); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(39); - END_STATE(); - case 3: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(40); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(41); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(42); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(43); - END_STATE(); - case 4: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(44); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(45); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(46); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(47); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(48); - END_STATE(); - case 5: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(49); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(50); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(51); - END_STATE(); - case 6: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(52); - END_STATE(); - case 7: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(53); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(54); - END_STATE(); - case 8: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(55); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(56); - END_STATE(); - case 9: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(57); - END_STATE(); - case 10: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(58); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(59); - END_STATE(); - case 11: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(60); - END_STATE(); - case 12: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(61); - END_STATE(); - case 13: - if (lookahead == 'r') ADVANCE(62); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(34); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(35); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(36); - END_STATE(); - case 14: - if (lookahead == 'O') ADVANCE(38); - if (lookahead == 'o') ADVANCE(63); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(37); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(39); - END_STATE(); - case 15: - if (lookahead == 'N') ADVANCE(42); - if (lookahead == 'n') ADVANCE(64); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(40); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(41); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(43); - END_STATE(); - case 16: - if (lookahead == 'a') ADVANCE(65); - if (lookahead == 'l') ADVANCE(66); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(44); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(45); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(46); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(47); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(48); - END_STATE(); - case 17: - if (lookahead == 'N') ADVANCE(51); - if (lookahead == 'n') ADVANCE(67); - if (lookahead == 't') ADVANCE(68); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(49); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(50); - END_STATE(); - case 18: - if (lookahead == 'i') ADVANCE(69); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(52); - END_STATE(); - case 19: - if (lookahead == 'E') ADVANCE(54); - if (lookahead == 'e') ADVANCE(70); - if (lookahead == 'u') ADVANCE(71); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(53); - END_STATE(); - case 20: - if (lookahead == 'a') ADVANCE(72); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(55); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(56); - END_STATE(); - case 21: - if (lookahead == 'e') ADVANCE(73); - if (lookahead == 't') ADVANCE(74); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(57); - END_STATE(); - case 22: - if (lookahead == 'R') ADVANCE(59); - if (lookahead == 'i') ADVANCE(75); - if (lookahead == 'r') ADVANCE(76); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(58); - END_STATE(); - case 23: - if (lookahead == 'n') ADVANCE(77); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(60); - END_STATE(); - case 24: - if (lookahead == 'o') ADVANCE(78); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(61); - END_STATE(); - case 25: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(79); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(80); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(81); - END_STATE(); - case 26: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(82); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(83); - END_STATE(); - case 27: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(84); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(85); - END_STATE(); - case 28: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(86); - END_STATE(); - case 29: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(87); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(88); - END_STATE(); - case 30: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(89); - END_STATE(); - case 31: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(90); - END_STATE(); - case 32: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(91); - END_STATE(); - case 33: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(92); - END_STATE(); - case 34: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(93); - END_STATE(); - case 35: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(94); - END_STATE(); - case 36: - ACCEPT_TOKEN(aux_sym_namespace_aliasing_clause_token1); - END_STATE(); - case 37: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(95); - END_STATE(); - case 38: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(96); - END_STATE(); - case 39: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(97); - END_STATE(); - case 40: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(98); - END_STATE(); - case 41: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(99); - END_STATE(); - case 42: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(100); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(101); - END_STATE(); - case 43: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(102); - END_STATE(); - case 44: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(103); - END_STATE(); - case 45: - ACCEPT_TOKEN(aux_sym__arrow_function_header_token1); - END_STATE(); - case 46: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(104); - END_STATE(); - case 47: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(105); - END_STATE(); - case 48: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(106); - END_STATE(); - case 49: - ACCEPT_TOKEN(aux_sym_if_statement_token1); - END_STATE(); - case 50: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(107); - END_STATE(); - case 51: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(108); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(109); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(110); - END_STATE(); - case 52: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(111); - END_STATE(); - case 53: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(112); - END_STATE(); - case 54: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(113); - END_STATE(); - case 55: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(114); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(115); - END_STATE(); - case 56: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(116); - END_STATE(); - case 57: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(117); - END_STATE(); - case 58: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(118); - END_STATE(); - case 59: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(119); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(120); - END_STATE(); - case 60: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(121); - END_STATE(); - case 61: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(122); - END_STATE(); - case 62: - if (lookahead == 'r') ADVANCE(123); - END_STATE(); - case 63: - if (lookahead == 'O') ADVANCE(96); - if (lookahead == 'o') ADVANCE(124); - END_STATE(); - case 64: - if (lookahead == 'c') ADVANCE(125); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(100); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(101); - END_STATE(); - case 65: - if (lookahead == 'l') ADVANCE(126); - END_STATE(); - case 66: - if (lookahead == 'o') ADVANCE(127); - END_STATE(); - case 67: - if (lookahead == 'T') ADVANCE(110); - if (lookahead == 't') ADVANCE(128); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(108); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(109); - END_STATE(); - case 68: - if (lookahead == 'e') ADVANCE(129); - END_STATE(); - case 69: - if (lookahead == 'x') ADVANCE(130); - END_STATE(); - case 70: - if (lookahead == 'v') ADVANCE(131); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(113); - END_STATE(); - case 71: - if (lookahead == 'l') ADVANCE(132); - END_STATE(); - case 72: - if (lookahead == 'r') ADVANCE(133); - END_STATE(); - case 73: - if (lookahead == 'l') ADVANCE(134); - END_STATE(); - case 74: - if (lookahead == 'a') ADVANCE(135); - if (lookahead == 'r') ADVANCE(136); - END_STATE(); - case 75: - if (lookahead == 'c') ADVANCE(137); - END_STATE(); - case 76: - if (lookahead == 'u') ADVANCE(138); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(119); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(120); - END_STATE(); - case 77: - if (lookahead == 's') ADVANCE(139); - END_STATE(); - case 78: - if (lookahead == 'i') ADVANCE(140); - END_STATE(); - case 79: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(141); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(142); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(143); - END_STATE(); - case 80: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(144); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(145); - END_STATE(); - case 81: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(146); - END_STATE(); - case 82: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(147); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(148); - END_STATE(); - case 83: - ACCEPT_TOKEN(aux_sym_do_statement_token1); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(149); - END_STATE(); - case 84: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(150); - END_STATE(); - case 85: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(151); - END_STATE(); - case 86: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(152); - END_STATE(); - case 87: - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(153); - END_STATE(); - case 88: - ACCEPT_TOKEN(aux_sym_binary_expression_token3); - END_STATE(); - case 89: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(154); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(155); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(156); - END_STATE(); - case 90: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(157); - END_STATE(); - case 91: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(158); - END_STATE(); - case 92: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(159); - END_STATE(); - case 93: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(160); - END_STATE(); - case 94: - ACCEPT_TOKEN(aux_sym_binary_expression_token2); - END_STATE(); - case 95: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(161); - END_STATE(); - case 96: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(162); - END_STATE(); - case 97: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(163); - END_STATE(); - case 98: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(164); - END_STATE(); - case 99: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(165); - END_STATE(); - case 100: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(166); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(167); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(168); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(169); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(170); - END_STATE(); - case 101: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(171); - END_STATE(); - case 102: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(172); - END_STATE(); - case 103: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(173); - END_STATE(); - case 104: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(174); - END_STATE(); - case 105: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(175); - END_STATE(); - case 106: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(176); - END_STATE(); - case 107: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(177); - END_STATE(); - case 108: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(178); - END_STATE(); - case 109: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(179); - END_STATE(); - case 110: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(180); - END_STATE(); - case 111: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(181); - END_STATE(); - case 112: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(182); - END_STATE(); - case 113: - ACCEPT_TOKEN(aux_sym_object_creation_expression_token1); - END_STATE(); - case 114: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(183); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(184); - END_STATE(); - case 115: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(185); - END_STATE(); - case 116: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(186); - END_STATE(); - case 117: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(187); - END_STATE(); - case 118: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(188); - END_STATE(); - case 119: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(189); - END_STATE(); - case 120: - ACCEPT_TOKEN(aux_sym_try_statement_token1); - END_STATE(); - case 121: - ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token1); - END_STATE(); - case 122: - ACCEPT_TOKEN(sym_var_modifier); - END_STATE(); - case 123: - if (lookahead == 'a') ADVANCE(190); - END_STATE(); - case 124: - if (lookahead == 'L') ADVANCE(162); - if (lookahead == 'l') ADVANCE(191); - END_STATE(); - case 125: - if (lookahead == 'o') ADVANCE(192); - END_STATE(); - case 126: - if (lookahead == 's') ADVANCE(193); - END_STATE(); - case 127: - if (lookahead == 'a') ADVANCE(194); - END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_int); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(180); - END_STATE(); - case 129: - if (lookahead == 'r') ADVANCE(195); - END_STATE(); - case 130: - if (lookahead == 'e') ADVANCE(196); - END_STATE(); - case 131: - if (lookahead == 'e') ADVANCE(197); - END_STATE(); - case 132: - if (lookahead == 'l') ADVANCE(198); - END_STATE(); - case 133: - if (lookahead == 'e') ADVANCE(199); - END_STATE(); - case 134: - if (lookahead == 'f') ADVANCE(200); - END_STATE(); - case 135: - if (lookahead == 't') ADVANCE(201); - END_STATE(); - case 136: - if (lookahead == 'i') ADVANCE(202); - END_STATE(); - case 137: - if (lookahead == 'k') ADVANCE(203); - END_STATE(); - case 138: - if (lookahead == 'e') ADVANCE(204); - END_STATE(); - case 139: - if (lookahead == 'e') ADVANCE(205); - END_STATE(); - case 140: - if (lookahead == 'd') ADVANCE(206); - END_STATE(); - case 141: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(207); - END_STATE(); - case 142: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(208); - END_STATE(); - case 143: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(209); - END_STATE(); - case 144: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(210); - END_STATE(); - case 145: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(211); - END_STATE(); - case 146: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(212); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(213); - END_STATE(); - case 147: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(214); - END_STATE(); - case 148: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(215); - END_STATE(); - case 149: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(216); - END_STATE(); - case 150: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(217); - END_STATE(); - case 151: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(218); - END_STATE(); - case 152: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(219); - END_STATE(); - case 153: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(220); - END_STATE(); - case 154: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(221); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(222); - END_STATE(); - case 155: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(223); - END_STATE(); - case 156: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(224); - END_STATE(); - case 157: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(225); - END_STATE(); - case 158: - ACCEPT_TOKEN(aux_sym_binary_expression_token4); - END_STATE(); - case 159: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(226); - END_STATE(); - case 160: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(227); - END_STATE(); - case 161: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(228); - END_STATE(); - case 162: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(229); - END_STATE(); - case 163: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(230); - END_STATE(); - case 164: - ACCEPT_TOKEN(aux_sym_echo_statement_token1); - END_STATE(); - case 165: - ACCEPT_TOKEN(aux_sym_else_clause_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(231); - END_STATE(); - case 166: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); - END_STATE(); - case 167: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(233); - END_STATE(); - case 168: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(234); - END_STATE(); - case 169: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(235); - END_STATE(); - case 170: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(236); - END_STATE(); - case 171: - ACCEPT_TOKEN(aux_sym_enum_declaration_token1); - END_STATE(); - case 172: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(237); - END_STATE(); - case 173: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(238); - END_STATE(); - case 174: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(239); - END_STATE(); - case 175: - ACCEPT_TOKEN(aux_sym_yield_expression_token2); - END_STATE(); - case 176: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(240); - END_STATE(); - case 177: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(241); - END_STATE(); - case 178: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(242); - END_STATE(); - case 179: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(243); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(244); - END_STATE(); - case 180: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(245); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(246); - END_STATE(); - case 181: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(247); - END_STATE(); - case 182: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(248); - END_STATE(); - case 183: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(249); - END_STATE(); - case 184: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(250); - END_STATE(); - case 185: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(251); - END_STATE(); - case 186: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(252); - END_STATE(); - case 187: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(253); - END_STATE(); - case 188: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(254); - END_STATE(); - case 189: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(255); - END_STATE(); - case 190: - if (lookahead == 'y') ADVANCE(256); - END_STATE(); - case 191: - ACCEPT_TOKEN(anon_sym_bool); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(229); - END_STATE(); - case 192: - if (lookahead == 'd') ADVANCE(257); - END_STATE(); - case 193: - if (lookahead == 'e') ADVANCE(258); - END_STATE(); - case 194: - if (lookahead == 't') ADVANCE(259); - END_STATE(); - case 195: - if (lookahead == 'a') ADVANCE(260); - END_STATE(); - case 196: - if (lookahead == 'd') ADVANCE(261); - END_STATE(); - case 197: - if (lookahead == 'r') ADVANCE(262); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_null); - END_STATE(); - case 199: - if (lookahead == 'n') ADVANCE(263); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_self); - END_STATE(); - case 201: - if (lookahead == 'i') ADVANCE(264); - END_STATE(); - case 202: - if (lookahead == 'c') ADVANCE(265); - if (lookahead == 'n') ADVANCE(266); - END_STATE(); - case 203: - if (lookahead == 's') ADVANCE(267); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_true); - END_STATE(); - case 205: - if (lookahead == 't') ADVANCE(268); - END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_void); - END_STATE(); - case 207: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(269); - END_STATE(); - case 208: - ACCEPT_TOKEN(aux_sym_enum_case_token1); - END_STATE(); - case 209: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(270); - END_STATE(); - case 210: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(271); - END_STATE(); - case 211: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(272); - END_STATE(); - case 212: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(273); - END_STATE(); - case 213: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(274); - END_STATE(); - case 214: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(275); - END_STATE(); - case 215: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(276); - END_STATE(); - case 216: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(277); - END_STATE(); - case 217: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(278); - END_STATE(); - case 218: - ACCEPT_TOKEN(aux_sym_goto_statement_token1); - END_STATE(); - case 219: - ACCEPT_TOKEN(aux_sym__list_destructing_token1); - END_STATE(); - case 220: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(279); - END_STATE(); - case 221: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(280); - END_STATE(); - case 222: - ACCEPT_TOKEN(aux_sym_cast_type_token10); - END_STATE(); - case 223: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(281); - END_STATE(); - case 224: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(282); - END_STATE(); - case 225: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(283); - END_STATE(); - case 226: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(284); - END_STATE(); - case 227: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(285); - END_STATE(); - case 228: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(286); - END_STATE(); - case 229: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(287); - END_STATE(); - case 230: - ACCEPT_TOKEN(aux_sym_break_statement_token1); - END_STATE(); - case 231: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(288); - END_STATE(); - case 232: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(289); - END_STATE(); - case 233: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(290); - END_STATE(); - case 234: - ACCEPT_TOKEN(aux_sym_if_statement_token2); - END_STATE(); - case 235: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(291); - END_STATE(); - case 236: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(292); - END_STATE(); - case 237: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(293); - END_STATE(); - case 238: - ACCEPT_TOKEN(aux_sym_final_modifier_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(294); - END_STATE(); - case 239: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(295); - END_STATE(); - case 240: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(296); - END_STATE(); - case 241: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(297); - END_STATE(); - case 242: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(298); - END_STATE(); - case 243: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(299); - END_STATE(); - case 244: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(300); - END_STATE(); - case 245: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(301); - END_STATE(); - case 246: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(302); - END_STATE(); - case 247: - ACCEPT_TOKEN(aux_sym_match_expression_token1); - END_STATE(); - case 248: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(303); - END_STATE(); - case 249: - ACCEPT_TOKEN(aux_sym_print_intrinsic_token1); - END_STATE(); - case 250: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(304); - END_STATE(); - case 251: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(305); - END_STATE(); - case 252: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(306); - END_STATE(); - case 253: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(307); - END_STATE(); - case 254: - ACCEPT_TOKEN(aux_sym_throw_expression_token1); - END_STATE(); - case 255: - ACCEPT_TOKEN(aux_sym_trait_declaration_token1); - END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_array); - END_STATE(); - case 257: - if (lookahead == 'i') ADVANCE(308); - END_STATE(); - case 258: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 259: - ACCEPT_TOKEN(anon_sym_float); - END_STATE(); - case 260: - if (lookahead == 'b') ADVANCE(309); - END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_mixed); - END_STATE(); - case 262: - ACCEPT_TOKEN(sym_bottom_type); - END_STATE(); - case 263: - if (lookahead == 't') ADVANCE(310); - END_STATE(); - case 264: - if (lookahead == 'c') ADVANCE(311); - END_STATE(); - case 265: - if (lookahead == 't') ADVANCE(312); - END_STATE(); - case 266: - if (lookahead == 'g') ADVANCE(313); - END_STATE(); - case 267: - ACCEPT_TOKEN(anon_sym_ticks); - END_STATE(); - case 268: - ACCEPT_TOKEN(anon_sym_unset); - END_STATE(); - case 269: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(314); - END_STATE(); - case 270: - ACCEPT_TOKEN(aux_sym_catch_clause_token1); - END_STATE(); - case 271: - ACCEPT_TOKEN(aux_sym_class_declaration_token1); - END_STATE(); - case 272: - ACCEPT_TOKEN(aux_sym_clone_expression_token1); - END_STATE(); - case 273: - ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token3); - END_STATE(); - case 274: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(315); - END_STATE(); - case 275: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(316); - END_STATE(); - case 276: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(317); - END_STATE(); - case 277: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(318); - END_STATE(); - case 278: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(319); - END_STATE(); - case 279: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(320); - END_STATE(); - case 280: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(321); - END_STATE(); - case 281: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(322); - END_STATE(); - case 282: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(323); - END_STATE(); - case 283: - ACCEPT_TOKEN(aux_sym_while_statement_token1); - END_STATE(); - case 284: - ACCEPT_TOKEN(aux_sym_yield_expression_token1); - END_STATE(); - case 285: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(324); - END_STATE(); - case 286: - ACCEPT_TOKEN(aux_sym_cast_type_token2); - END_STATE(); - case 287: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(325); - END_STATE(); - case 288: - ACCEPT_TOKEN(aux_sym_else_if_clause_token1); - END_STATE(); - case 289: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(326); - END_STATE(); - case 290: - ACCEPT_TOKEN(aux_sym_for_statement_token2); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(327); - END_STATE(); - case 291: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(328); - END_STATE(); - case 292: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(329); - END_STATE(); - case 293: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(330); - END_STATE(); - case 294: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(331); - END_STATE(); - case 295: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(332); - END_STATE(); - case 296: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(333); - END_STATE(); - case 297: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(334); - END_STATE(); - case 298: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(335); - END_STATE(); - case 299: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(336); - END_STATE(); - case 300: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(337); - END_STATE(); - case 301: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(338); - END_STATE(); - case 302: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(339); - END_STATE(); - case 303: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(340); - END_STATE(); - case 304: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(341); - END_STATE(); - case 305: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(342); - END_STATE(); - case 306: - ACCEPT_TOKEN(aux_sym_visibility_modifier_token1); - END_STATE(); - case 307: - ACCEPT_TOKEN(aux_sym_switch_statement_token1); - END_STATE(); - case 308: - if (lookahead == 'n') ADVANCE(343); - END_STATE(); - case 309: - if (lookahead == 'l') ADVANCE(344); - END_STATE(); - case 310: - ACCEPT_TOKEN(anon_sym_parent); - END_STATE(); - case 311: - ACCEPT_TOKEN(anon_sym_static); - END_STATE(); - case 312: - if (lookahead == '_') ADVANCE(345); - END_STATE(); - case 313: - ACCEPT_TOKEN(anon_sym_string); - END_STATE(); - case 314: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(346); - END_STATE(); - case 315: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(347); - END_STATE(); - case 316: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(348); - END_STATE(); - case 317: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(349); - END_STATE(); - case 318: - ACCEPT_TOKEN(aux_sym_cast_type_token5); - END_STATE(); - case 319: - ACCEPT_TOKEN(aux_sym_global_declaration_token1); - END_STATE(); - case 320: - ACCEPT_TOKEN(aux_sym_cast_type_token9); - END_STATE(); - case 321: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(350); - END_STATE(); - case 322: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(351); - END_STATE(); - case 323: - ACCEPT_TOKEN(aux_sym_return_statement_token1); - END_STATE(); - case 324: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(352); - END_STATE(); - case 325: - ACCEPT_TOKEN(aux_sym_cast_type_token4); - END_STATE(); - case 326: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(353); - END_STATE(); - case 327: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(354); - END_STATE(); - case 328: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(355); - END_STATE(); - case 329: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(356); - END_STATE(); - case 330: - ACCEPT_TOKEN(aux_sym_base_clause_token1); - END_STATE(); - case 331: - ACCEPT_TOKEN(aux_sym_finally_clause_token1); - END_STATE(); - case 332: - ACCEPT_TOKEN(aux_sym_foreach_statement_token1); - END_STATE(); - case 333: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(357); - END_STATE(); - case 334: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(358); - END_STATE(); - case 335: - ACCEPT_TOKEN(aux_sym_include_expression_token1); - if (lookahead == '_') ADVANCE(359); - END_STATE(); - case 336: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(360); - END_STATE(); - case 337: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(361); - END_STATE(); - case 338: - ACCEPT_TOKEN(aux_sym_cast_type_token7); - END_STATE(); - case 339: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(362); - END_STATE(); - case 340: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(363); - END_STATE(); - case 341: - ACCEPT_TOKEN(aux_sym_visibility_modifier_token3); - END_STATE(); - case 342: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(364); - END_STATE(); - case 343: - if (lookahead == 'g') ADVANCE(365); - END_STATE(); - case 344: - if (lookahead == 'e') ADVANCE(366); - END_STATE(); - case 345: - if (lookahead == 't') ADVANCE(367); - END_STATE(); - case 346: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(368); - END_STATE(); - case 347: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(369); - END_STATE(); - case 348: - ACCEPT_TOKEN(aux_sym_declare_statement_token1); - END_STATE(); - case 349: - ACCEPT_TOKEN(aux_sym_match_default_expression_token1); - END_STATE(); - case 350: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(370); - END_STATE(); - case 351: - ACCEPT_TOKEN(aux_sym_require_expression_token1); - if (lookahead == '_') ADVANCE(371); - END_STATE(); - case 352: - ACCEPT_TOKEN(aux_sym_abstract_modifier_token1); - END_STATE(); - case 353: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(372); - END_STATE(); - case 354: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(373); - END_STATE(); - case 355: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(374); - END_STATE(); - case 356: - ACCEPT_TOKEN(aux_sym_while_statement_token2); - END_STATE(); - case 357: - ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token2); - END_STATE(); - case 358: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(375); - END_STATE(); - case 359: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(376); - END_STATE(); - case 360: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(377); - END_STATE(); - case 361: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(378); - END_STATE(); - case 362: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(379); - END_STATE(); - case 363: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(380); - END_STATE(); - case 364: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(381); - END_STATE(); - case 365: - ACCEPT_TOKEN(anon_sym_encoding); - END_STATE(); - case 366: - ACCEPT_TOKEN(anon_sym_iterable); - END_STATE(); - case 367: - if (lookahead == 'y') ADVANCE(382); - END_STATE(); - case 368: - ACCEPT_TOKEN(aux_sym_primitive_type_token1); - END_STATE(); - case 369: - ACCEPT_TOKEN(aux_sym_continue_statement_token1); - END_STATE(); - case 370: - ACCEPT_TOKEN(aux_sym_readonly_modifier_token1); - END_STATE(); - case 371: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(383); - END_STATE(); - case 372: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(384); - END_STATE(); - case 373: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(385); - END_STATE(); - case 374: - ACCEPT_TOKEN(aux_sym_switch_block_token1); - END_STATE(); - case 375: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(386); - END_STATE(); - case 376: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(387); - END_STATE(); - case 377: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(388); - END_STATE(); - case 378: - ACCEPT_TOKEN(aux_sym_use_instead_of_clause_token1); - END_STATE(); - case 379: - ACCEPT_TOKEN(aux_sym_interface_declaration_token1); - END_STATE(); - case 380: - ACCEPT_TOKEN(aux_sym_namespace_definition_token1); - END_STATE(); - case 381: - ACCEPT_TOKEN(aux_sym_visibility_modifier_token2); - END_STATE(); - case 382: - if (lookahead == 'p') ADVANCE(389); - END_STATE(); - case 383: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(390); - END_STATE(); - case 384: - ACCEPT_TOKEN(aux_sym_declare_statement_token2); - END_STATE(); - case 385: - ACCEPT_TOKEN(aux_sym_foreach_statement_token2); - END_STATE(); - case 386: - ACCEPT_TOKEN(aux_sym_class_interface_clause_token1); - END_STATE(); - case 387: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(391); - END_STATE(); - case 388: - ACCEPT_TOKEN(aux_sym_binary_expression_token1); - END_STATE(); - case 389: - if (lookahead == 'e') ADVANCE(392); - END_STATE(); - case 390: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(393); - END_STATE(); - case 391: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(394); - END_STATE(); - case 392: - if (lookahead == 's') ADVANCE(395); - END_STATE(); - case 393: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(396); - END_STATE(); - case 394: - ACCEPT_TOKEN(aux_sym_include_once_expression_token1); - END_STATE(); - case 395: - ACCEPT_TOKEN(anon_sym_strict_types); - END_STATE(); - case 396: - ACCEPT_TOKEN(aux_sym_require_once_expression_token1); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 71}, - [2] = {.lex_state = 69}, - [3] = {.lex_state = 69}, - [4] = {.lex_state = 69}, - [5] = {.lex_state = 69}, - [6] = {.lex_state = 69}, - [7] = {.lex_state = 69}, - [8] = {.lex_state = 69}, - [9] = {.lex_state = 69}, - [10] = {.lex_state = 69}, - [11] = {.lex_state = 69}, - [12] = {.lex_state = 69, .external_lex_state = 2}, - [13] = {.lex_state = 69, .external_lex_state = 2}, - [14] = {.lex_state = 69, .external_lex_state = 2}, - [15] = {.lex_state = 69, .external_lex_state = 2}, - [16] = {.lex_state = 69}, - [17] = {.lex_state = 69, .external_lex_state = 2}, - [18] = {.lex_state = 69}, - [19] = {.lex_state = 69}, - [20] = {.lex_state = 69}, - [21] = {.lex_state = 69}, - [22] = {.lex_state = 69}, - [23] = {.lex_state = 69}, - [24] = {.lex_state = 69}, - [25] = {.lex_state = 69, .external_lex_state = 2}, - [26] = {.lex_state = 69}, - [27] = {.lex_state = 69, .external_lex_state = 2}, - [28] = {.lex_state = 69, .external_lex_state = 2}, - [29] = {.lex_state = 69}, - [30] = {.lex_state = 69}, - [31] = {.lex_state = 69}, - [32] = {.lex_state = 69}, - [33] = {.lex_state = 69}, - [34] = {.lex_state = 69, .external_lex_state = 2}, - [35] = {.lex_state = 69}, - [36] = {.lex_state = 69, .external_lex_state = 2}, - [37] = {.lex_state = 69}, - [38] = {.lex_state = 69, .external_lex_state = 2}, - [39] = {.lex_state = 69}, - [40] = {.lex_state = 69}, - [41] = {.lex_state = 69}, - [42] = {.lex_state = 69}, - [43] = {.lex_state = 69}, - [44] = {.lex_state = 69, .external_lex_state = 2}, - [45] = {.lex_state = 69, .external_lex_state = 2}, - [46] = {.lex_state = 69}, - [47] = {.lex_state = 69, .external_lex_state = 2}, - [48] = {.lex_state = 69, .external_lex_state = 2}, - [49] = {.lex_state = 69}, - [50] = {.lex_state = 69}, - [51] = {.lex_state = 69, .external_lex_state = 2}, - [52] = {.lex_state = 69, .external_lex_state = 2}, - [53] = {.lex_state = 69}, - [54] = {.lex_state = 69}, - [55] = {.lex_state = 69, .external_lex_state = 2}, - [56] = {.lex_state = 69}, - [57] = {.lex_state = 69, .external_lex_state = 2}, - [58] = {.lex_state = 69, .external_lex_state = 2}, - [59] = {.lex_state = 69}, - [60] = {.lex_state = 69}, - [61] = {.lex_state = 69, .external_lex_state = 2}, - [62] = {.lex_state = 69}, - [63] = {.lex_state = 69}, - [64] = {.lex_state = 69}, - [65] = {.lex_state = 69}, - [66] = {.lex_state = 69}, - [67] = {.lex_state = 69}, - [68] = {.lex_state = 69}, - [69] = {.lex_state = 69, .external_lex_state = 2}, - [70] = {.lex_state = 69, .external_lex_state = 2}, - [71] = {.lex_state = 69}, - [72] = {.lex_state = 69}, - [73] = {.lex_state = 69}, - [74] = {.lex_state = 69}, - [75] = {.lex_state = 69, .external_lex_state = 2}, - [76] = {.lex_state = 69}, - [77] = {.lex_state = 69}, - [78] = {.lex_state = 69}, - [79] = {.lex_state = 69}, - [80] = {.lex_state = 69}, - [81] = {.lex_state = 69}, - [82] = {.lex_state = 69}, - [83] = {.lex_state = 69}, - [84] = {.lex_state = 69}, - [85] = {.lex_state = 69}, - [86] = {.lex_state = 6}, - [87] = {.lex_state = 6}, - [88] = {.lex_state = 6, .external_lex_state = 2}, - [89] = {.lex_state = 6}, - [90] = {.lex_state = 8}, - [91] = {.lex_state = 8}, - [92] = {.lex_state = 8}, - [93] = {.lex_state = 8}, - [94] = {.lex_state = 8}, - [95] = {.lex_state = 8}, - [96] = {.lex_state = 8}, - [97] = {.lex_state = 8}, - [98] = {.lex_state = 8}, - [99] = {.lex_state = 8}, - [100] = {.lex_state = 8}, - [101] = {.lex_state = 7}, - [102] = {.lex_state = 7}, - [103] = {.lex_state = 7}, - [104] = {.lex_state = 7}, - [105] = {.lex_state = 7}, - [106] = {.lex_state = 7}, - [107] = {.lex_state = 7}, - [108] = {.lex_state = 7}, - [109] = {.lex_state = 7}, - [110] = {.lex_state = 7}, - [111] = {.lex_state = 7}, - [112] = {.lex_state = 7}, - [113] = {.lex_state = 7}, - [114] = {.lex_state = 7}, - [115] = {.lex_state = 7}, - [116] = {.lex_state = 7}, - [117] = {.lex_state = 7}, - [118] = {.lex_state = 7}, - [119] = {.lex_state = 69}, - [120] = {.lex_state = 7}, - [121] = {.lex_state = 7}, - [122] = {.lex_state = 7}, - [123] = {.lex_state = 7}, - [124] = {.lex_state = 7}, - [125] = {.lex_state = 7}, - [126] = {.lex_state = 7}, - [127] = {.lex_state = 7}, - [128] = {.lex_state = 7}, - [129] = {.lex_state = 69}, - [130] = {.lex_state = 7}, - [131] = {.lex_state = 7}, - [132] = {.lex_state = 7}, - [133] = {.lex_state = 7}, - [134] = {.lex_state = 7}, - [135] = {.lex_state = 7}, - [136] = {.lex_state = 7}, - [137] = {.lex_state = 7}, - [138] = {.lex_state = 7}, - [139] = {.lex_state = 7}, - [140] = {.lex_state = 7}, - [141] = {.lex_state = 7}, - [142] = {.lex_state = 7}, - [143] = {.lex_state = 7}, - [144] = {.lex_state = 69}, - [145] = {.lex_state = 7}, - [146] = {.lex_state = 69}, - [147] = {.lex_state = 7}, - [148] = {.lex_state = 69}, - [149] = {.lex_state = 7}, - [150] = {.lex_state = 69}, - [151] = {.lex_state = 69}, - [152] = {.lex_state = 69}, - [153] = {.lex_state = 69}, - [154] = {.lex_state = 69}, - [155] = {.lex_state = 69}, - [156] = {.lex_state = 69}, - [157] = {.lex_state = 7}, - [158] = {.lex_state = 69}, - [159] = {.lex_state = 69}, - [160] = {.lex_state = 69}, - [161] = {.lex_state = 69}, - [162] = {.lex_state = 69}, - [163] = {.lex_state = 69}, - [164] = {.lex_state = 69}, - [165] = {.lex_state = 69}, - [166] = {.lex_state = 69}, - [167] = {.lex_state = 69}, - [168] = {.lex_state = 69}, - [169] = {.lex_state = 69}, - [170] = {.lex_state = 69}, - [171] = {.lex_state = 69}, - [172] = {.lex_state = 69}, - [173] = {.lex_state = 69}, - [174] = {.lex_state = 69}, - [175] = {.lex_state = 69}, - [176] = {.lex_state = 69}, - [177] = {.lex_state = 69}, - [178] = {.lex_state = 69}, - [179] = {.lex_state = 69}, - [180] = {.lex_state = 69}, - [181] = {.lex_state = 69}, - [182] = {.lex_state = 69}, - [183] = {.lex_state = 69}, - [184] = {.lex_state = 69}, - [185] = {.lex_state = 69}, - [186] = {.lex_state = 69}, - [187] = {.lex_state = 69, .external_lex_state = 2}, - [188] = {.lex_state = 7}, - [189] = {.lex_state = 69}, - [190] = {.lex_state = 69}, - [191] = {.lex_state = 69}, - [192] = {.lex_state = 7}, - [193] = {.lex_state = 69, .external_lex_state = 2}, - [194] = {.lex_state = 69}, - [195] = {.lex_state = 69}, - [196] = {.lex_state = 69, .external_lex_state = 2}, - [197] = {.lex_state = 69}, - [198] = {.lex_state = 69}, - [199] = {.lex_state = 69, .external_lex_state = 2}, - [200] = {.lex_state = 69, .external_lex_state = 2}, - [201] = {.lex_state = 69, .external_lex_state = 2}, - [202] = {.lex_state = 69}, - [203] = {.lex_state = 69}, - [204] = {.lex_state = 69}, - [205] = {.lex_state = 69}, - [206] = {.lex_state = 69}, - [207] = {.lex_state = 69}, - [208] = {.lex_state = 69}, - [209] = {.lex_state = 69}, - [210] = {.lex_state = 69}, - [211] = {.lex_state = 69}, - [212] = {.lex_state = 69}, - [213] = {.lex_state = 69}, - [214] = {.lex_state = 69}, - [215] = {.lex_state = 69}, - [216] = {.lex_state = 69}, - [217] = {.lex_state = 69}, - [218] = {.lex_state = 69}, - [219] = {.lex_state = 69}, - [220] = {.lex_state = 69}, - [221] = {.lex_state = 69}, - [222] = {.lex_state = 69}, - [223] = {.lex_state = 69}, - [224] = {.lex_state = 69}, - [225] = {.lex_state = 69}, - [226] = {.lex_state = 69}, - [227] = {.lex_state = 69}, - [228] = {.lex_state = 69}, - [229] = {.lex_state = 69}, - [230] = {.lex_state = 69}, - [231] = {.lex_state = 69}, - [232] = {.lex_state = 69}, - [233] = {.lex_state = 69}, - [234] = {.lex_state = 69}, - [235] = {.lex_state = 69}, - [236] = {.lex_state = 69}, - [237] = {.lex_state = 69}, - [238] = {.lex_state = 69}, - [239] = {.lex_state = 69}, - [240] = {.lex_state = 69}, - [241] = {.lex_state = 69}, - [242] = {.lex_state = 69}, - [243] = {.lex_state = 69}, - [244] = {.lex_state = 69}, - [245] = {.lex_state = 69}, - [246] = {.lex_state = 69}, - [247] = {.lex_state = 69}, - [248] = {.lex_state = 69}, - [249] = {.lex_state = 69}, - [250] = {.lex_state = 69}, - [251] = {.lex_state = 69}, - [252] = {.lex_state = 69}, - [253] = {.lex_state = 69}, - [254] = {.lex_state = 69}, - [255] = {.lex_state = 69}, - [256] = {.lex_state = 69}, - [257] = {.lex_state = 69}, - [258] = {.lex_state = 69}, - [259] = {.lex_state = 69}, - [260] = {.lex_state = 69}, - [261] = {.lex_state = 69}, - [262] = {.lex_state = 69}, - [263] = {.lex_state = 69}, - [264] = {.lex_state = 69}, - [265] = {.lex_state = 69}, - [266] = {.lex_state = 69}, - [267] = {.lex_state = 69}, - [268] = {.lex_state = 69}, - [269] = {.lex_state = 69}, - [270] = {.lex_state = 69}, - [271] = {.lex_state = 69}, - [272] = {.lex_state = 69}, - [273] = {.lex_state = 69}, - [274] = {.lex_state = 69}, - [275] = {.lex_state = 69}, - [276] = {.lex_state = 69}, - [277] = {.lex_state = 69}, - [278] = {.lex_state = 69}, - [279] = {.lex_state = 69}, - [280] = {.lex_state = 69}, - [281] = {.lex_state = 69}, - [282] = {.lex_state = 69}, - [283] = {.lex_state = 69}, - [284] = {.lex_state = 69}, - [285] = {.lex_state = 69}, - [286] = {.lex_state = 69}, - [287] = {.lex_state = 69}, - [288] = {.lex_state = 69}, - [289] = {.lex_state = 69}, - [290] = {.lex_state = 69}, - [291] = {.lex_state = 69}, - [292] = {.lex_state = 69}, - [293] = {.lex_state = 69}, - [294] = {.lex_state = 69}, - [295] = {.lex_state = 69}, - [296] = {.lex_state = 69}, - [297] = {.lex_state = 69}, - [298] = {.lex_state = 69}, - [299] = {.lex_state = 69}, - [300] = {.lex_state = 69}, - [301] = {.lex_state = 69}, - [302] = {.lex_state = 69}, - [303] = {.lex_state = 69}, - [304] = {.lex_state = 69}, - [305] = {.lex_state = 69}, - [306] = {.lex_state = 69}, - [307] = {.lex_state = 69}, - [308] = {.lex_state = 69}, - [309] = {.lex_state = 69}, - [310] = {.lex_state = 69}, - [311] = {.lex_state = 69}, - [312] = {.lex_state = 69}, - [313] = {.lex_state = 69}, - [314] = {.lex_state = 69}, - [315] = {.lex_state = 69}, - [316] = {.lex_state = 69}, - [317] = {.lex_state = 69}, - [318] = {.lex_state = 69}, - [319] = {.lex_state = 69}, - [320] = {.lex_state = 69}, - [321] = {.lex_state = 69}, - [322] = {.lex_state = 69}, - [323] = {.lex_state = 69}, - [324] = {.lex_state = 69}, - [325] = {.lex_state = 69}, - [326] = {.lex_state = 69}, - [327] = {.lex_state = 69}, - [328] = {.lex_state = 69}, - [329] = {.lex_state = 69}, - [330] = {.lex_state = 69}, - [331] = {.lex_state = 69}, - [332] = {.lex_state = 69}, - [333] = {.lex_state = 69}, - [334] = {.lex_state = 69}, - [335] = {.lex_state = 69}, - [336] = {.lex_state = 69}, - [337] = {.lex_state = 69}, - [338] = {.lex_state = 69}, - [339] = {.lex_state = 69}, - [340] = {.lex_state = 69}, - [341] = {.lex_state = 69}, - [342] = {.lex_state = 69}, - [343] = {.lex_state = 69}, - [344] = {.lex_state = 69}, - [345] = {.lex_state = 69}, - [346] = {.lex_state = 69}, - [347] = {.lex_state = 69}, - [348] = {.lex_state = 69}, - [349] = {.lex_state = 69}, - [350] = {.lex_state = 69}, - [351] = {.lex_state = 69}, - [352] = {.lex_state = 69}, - [353] = {.lex_state = 69}, - [354] = {.lex_state = 69}, - [355] = {.lex_state = 69}, - [356] = {.lex_state = 69}, - [357] = {.lex_state = 69}, - [358] = {.lex_state = 69}, - [359] = {.lex_state = 69}, - [360] = {.lex_state = 69}, - [361] = {.lex_state = 69}, - [362] = {.lex_state = 69}, - [363] = {.lex_state = 69}, - [364] = {.lex_state = 69}, - [365] = {.lex_state = 69}, - [366] = {.lex_state = 69}, - [367] = {.lex_state = 69}, - [368] = {.lex_state = 69}, - [369] = {.lex_state = 69}, - [370] = {.lex_state = 69}, - [371] = {.lex_state = 69}, - [372] = {.lex_state = 69}, - [373] = {.lex_state = 69}, - [374] = {.lex_state = 69}, - [375] = {.lex_state = 69}, - [376] = {.lex_state = 69}, - [377] = {.lex_state = 69}, - [378] = {.lex_state = 69}, - [379] = {.lex_state = 69}, - [380] = {.lex_state = 69}, - [381] = {.lex_state = 69}, - [382] = {.lex_state = 69}, - [383] = {.lex_state = 69}, - [384] = {.lex_state = 69}, - [385] = {.lex_state = 69}, - [386] = {.lex_state = 69}, - [387] = {.lex_state = 69}, - [388] = {.lex_state = 69}, - [389] = {.lex_state = 69}, - [390] = {.lex_state = 69}, - [391] = {.lex_state = 69}, - [392] = {.lex_state = 69}, - [393] = {.lex_state = 69}, - [394] = {.lex_state = 69}, - [395] = {.lex_state = 69}, - [396] = {.lex_state = 69}, - [397] = {.lex_state = 69}, - [398] = {.lex_state = 69}, - [399] = {.lex_state = 69}, - [400] = {.lex_state = 69}, - [401] = {.lex_state = 69}, - [402] = {.lex_state = 69}, - [403] = {.lex_state = 69}, - [404] = {.lex_state = 69}, - [405] = {.lex_state = 69}, - [406] = {.lex_state = 69}, - [407] = {.lex_state = 69}, - [408] = {.lex_state = 69}, - [409] = {.lex_state = 69}, - [410] = {.lex_state = 69}, - [411] = {.lex_state = 69}, - [412] = {.lex_state = 69}, - [413] = {.lex_state = 69}, - [414] = {.lex_state = 69}, - [415] = {.lex_state = 69}, - [416] = {.lex_state = 69}, - [417] = {.lex_state = 69}, - [418] = {.lex_state = 69}, - [419] = {.lex_state = 69}, - [420] = {.lex_state = 69}, - [421] = {.lex_state = 69}, - [422] = {.lex_state = 69}, - [423] = {.lex_state = 69}, - [424] = {.lex_state = 69}, - [425] = {.lex_state = 69}, - [426] = {.lex_state = 69}, - [427] = {.lex_state = 69}, - [428] = {.lex_state = 69}, - [429] = {.lex_state = 69}, - [430] = {.lex_state = 69}, - [431] = {.lex_state = 69}, - [432] = {.lex_state = 69}, - [433] = {.lex_state = 69}, - [434] = {.lex_state = 69}, - [435] = {.lex_state = 69}, - [436] = {.lex_state = 69}, - [437] = {.lex_state = 69}, - [438] = {.lex_state = 69, .external_lex_state = 2}, - [439] = {.lex_state = 69, .external_lex_state = 2}, - [440] = {.lex_state = 69, .external_lex_state = 2}, - [441] = {.lex_state = 69, .external_lex_state = 2}, - [442] = {.lex_state = 69, .external_lex_state = 2}, - [443] = {.lex_state = 69, .external_lex_state = 2}, - [444] = {.lex_state = 69, .external_lex_state = 2}, - [445] = {.lex_state = 69, .external_lex_state = 2}, - [446] = {.lex_state = 69, .external_lex_state = 2}, - [447] = {.lex_state = 69, .external_lex_state = 2}, - [448] = {.lex_state = 69, .external_lex_state = 2}, - [449] = {.lex_state = 69, .external_lex_state = 2}, - [450] = {.lex_state = 69, .external_lex_state = 2}, - [451] = {.lex_state = 69, .external_lex_state = 2}, - [452] = {.lex_state = 69}, - [453] = {.lex_state = 69}, - [454] = {.lex_state = 69}, - [455] = {.lex_state = 69}, - [456] = {.lex_state = 69}, - [457] = {.lex_state = 69}, - [458] = {.lex_state = 69}, - [459] = {.lex_state = 69}, - [460] = {.lex_state = 69}, - [461] = {.lex_state = 69}, - [462] = {.lex_state = 69}, - [463] = {.lex_state = 69}, - [464] = {.lex_state = 69}, - [465] = {.lex_state = 69}, - [466] = {.lex_state = 69}, - [467] = {.lex_state = 69}, - [468] = {.lex_state = 69}, - [469] = {.lex_state = 69}, - [470] = {.lex_state = 69}, - [471] = {.lex_state = 69}, - [472] = {.lex_state = 69}, - [473] = {.lex_state = 69}, - [474] = {.lex_state = 69}, - [475] = {.lex_state = 69}, - [476] = {.lex_state = 69}, - [477] = {.lex_state = 69}, - [478] = {.lex_state = 69}, - [479] = {.lex_state = 69}, - [480] = {.lex_state = 69}, - [481] = {.lex_state = 69}, - [482] = {.lex_state = 69}, - [483] = {.lex_state = 69}, - [484] = {.lex_state = 69}, - [485] = {.lex_state = 69}, - [486] = {.lex_state = 69}, - [487] = {.lex_state = 69}, - [488] = {.lex_state = 69}, - [489] = {.lex_state = 69}, - [490] = {.lex_state = 69}, - [491] = {.lex_state = 69}, - [492] = {.lex_state = 69}, - [493] = {.lex_state = 69}, - [494] = {.lex_state = 69}, - [495] = {.lex_state = 69}, - [496] = {.lex_state = 69}, - [497] = {.lex_state = 69}, - [498] = {.lex_state = 69}, - [499] = {.lex_state = 69}, - [500] = {.lex_state = 69}, - [501] = {.lex_state = 69}, - [502] = {.lex_state = 69}, - [503] = {.lex_state = 69}, - [504] = {.lex_state = 69}, - [505] = {.lex_state = 69}, - [506] = {.lex_state = 69}, - [507] = {.lex_state = 69}, - [508] = {.lex_state = 69}, - [509] = {.lex_state = 69}, - [510] = {.lex_state = 69}, - [511] = {.lex_state = 69}, - [512] = {.lex_state = 69}, - [513] = {.lex_state = 69}, - [514] = {.lex_state = 69}, - [515] = {.lex_state = 69}, - [516] = {.lex_state = 69}, - [517] = {.lex_state = 69}, - [518] = {.lex_state = 69}, - [519] = {.lex_state = 69}, - [520] = {.lex_state = 69}, - [521] = {.lex_state = 69}, - [522] = {.lex_state = 69}, - [523] = {.lex_state = 69}, - [524] = {.lex_state = 69}, - [525] = {.lex_state = 69}, - [526] = {.lex_state = 69}, - [527] = {.lex_state = 69}, - [528] = {.lex_state = 69}, - [529] = {.lex_state = 69}, - [530] = {.lex_state = 69}, - [531] = {.lex_state = 69}, - [532] = {.lex_state = 69}, - [533] = {.lex_state = 69}, - [534] = {.lex_state = 69}, - [535] = {.lex_state = 69}, - [536] = {.lex_state = 69}, - [537] = {.lex_state = 69}, - [538] = {.lex_state = 69}, - [539] = {.lex_state = 69}, - [540] = {.lex_state = 69}, - [541] = {.lex_state = 69}, - [542] = {.lex_state = 69}, - [543] = {.lex_state = 69}, - [544] = {.lex_state = 69}, - [545] = {.lex_state = 69}, - [546] = {.lex_state = 69}, - [547] = {.lex_state = 69}, - [548] = {.lex_state = 69}, - [549] = {.lex_state = 69}, - [550] = {.lex_state = 69}, - [551] = {.lex_state = 69}, - [552] = {.lex_state = 69}, - [553] = {.lex_state = 69}, - [554] = {.lex_state = 69}, - [555] = {.lex_state = 70}, - [556] = {.lex_state = 70}, - [557] = {.lex_state = 70}, - [558] = {.lex_state = 70}, - [559] = {.lex_state = 70}, - [560] = {.lex_state = 70}, - [561] = {.lex_state = 70}, - [562] = {.lex_state = 70}, - [563] = {.lex_state = 70}, - [564] = {.lex_state = 70}, - [565] = {.lex_state = 70}, - [566] = {.lex_state = 70}, - [567] = {.lex_state = 70}, - [568] = {.lex_state = 70}, - [569] = {.lex_state = 70}, - [570] = {.lex_state = 70}, - [571] = {.lex_state = 70}, - [572] = {.lex_state = 70}, - [573] = {.lex_state = 70}, - [574] = {.lex_state = 70}, - [575] = {.lex_state = 70}, - [576] = {.lex_state = 70}, - [577] = {.lex_state = 70}, - [578] = {.lex_state = 70}, - [579] = {.lex_state = 70}, - [580] = {.lex_state = 70}, - [581] = {.lex_state = 70}, - [582] = {.lex_state = 70}, - [583] = {.lex_state = 70, .external_lex_state = 2}, - [584] = {.lex_state = 70, .external_lex_state = 2}, - [585] = {.lex_state = 70, .external_lex_state = 2}, - [586] = {.lex_state = 70}, - [587] = {.lex_state = 70, .external_lex_state = 2}, - [588] = {.lex_state = 70, .external_lex_state = 2}, - [589] = {.lex_state = 70}, - [590] = {.lex_state = 70}, - [591] = {.lex_state = 70, .external_lex_state = 2}, - [592] = {.lex_state = 70, .external_lex_state = 2}, - [593] = {.lex_state = 70, .external_lex_state = 2}, - [594] = {.lex_state = 70}, - [595] = {.lex_state = 70, .external_lex_state = 2}, - [596] = {.lex_state = 70}, - [597] = {.lex_state = 70}, - [598] = {.lex_state = 70, .external_lex_state = 2}, - [599] = {.lex_state = 70, .external_lex_state = 2}, - [600] = {.lex_state = 70}, - [601] = {.lex_state = 70, .external_lex_state = 2}, - [602] = {.lex_state = 70, .external_lex_state = 2}, - [603] = {.lex_state = 70, .external_lex_state = 2}, - [604] = {.lex_state = 70}, - [605] = {.lex_state = 70, .external_lex_state = 2}, - [606] = {.lex_state = 70, .external_lex_state = 2}, - [607] = {.lex_state = 70, .external_lex_state = 2}, - [608] = {.lex_state = 70, .external_lex_state = 2}, - [609] = {.lex_state = 70, .external_lex_state = 2}, - [610] = {.lex_state = 70, .external_lex_state = 2}, - [611] = {.lex_state = 70, .external_lex_state = 2}, - [612] = {.lex_state = 70, .external_lex_state = 2}, - [613] = {.lex_state = 70, .external_lex_state = 2}, - [614] = {.lex_state = 70, .external_lex_state = 2}, - [615] = {.lex_state = 70}, - [616] = {.lex_state = 70}, - [617] = {.lex_state = 70}, - [618] = {.lex_state = 70, .external_lex_state = 2}, - [619] = {.lex_state = 70, .external_lex_state = 2}, - [620] = {.lex_state = 70}, - [621] = {.lex_state = 70, .external_lex_state = 2}, - [622] = {.lex_state = 70}, - [623] = {.lex_state = 70}, - [624] = {.lex_state = 70, .external_lex_state = 2}, - [625] = {.lex_state = 70}, - [626] = {.lex_state = 70}, - [627] = {.lex_state = 70}, - [628] = {.lex_state = 70}, - [629] = {.lex_state = 70}, - [630] = {.lex_state = 70}, - [631] = {.lex_state = 10}, - [632] = {.lex_state = 10}, - [633] = {.lex_state = 9}, - [634] = {.lex_state = 10}, - [635] = {.lex_state = 9}, - [636] = {.lex_state = 72}, - [637] = {.lex_state = 10}, - [638] = {.lex_state = 10}, - [639] = {.lex_state = 9}, - [640] = {.lex_state = 10}, - [641] = {.lex_state = 10}, - [642] = {.lex_state = 9}, - [643] = {.lex_state = 9}, - [644] = {.lex_state = 72}, - [645] = {.lex_state = 10}, - [646] = {.lex_state = 15}, - [647] = {.lex_state = 10}, - [648] = {.lex_state = 15}, - [649] = {.lex_state = 10}, - [650] = {.lex_state = 10}, - [651] = {.lex_state = 9}, - [652] = {.lex_state = 10}, - [653] = {.lex_state = 10}, - [654] = {.lex_state = 10}, - [655] = {.lex_state = 9}, - [656] = {.lex_state = 10}, - [657] = {.lex_state = 10}, - [658] = {.lex_state = 10}, - [659] = {.lex_state = 10}, - [660] = {.lex_state = 10}, - [661] = {.lex_state = 10}, - [662] = {.lex_state = 10}, - [663] = {.lex_state = 10}, - [664] = {.lex_state = 10}, - [665] = {.lex_state = 10}, - [666] = {.lex_state = 9}, - [667] = {.lex_state = 9}, - [668] = {.lex_state = 18}, - [669] = {.lex_state = 9}, - [670] = {.lex_state = 9}, - [671] = {.lex_state = 9}, - [672] = {.lex_state = 9}, - [673] = {.lex_state = 9}, - [674] = {.lex_state = 16}, - [675] = {.lex_state = 9}, - [676] = {.lex_state = 16}, - [677] = {.lex_state = 9}, - [678] = {.lex_state = 9}, - [679] = {.lex_state = 16}, - [680] = {.lex_state = 9}, - [681] = {.lex_state = 9}, - [682] = {.lex_state = 9}, - [683] = {.lex_state = 10}, - [684] = {.lex_state = 9}, - [685] = {.lex_state = 9}, - [686] = {.lex_state = 18}, - [687] = {.lex_state = 9}, - [688] = {.lex_state = 10}, - [689] = {.lex_state = 9}, - [690] = {.lex_state = 9}, - [691] = {.lex_state = 9}, - [692] = {.lex_state = 9}, - [693] = {.lex_state = 9}, - [694] = {.lex_state = 16}, - [695] = {.lex_state = 9}, - [696] = {.lex_state = 9}, - [697] = {.lex_state = 9}, - [698] = {.lex_state = 16}, - [699] = {.lex_state = 9}, - [700] = {.lex_state = 9}, - [701] = {.lex_state = 9}, - [702] = {.lex_state = 9}, - [703] = {.lex_state = 9}, - [704] = {.lex_state = 9}, - [705] = {.lex_state = 9}, - [706] = {.lex_state = 9}, - [707] = {.lex_state = 9}, - [708] = {.lex_state = 9}, - [709] = {.lex_state = 9}, - [710] = {.lex_state = 9}, - [711] = {.lex_state = 9}, - [712] = {.lex_state = 9}, - [713] = {.lex_state = 9}, - [714] = {.lex_state = 9}, - [715] = {.lex_state = 9}, - [716] = {.lex_state = 18}, - [717] = {.lex_state = 9}, - [718] = {.lex_state = 9}, - [719] = {.lex_state = 9}, - [720] = {.lex_state = 9}, - [721] = {.lex_state = 9}, - [722] = {.lex_state = 9}, - [723] = {.lex_state = 9}, - [724] = {.lex_state = 9}, - [725] = {.lex_state = 9}, - [726] = {.lex_state = 9}, - [727] = {.lex_state = 9}, - [728] = {.lex_state = 9}, - [729] = {.lex_state = 9}, - [730] = {.lex_state = 9}, - [731] = {.lex_state = 9}, - [732] = {.lex_state = 9}, - [733] = {.lex_state = 18}, - [734] = {.lex_state = 9}, - [735] = {.lex_state = 16}, - [736] = {.lex_state = 9}, - [737] = {.lex_state = 9}, - [738] = {.lex_state = 9}, - [739] = {.lex_state = 9}, - [740] = {.lex_state = 9}, - [741] = {.lex_state = 9}, - [742] = {.lex_state = 9}, - [743] = {.lex_state = 9}, - [744] = {.lex_state = 9}, - [745] = {.lex_state = 18}, - [746] = {.lex_state = 9}, - [747] = {.lex_state = 9}, - [748] = {.lex_state = 18}, - [749] = {.lex_state = 9, .external_lex_state = 2}, - [750] = {.lex_state = 10, .external_lex_state = 2}, - [751] = {.lex_state = 10, .external_lex_state = 2}, - [752] = {.lex_state = 10, .external_lex_state = 2}, - [753] = {.lex_state = 9, .external_lex_state = 2}, - [754] = {.lex_state = 13}, - [755] = {.lex_state = 10, .external_lex_state = 2}, - [756] = {.lex_state = 10, .external_lex_state = 2}, - [757] = {.lex_state = 9}, - [758] = {.lex_state = 18}, - [759] = {.lex_state = 10, .external_lex_state = 2}, - [760] = {.lex_state = 9, .external_lex_state = 2}, - [761] = {.lex_state = 9, .external_lex_state = 2}, - [762] = {.lex_state = 9}, - [763] = {.lex_state = 9}, - [764] = {.lex_state = 10, .external_lex_state = 2}, - [765] = {.lex_state = 13}, - [766] = {.lex_state = 9}, - [767] = {.lex_state = 9}, - [768] = {.lex_state = 9}, - [769] = {.lex_state = 10, .external_lex_state = 2}, - [770] = {.lex_state = 10, .external_lex_state = 2}, - [771] = {.lex_state = 10, .external_lex_state = 2}, - [772] = {.lex_state = 10, .external_lex_state = 2}, - [773] = {.lex_state = 7}, - [774] = {.lex_state = 10, .external_lex_state = 2}, - [775] = {.lex_state = 10, .external_lex_state = 2}, - [776] = {.lex_state = 10, .external_lex_state = 2}, - [777] = {.lex_state = 9, .external_lex_state = 2}, - [778] = {.lex_state = 10, .external_lex_state = 2}, - [779] = {.lex_state = 10, .external_lex_state = 2}, - [780] = {.lex_state = 10, .external_lex_state = 2}, - [781] = {.lex_state = 10, .external_lex_state = 2}, - [782] = {.lex_state = 10, .external_lex_state = 2}, - [783] = {.lex_state = 10, .external_lex_state = 2}, - [784] = {.lex_state = 10, .external_lex_state = 2}, - [785] = {.lex_state = 10, .external_lex_state = 2}, - [786] = {.lex_state = 10, .external_lex_state = 2}, - [787] = {.lex_state = 10, .external_lex_state = 2}, - [788] = {.lex_state = 9}, - [789] = {.lex_state = 9, .external_lex_state = 2}, - [790] = {.lex_state = 16}, - [791] = {.lex_state = 9, .external_lex_state = 2}, - [792] = {.lex_state = 9, .external_lex_state = 2}, - [793] = {.lex_state = 9, .external_lex_state = 2}, - [794] = {.lex_state = 16}, - [795] = {.lex_state = 9, .external_lex_state = 2}, - [796] = {.lex_state = 9, .external_lex_state = 2}, - [797] = {.lex_state = 9, .external_lex_state = 2}, - [798] = {.lex_state = 9, .external_lex_state = 2}, - [799] = {.lex_state = 16}, - [800] = {.lex_state = 9, .external_lex_state = 2}, - [801] = {.lex_state = 9, .external_lex_state = 2}, - [802] = {.lex_state = 16}, - [803] = {.lex_state = 16}, - [804] = {.lex_state = 13}, - [805] = {.lex_state = 9, .external_lex_state = 2}, - [806] = {.lex_state = 9, .external_lex_state = 2}, - [807] = {.lex_state = 9, .external_lex_state = 2}, - [808] = {.lex_state = 9, .external_lex_state = 2}, - [809] = {.lex_state = 9, .external_lex_state = 2}, - [810] = {.lex_state = 9, .external_lex_state = 2}, - [811] = {.lex_state = 16}, - [812] = {.lex_state = 9, .external_lex_state = 2}, - [813] = {.lex_state = 10, .external_lex_state = 2}, - [814] = {.lex_state = 9, .external_lex_state = 2}, - [815] = {.lex_state = 13}, - [816] = {.lex_state = 9, .external_lex_state = 2}, - [817] = {.lex_state = 16}, - [818] = {.lex_state = 9, .external_lex_state = 2}, - [819] = {.lex_state = 16}, - [820] = {.lex_state = 9, .external_lex_state = 2}, - [821] = {.lex_state = 9, .external_lex_state = 2}, - [822] = {.lex_state = 9, .external_lex_state = 2}, - [823] = {.lex_state = 9, .external_lex_state = 2}, - [824] = {.lex_state = 16}, - [825] = {.lex_state = 9, .external_lex_state = 2}, - [826] = {.lex_state = 16}, - [827] = {.lex_state = 9, .external_lex_state = 2}, - [828] = {.lex_state = 9, .external_lex_state = 2}, - [829] = {.lex_state = 9, .external_lex_state = 2}, - [830] = {.lex_state = 9, .external_lex_state = 2}, - [831] = {.lex_state = 16}, - [832] = {.lex_state = 16}, - [833] = {.lex_state = 10, .external_lex_state = 2}, - [834] = {.lex_state = 9, .external_lex_state = 2}, - [835] = {.lex_state = 16}, - [836] = {.lex_state = 9, .external_lex_state = 2}, - [837] = {.lex_state = 16}, - [838] = {.lex_state = 16}, - [839] = {.lex_state = 9, .external_lex_state = 2}, - [840] = {.lex_state = 9, .external_lex_state = 2}, - [841] = {.lex_state = 9, .external_lex_state = 2}, - [842] = {.lex_state = 9, .external_lex_state = 2}, - [843] = {.lex_state = 9, .external_lex_state = 2}, - [844] = {.lex_state = 9, .external_lex_state = 2}, - [845] = {.lex_state = 9}, - [846] = {.lex_state = 9, .external_lex_state = 2}, - [847] = {.lex_state = 9}, - [848] = {.lex_state = 9, .external_lex_state = 2}, - [849] = {.lex_state = 9, .external_lex_state = 2}, - [850] = {.lex_state = 9, .external_lex_state = 2}, - [851] = {.lex_state = 9, .external_lex_state = 2}, - [852] = {.lex_state = 9, .external_lex_state = 2}, - [853] = {.lex_state = 9, .external_lex_state = 2}, - [854] = {.lex_state = 9, .external_lex_state = 2}, - [855] = {.lex_state = 9, .external_lex_state = 2}, - [856] = {.lex_state = 9, .external_lex_state = 2}, - [857] = {.lex_state = 9, .external_lex_state = 2}, - [858] = {.lex_state = 9, .external_lex_state = 2}, - [859] = {.lex_state = 9, .external_lex_state = 2}, - [860] = {.lex_state = 9, .external_lex_state = 2}, - [861] = {.lex_state = 9, .external_lex_state = 2}, - [862] = {.lex_state = 9, .external_lex_state = 2}, - [863] = {.lex_state = 9, .external_lex_state = 2}, - [864] = {.lex_state = 9, .external_lex_state = 2}, - [865] = {.lex_state = 9, .external_lex_state = 2}, - [866] = {.lex_state = 9, .external_lex_state = 2}, - [867] = {.lex_state = 9, .external_lex_state = 2}, - [868] = {.lex_state = 9, .external_lex_state = 2}, - [869] = {.lex_state = 9, .external_lex_state = 2}, - [870] = {.lex_state = 9, .external_lex_state = 2}, - [871] = {.lex_state = 9, .external_lex_state = 2}, - [872] = {.lex_state = 9, .external_lex_state = 2}, - [873] = {.lex_state = 9, .external_lex_state = 2}, - [874] = {.lex_state = 9, .external_lex_state = 2}, - [875] = {.lex_state = 9, .external_lex_state = 2}, - [876] = {.lex_state = 9, .external_lex_state = 2}, - [877] = {.lex_state = 9, .external_lex_state = 2}, - [878] = {.lex_state = 9, .external_lex_state = 2}, - [879] = {.lex_state = 9, .external_lex_state = 2}, - [880] = {.lex_state = 9, .external_lex_state = 2}, - [881] = {.lex_state = 9, .external_lex_state = 2}, - [882] = {.lex_state = 9, .external_lex_state = 2}, - [883] = {.lex_state = 9, .external_lex_state = 2}, - [884] = {.lex_state = 9, .external_lex_state = 2}, - [885] = {.lex_state = 9, .external_lex_state = 2}, - [886] = {.lex_state = 9, .external_lex_state = 2}, - [887] = {.lex_state = 9, .external_lex_state = 2}, - [888] = {.lex_state = 13}, - [889] = {.lex_state = 13}, - [890] = {.lex_state = 13}, - [891] = {.lex_state = 13}, - [892] = {.lex_state = 13}, - [893] = {.lex_state = 13}, - [894] = {.lex_state = 13}, - [895] = {.lex_state = 13}, - [896] = {.lex_state = 13}, - [897] = {.lex_state = 13}, - [898] = {.lex_state = 13}, - [899] = {.lex_state = 13}, - [900] = {.lex_state = 13}, - [901] = {.lex_state = 13}, - [902] = {.lex_state = 13}, - [903] = {.lex_state = 13}, - [904] = {.lex_state = 13}, - [905] = {.lex_state = 13}, - [906] = {.lex_state = 13}, - [907] = {.lex_state = 13}, - [908] = {.lex_state = 13}, - [909] = {.lex_state = 13}, - [910] = {.lex_state = 13}, - [911] = {.lex_state = 13}, - [912] = {.lex_state = 13}, - [913] = {.lex_state = 13}, - [914] = {.lex_state = 13}, - [915] = {.lex_state = 13}, - [916] = {.lex_state = 13}, - [917] = {.lex_state = 13}, - [918] = {.lex_state = 13}, - [919] = {.lex_state = 13}, - [920] = {.lex_state = 13}, - [921] = {.lex_state = 13}, - [922] = {.lex_state = 13}, - [923] = {.lex_state = 13}, - [924] = {.lex_state = 13}, - [925] = {.lex_state = 13}, - [926] = {.lex_state = 13}, - [927] = {.lex_state = 13}, - [928] = {.lex_state = 13}, - [929] = {.lex_state = 13}, - [930] = {.lex_state = 13}, - [931] = {.lex_state = 13}, - [932] = {.lex_state = 13}, - [933] = {.lex_state = 13}, - [934] = {.lex_state = 13}, - [935] = {.lex_state = 13}, - [936] = {.lex_state = 13}, - [937] = {.lex_state = 13}, - [938] = {.lex_state = 13}, - [939] = {.lex_state = 13}, - [940] = {.lex_state = 13}, - [941] = {.lex_state = 13}, - [942] = {.lex_state = 13}, - [943] = {.lex_state = 13}, - [944] = {.lex_state = 13}, - [945] = {.lex_state = 13}, - [946] = {.lex_state = 13}, - [947] = {.lex_state = 13}, - [948] = {.lex_state = 13}, - [949] = {.lex_state = 13}, - [950] = {.lex_state = 13}, - [951] = {.lex_state = 13}, - [952] = {.lex_state = 13}, - [953] = {.lex_state = 13, .external_lex_state = 2}, - [954] = {.lex_state = 13, .external_lex_state = 2}, - [955] = {.lex_state = 13}, - [956] = {.lex_state = 13}, - [957] = {.lex_state = 13}, - [958] = {.lex_state = 13}, - [959] = {.lex_state = 13}, - [960] = {.lex_state = 13}, - [961] = {.lex_state = 13}, - [962] = {.lex_state = 13}, - [963] = {.lex_state = 13}, - [964] = {.lex_state = 13}, - [965] = {.lex_state = 13}, - [966] = {.lex_state = 13}, - [967] = {.lex_state = 13}, - [968] = {.lex_state = 13}, - [969] = {.lex_state = 13}, - [970] = {.lex_state = 13}, - [971] = {.lex_state = 13}, - [972] = {.lex_state = 13}, - [973] = {.lex_state = 13}, - [974] = {.lex_state = 13}, - [975] = {.lex_state = 13}, - [976] = {.lex_state = 13}, - [977] = {.lex_state = 13}, - [978] = {.lex_state = 13}, - [979] = {.lex_state = 13}, - [980] = {.lex_state = 13}, - [981] = {.lex_state = 13}, - [982] = {.lex_state = 13}, - [983] = {.lex_state = 13}, - [984] = {.lex_state = 13}, - [985] = {.lex_state = 13}, - [986] = {.lex_state = 13}, - [987] = {.lex_state = 13}, - [988] = {.lex_state = 13}, - [989] = {.lex_state = 13}, - [990] = {.lex_state = 13}, - [991] = {.lex_state = 13}, - [992] = {.lex_state = 13}, - [993] = {.lex_state = 13}, - [994] = {.lex_state = 13}, - [995] = {.lex_state = 13}, - [996] = {.lex_state = 13}, - [997] = {.lex_state = 13}, - [998] = {.lex_state = 13}, - [999] = {.lex_state = 13}, - [1000] = {.lex_state = 13}, - [1001] = {.lex_state = 13}, - [1002] = {.lex_state = 13}, - [1003] = {.lex_state = 13}, - [1004] = {.lex_state = 13}, - [1005] = {.lex_state = 13}, - [1006] = {.lex_state = 13}, - [1007] = {.lex_state = 13}, - [1008] = {.lex_state = 13}, - [1009] = {.lex_state = 13}, - [1010] = {.lex_state = 13}, - [1011] = {.lex_state = 13}, - [1012] = {.lex_state = 13}, - [1013] = {.lex_state = 13}, - [1014] = {.lex_state = 13}, - [1015] = {.lex_state = 13}, - [1016] = {.lex_state = 13}, - [1017] = {.lex_state = 13}, - [1018] = {.lex_state = 13}, - [1019] = {.lex_state = 13}, - [1020] = {.lex_state = 13}, - [1021] = {.lex_state = 13, .external_lex_state = 2}, - [1022] = {.lex_state = 13, .external_lex_state = 2}, - [1023] = {.lex_state = 13, .external_lex_state = 2}, - [1024] = {.lex_state = 13, .external_lex_state = 2}, - [1025] = {.lex_state = 13, .external_lex_state = 2}, - [1026] = {.lex_state = 13, .external_lex_state = 2}, - [1027] = {.lex_state = 13, .external_lex_state = 2}, - [1028] = {.lex_state = 13, .external_lex_state = 2}, - [1029] = {.lex_state = 13, .external_lex_state = 2}, - [1030] = {.lex_state = 13, .external_lex_state = 2}, - [1031] = {.lex_state = 13, .external_lex_state = 2}, - [1032] = {.lex_state = 13, .external_lex_state = 2}, - [1033] = {.lex_state = 13, .external_lex_state = 2}, - [1034] = {.lex_state = 13, .external_lex_state = 2}, - [1035] = {.lex_state = 13, .external_lex_state = 2}, - [1036] = {.lex_state = 13, .external_lex_state = 2}, - [1037] = {.lex_state = 13, .external_lex_state = 2}, - [1038] = {.lex_state = 13, .external_lex_state = 2}, - [1039] = {.lex_state = 13, .external_lex_state = 2}, - [1040] = {.lex_state = 13, .external_lex_state = 2}, - [1041] = {.lex_state = 13, .external_lex_state = 2}, - [1042] = {.lex_state = 13, .external_lex_state = 2}, - [1043] = {.lex_state = 13, .external_lex_state = 2}, - [1044] = {.lex_state = 13, .external_lex_state = 2}, - [1045] = {.lex_state = 13, .external_lex_state = 2}, - [1046] = {.lex_state = 13, .external_lex_state = 2}, - [1047] = {.lex_state = 13, .external_lex_state = 2}, - [1048] = {.lex_state = 13, .external_lex_state = 2}, - [1049] = {.lex_state = 13, .external_lex_state = 2}, - [1050] = {.lex_state = 13, .external_lex_state = 2}, - [1051] = {.lex_state = 13, .external_lex_state = 2}, - [1052] = {.lex_state = 13, .external_lex_state = 2}, - [1053] = {.lex_state = 13, .external_lex_state = 2}, - [1054] = {.lex_state = 13, .external_lex_state = 2}, - [1055] = {.lex_state = 13, .external_lex_state = 2}, - [1056] = {.lex_state = 13, .external_lex_state = 2}, - [1057] = {.lex_state = 13, .external_lex_state = 2}, - [1058] = {.lex_state = 13, .external_lex_state = 2}, - [1059] = {.lex_state = 13, .external_lex_state = 2}, - [1060] = {.lex_state = 13, .external_lex_state = 2}, - [1061] = {.lex_state = 13, .external_lex_state = 2}, - [1062] = {.lex_state = 13, .external_lex_state = 2}, - [1063] = {.lex_state = 13, .external_lex_state = 2}, - [1064] = {.lex_state = 13, .external_lex_state = 2}, - [1065] = {.lex_state = 13, .external_lex_state = 2}, - [1066] = {.lex_state = 13, .external_lex_state = 2}, - [1067] = {.lex_state = 13, .external_lex_state = 2}, - [1068] = {.lex_state = 13, .external_lex_state = 2}, - [1069] = {.lex_state = 13, .external_lex_state = 2}, - [1070] = {.lex_state = 13, .external_lex_state = 2}, - [1071] = {.lex_state = 13, .external_lex_state = 2}, - [1072] = {.lex_state = 72}, - [1073] = {.lex_state = 13, .external_lex_state = 2}, - [1074] = {.lex_state = 13, .external_lex_state = 2}, - [1075] = {.lex_state = 13, .external_lex_state = 2}, - [1076] = {.lex_state = 13, .external_lex_state = 2}, - [1077] = {.lex_state = 13, .external_lex_state = 2}, - [1078] = {.lex_state = 13, .external_lex_state = 2}, - [1079] = {.lex_state = 13, .external_lex_state = 2}, - [1080] = {.lex_state = 13, .external_lex_state = 2}, - [1081] = {.lex_state = 13, .external_lex_state = 2}, - [1082] = {.lex_state = 13, .external_lex_state = 2}, - [1083] = {.lex_state = 13, .external_lex_state = 2}, - [1084] = {.lex_state = 13, .external_lex_state = 2}, - [1085] = {.lex_state = 13, .external_lex_state = 2}, - [1086] = {.lex_state = 13, .external_lex_state = 2}, - [1087] = {.lex_state = 13, .external_lex_state = 2}, - [1088] = {.lex_state = 13, .external_lex_state = 2}, - [1089] = {.lex_state = 13, .external_lex_state = 2}, - [1090] = {.lex_state = 13, .external_lex_state = 2}, - [1091] = {.lex_state = 13, .external_lex_state = 2}, - [1092] = {.lex_state = 13, .external_lex_state = 2}, - [1093] = {.lex_state = 13, .external_lex_state = 2}, - [1094] = {.lex_state = 13, .external_lex_state = 2}, - [1095] = {.lex_state = 13, .external_lex_state = 2}, - [1096] = {.lex_state = 13, .external_lex_state = 2}, - [1097] = {.lex_state = 13, .external_lex_state = 2}, - [1098] = {.lex_state = 13, .external_lex_state = 2}, - [1099] = {.lex_state = 13, .external_lex_state = 2}, - [1100] = {.lex_state = 13, .external_lex_state = 2}, - [1101] = {.lex_state = 13, .external_lex_state = 2}, - [1102] = {.lex_state = 13, .external_lex_state = 2}, - [1103] = {.lex_state = 13, .external_lex_state = 2}, - [1104] = {.lex_state = 13, .external_lex_state = 2}, - [1105] = {.lex_state = 13, .external_lex_state = 2}, - [1106] = {.lex_state = 13, .external_lex_state = 2}, - [1107] = {.lex_state = 13, .external_lex_state = 2}, - [1108] = {.lex_state = 13, .external_lex_state = 2}, - [1109] = {.lex_state = 13, .external_lex_state = 2}, - [1110] = {.lex_state = 13, .external_lex_state = 2}, - [1111] = {.lex_state = 13, .external_lex_state = 2}, - [1112] = {.lex_state = 13, .external_lex_state = 2}, - [1113] = {.lex_state = 13, .external_lex_state = 2}, - [1114] = {.lex_state = 13, .external_lex_state = 2}, - [1115] = {.lex_state = 13, .external_lex_state = 2}, - [1116] = {.lex_state = 13, .external_lex_state = 2}, - [1117] = {.lex_state = 13, .external_lex_state = 2}, - [1118] = {.lex_state = 13, .external_lex_state = 2}, - [1119] = {.lex_state = 13, .external_lex_state = 2}, - [1120] = {.lex_state = 13, .external_lex_state = 2}, - [1121] = {.lex_state = 13, .external_lex_state = 2}, - [1122] = {.lex_state = 13}, - [1123] = {.lex_state = 13}, - [1124] = {.lex_state = 13}, - [1125] = {.lex_state = 13}, - [1126] = {.lex_state = 13}, - [1127] = {.lex_state = 13}, - [1128] = {.lex_state = 13}, - [1129] = {.lex_state = 13}, - [1130] = {.lex_state = 13}, - [1131] = {.lex_state = 13}, - [1132] = {.lex_state = 13}, - [1133] = {.lex_state = 13}, - [1134] = {.lex_state = 13}, - [1135] = {.lex_state = 13}, - [1136] = {.lex_state = 13}, - [1137] = {.lex_state = 13}, - [1138] = {.lex_state = 13}, - [1139] = {.lex_state = 13}, - [1140] = {.lex_state = 13}, - [1141] = {.lex_state = 13}, - [1142] = {.lex_state = 13}, - [1143] = {.lex_state = 13}, - [1144] = {.lex_state = 13}, - [1145] = {.lex_state = 13}, - [1146] = {.lex_state = 13}, - [1147] = {.lex_state = 13}, - [1148] = {.lex_state = 13}, - [1149] = {.lex_state = 13}, - [1150] = {.lex_state = 13}, - [1151] = {.lex_state = 13}, - [1152] = {.lex_state = 13}, - [1153] = {.lex_state = 13}, - [1154] = {.lex_state = 13}, - [1155] = {.lex_state = 20}, - [1156] = {.lex_state = 13}, - [1157] = {.lex_state = 13}, - [1158] = {.lex_state = 13}, - [1159] = {.lex_state = 13}, - [1160] = {.lex_state = 13, .external_lex_state = 2}, - [1161] = {.lex_state = 19}, - [1162] = {.lex_state = 19}, - [1163] = {.lex_state = 13, .external_lex_state = 2}, - [1164] = {.lex_state = 13, .external_lex_state = 2}, - [1165] = {.lex_state = 13, .external_lex_state = 2}, - [1166] = {.lex_state = 13}, - [1167] = {.lex_state = 19}, - [1168] = {.lex_state = 19}, - [1169] = {.lex_state = 19}, - [1170] = {.lex_state = 19}, - [1171] = {.lex_state = 19}, - [1172] = {.lex_state = 13, .external_lex_state = 2}, - [1173] = {.lex_state = 19}, - [1174] = {.lex_state = 19}, - [1175] = {.lex_state = 13}, - [1176] = {.lex_state = 13}, - [1177] = {.lex_state = 13}, - [1178] = {.lex_state = 13}, - [1179] = {.lex_state = 13}, - [1180] = {.lex_state = 13}, - [1181] = {.lex_state = 13}, - [1182] = {.lex_state = 13}, - [1183] = {.lex_state = 13}, - [1184] = {.lex_state = 13}, - [1185] = {.lex_state = 13}, - [1186] = {.lex_state = 13}, - [1187] = {.lex_state = 13, .external_lex_state = 2}, - [1188] = {.lex_state = 13, .external_lex_state = 2}, - [1189] = {.lex_state = 13, .external_lex_state = 2}, - [1190] = {.lex_state = 13}, - [1191] = {.lex_state = 13}, - [1192] = {.lex_state = 13, .external_lex_state = 2}, - [1193] = {.lex_state = 13}, - [1194] = {.lex_state = 13, .external_lex_state = 2}, - [1195] = {.lex_state = 13}, - [1196] = {.lex_state = 13}, - [1197] = {.lex_state = 72}, - [1198] = {.lex_state = 13}, - [1199] = {.lex_state = 13}, - [1200] = {.lex_state = 13}, - [1201] = {.lex_state = 13}, - [1202] = {.lex_state = 13}, - [1203] = {.lex_state = 13}, - [1204] = {.lex_state = 13}, - [1205] = {.lex_state = 13, .external_lex_state = 2}, - [1206] = {.lex_state = 13, .external_lex_state = 2}, - [1207] = {.lex_state = 72}, - [1208] = {.lex_state = 13, .external_lex_state = 2}, - [1209] = {.lex_state = 13}, - [1210] = {.lex_state = 13}, - [1211] = {.lex_state = 13}, - [1212] = {.lex_state = 13}, - [1213] = {.lex_state = 13}, - [1214] = {.lex_state = 13}, - [1215] = {.lex_state = 13}, - [1216] = {.lex_state = 13}, - [1217] = {.lex_state = 72}, - [1218] = {.lex_state = 13}, - [1219] = {.lex_state = 13}, - [1220] = {.lex_state = 13}, - [1221] = {.lex_state = 13}, - [1222] = {.lex_state = 19}, - [1223] = {.lex_state = 13}, - [1224] = {.lex_state = 13}, - [1225] = {.lex_state = 13}, - [1226] = {.lex_state = 13}, - [1227] = {.lex_state = 13}, - [1228] = {.lex_state = 13}, - [1229] = {.lex_state = 13}, - [1230] = {.lex_state = 13}, - [1231] = {.lex_state = 13}, - [1232] = {.lex_state = 13}, - [1233] = {.lex_state = 13}, - [1234] = {.lex_state = 13}, - [1235] = {.lex_state = 13}, - [1236] = {.lex_state = 13}, - [1237] = {.lex_state = 13}, - [1238] = {.lex_state = 13}, - [1239] = {.lex_state = 13}, - [1240] = {.lex_state = 13}, - [1241] = {.lex_state = 13}, - [1242] = {.lex_state = 13}, - [1243] = {.lex_state = 13}, - [1244] = {.lex_state = 13}, - [1245] = {.lex_state = 13}, - [1246] = {.lex_state = 13}, - [1247] = {.lex_state = 13}, - [1248] = {.lex_state = 13}, - [1249] = {.lex_state = 19}, - [1250] = {.lex_state = 13}, - [1251] = {.lex_state = 13}, - [1252] = {.lex_state = 13}, - [1253] = {.lex_state = 13}, - [1254] = {.lex_state = 13}, - [1255] = {.lex_state = 13}, - [1256] = {.lex_state = 13}, - [1257] = {.lex_state = 13}, - [1258] = {.lex_state = 13}, - [1259] = {.lex_state = 13}, - [1260] = {.lex_state = 13}, - [1261] = {.lex_state = 19}, - [1262] = {.lex_state = 13}, - [1263] = {.lex_state = 13}, - [1264] = {.lex_state = 19}, - [1265] = {.lex_state = 13}, - [1266] = {.lex_state = 13}, - [1267] = {.lex_state = 19}, - [1268] = {.lex_state = 13}, - [1269] = {.lex_state = 13}, - [1270] = {.lex_state = 13}, - [1271] = {.lex_state = 13}, - [1272] = {.lex_state = 13}, - [1273] = {.lex_state = 13}, - [1274] = {.lex_state = 13}, - [1275] = {.lex_state = 13}, - [1276] = {.lex_state = 13}, - [1277] = {.lex_state = 13}, - [1278] = {.lex_state = 13}, - [1279] = {.lex_state = 13}, - [1280] = {.lex_state = 13}, - [1281] = {.lex_state = 13}, - [1282] = {.lex_state = 13}, - [1283] = {.lex_state = 13}, - [1284] = {.lex_state = 13}, - [1285] = {.lex_state = 72}, - [1286] = {.lex_state = 13}, - [1287] = {.lex_state = 72}, - [1288] = {.lex_state = 72}, - [1289] = {.lex_state = 13}, - [1290] = {.lex_state = 72}, - [1291] = {.lex_state = 72}, - [1292] = {.lex_state = 72}, - [1293] = {.lex_state = 72}, - [1294] = {.lex_state = 13}, - [1295] = {.lex_state = 13}, - [1296] = {.lex_state = 13}, - [1297] = {.lex_state = 13}, - [1298] = {.lex_state = 13}, - [1299] = {.lex_state = 13}, - [1300] = {.lex_state = 18}, - [1301] = {.lex_state = 18}, - [1302] = {.lex_state = 18}, - [1303] = {.lex_state = 70}, - [1304] = {.lex_state = 18}, - [1305] = {.lex_state = 70}, - [1306] = {.lex_state = 18}, - [1307] = {.lex_state = 70}, - [1308] = {.lex_state = 18}, - [1309] = {.lex_state = 3, .external_lex_state = 3}, - [1310] = {.lex_state = 3, .external_lex_state = 3}, - [1311] = {.lex_state = 13}, - [1312] = {.lex_state = 13}, - [1313] = {.lex_state = 72}, - [1314] = {.lex_state = 3, .external_lex_state = 4}, - [1315] = {.lex_state = 72}, - [1316] = {.lex_state = 3, .external_lex_state = 3}, - [1317] = {.lex_state = 3, .external_lex_state = 3}, - [1318] = {.lex_state = 3, .external_lex_state = 3}, - [1319] = {.lex_state = 19}, - [1320] = {.lex_state = 19}, - [1321] = {.lex_state = 72}, - [1322] = {.lex_state = 72}, - [1323] = {.lex_state = 72}, - [1324] = {.lex_state = 16}, - [1325] = {.lex_state = 19}, - [1326] = {.lex_state = 21, .external_lex_state = 4}, - [1327] = {.lex_state = 19}, - [1328] = {.lex_state = 19}, - [1329] = {.lex_state = 19}, - [1330] = {.lex_state = 19}, - [1331] = {.lex_state = 19}, - [1332] = {.lex_state = 19}, - [1333] = {.lex_state = 19}, - [1334] = {.lex_state = 19}, - [1335] = {.lex_state = 10, .external_lex_state = 5}, - [1336] = {.lex_state = 10, .external_lex_state = 5}, - [1337] = {.lex_state = 19}, - [1338] = {.lex_state = 17}, - [1339] = {.lex_state = 19}, - [1340] = {.lex_state = 10, .external_lex_state = 5}, - [1341] = {.lex_state = 19}, - [1342] = {.lex_state = 19}, - [1343] = {.lex_state = 19}, - [1344] = {.lex_state = 10, .external_lex_state = 5}, - [1345] = {.lex_state = 19}, - [1346] = {.lex_state = 19}, - [1347] = {.lex_state = 10, .external_lex_state = 5}, - [1348] = {.lex_state = 19}, - [1349] = {.lex_state = 19}, - [1350] = {.lex_state = 19}, - [1351] = {.lex_state = 19}, - [1352] = {.lex_state = 3, .external_lex_state = 6}, - [1353] = {.lex_state = 19}, - [1354] = {.lex_state = 3, .external_lex_state = 6}, - [1355] = {.lex_state = 19}, - [1356] = {.lex_state = 72}, - [1357] = {.lex_state = 10, .external_lex_state = 7}, - [1358] = {.lex_state = 10, .external_lex_state = 7}, - [1359] = {.lex_state = 19}, - [1360] = {.lex_state = 19}, - [1361] = {.lex_state = 10, .external_lex_state = 7}, - [1362] = {.lex_state = 19}, - [1363] = {.lex_state = 19}, - [1364] = {.lex_state = 72}, - [1365] = {.lex_state = 19}, - [1366] = {.lex_state = 19}, - [1367] = {.lex_state = 19}, - [1368] = {.lex_state = 19}, - [1369] = {.lex_state = 19}, - [1370] = {.lex_state = 19}, - [1371] = {.lex_state = 19}, - [1372] = {.lex_state = 19}, - [1373] = {.lex_state = 19}, - [1374] = {.lex_state = 19}, - [1375] = {.lex_state = 19}, - [1376] = {.lex_state = 10, .external_lex_state = 7}, - [1377] = {.lex_state = 19}, - [1378] = {.lex_state = 19}, - [1379] = {.lex_state = 19}, - [1380] = {.lex_state = 19}, - [1381] = {.lex_state = 19}, - [1382] = {.lex_state = 19}, - [1383] = {.lex_state = 19}, - [1384] = {.lex_state = 72}, - [1385] = {.lex_state = 19}, - [1386] = {.lex_state = 19}, - [1387] = {.lex_state = 72}, - [1388] = {.lex_state = 10, .external_lex_state = 7}, - [1389] = {.lex_state = 72}, - [1390] = {.lex_state = 72}, - [1391] = {.lex_state = 72}, - [1392] = {.lex_state = 72}, - [1393] = {.lex_state = 72}, - [1394] = {.lex_state = 3, .external_lex_state = 3}, - [1395] = {.lex_state = 72}, - [1396] = {.lex_state = 3, .external_lex_state = 3}, - [1397] = {.lex_state = 72}, - [1398] = {.lex_state = 72}, - [1399] = {.lex_state = 3, .external_lex_state = 3}, - [1400] = {.lex_state = 3, .external_lex_state = 3}, - [1401] = {.lex_state = 3, .external_lex_state = 3}, - [1402] = {.lex_state = 72}, - [1403] = {.lex_state = 3, .external_lex_state = 3}, - [1404] = {.lex_state = 3, .external_lex_state = 3}, - [1405] = {.lex_state = 3, .external_lex_state = 3}, - [1406] = {.lex_state = 70}, - [1407] = {.lex_state = 3, .external_lex_state = 3}, - [1408] = {.lex_state = 72}, - [1409] = {.lex_state = 3, .external_lex_state = 3}, - [1410] = {.lex_state = 70}, - [1411] = {.lex_state = 70}, - [1412] = {.lex_state = 3, .external_lex_state = 3}, - [1413] = {.lex_state = 70}, - [1414] = {.lex_state = 70}, - [1415] = {.lex_state = 72}, - [1416] = {.lex_state = 70}, - [1417] = {.lex_state = 72}, - [1418] = {.lex_state = 70}, - [1419] = {.lex_state = 10, .external_lex_state = 8}, - [1420] = {.lex_state = 72}, - [1421] = {.lex_state = 3, .external_lex_state = 4}, - [1422] = {.lex_state = 70}, - [1423] = {.lex_state = 72}, - [1424] = {.lex_state = 10, .external_lex_state = 8}, - [1425] = {.lex_state = 70}, - [1426] = {.lex_state = 72}, - [1427] = {.lex_state = 72}, - [1428] = {.lex_state = 72}, - [1429] = {.lex_state = 72}, - [1430] = {.lex_state = 72}, - [1431] = {.lex_state = 72}, - [1432] = {.lex_state = 72}, - [1433] = {.lex_state = 72}, - [1434] = {.lex_state = 72}, - [1435] = {.lex_state = 72}, - [1436] = {.lex_state = 70}, - [1437] = {.lex_state = 72}, - [1438] = {.lex_state = 72}, - [1439] = {.lex_state = 72}, - [1440] = {.lex_state = 72}, - [1441] = {.lex_state = 72}, - [1442] = {.lex_state = 72}, - [1443] = {.lex_state = 72}, - [1444] = {.lex_state = 72}, - [1445] = {.lex_state = 10, .external_lex_state = 9}, - [1446] = {.lex_state = 72}, - [1447] = {.lex_state = 72}, - [1448] = {.lex_state = 70}, - [1449] = {.lex_state = 72}, - [1450] = {.lex_state = 72}, - [1451] = {.lex_state = 72}, - [1452] = {.lex_state = 70}, - [1453] = {.lex_state = 72}, - [1454] = {.lex_state = 72}, - [1455] = {.lex_state = 72}, - [1456] = {.lex_state = 72}, - [1457] = {.lex_state = 72}, - [1458] = {.lex_state = 70}, - [1459] = {.lex_state = 70}, - [1460] = {.lex_state = 72}, - [1461] = {.lex_state = 72}, - [1462] = {.lex_state = 70}, - [1463] = {.lex_state = 72}, - [1464] = {.lex_state = 70}, - [1465] = {.lex_state = 72}, - [1466] = {.lex_state = 72}, - [1467] = {.lex_state = 70}, - [1468] = {.lex_state = 70}, - [1469] = {.lex_state = 72}, - [1470] = {.lex_state = 70}, - [1471] = {.lex_state = 72}, - [1472] = {.lex_state = 72}, - [1473] = {.lex_state = 72}, - [1474] = {.lex_state = 72}, - [1475] = {.lex_state = 70}, - [1476] = {.lex_state = 72}, - [1477] = {.lex_state = 72}, - [1478] = {.lex_state = 72}, - [1479] = {.lex_state = 72}, - [1480] = {.lex_state = 10, .external_lex_state = 9}, - [1481] = {.lex_state = 72}, - [1482] = {.lex_state = 70}, - [1483] = {.lex_state = 72}, - [1484] = {.lex_state = 72}, - [1485] = {.lex_state = 72}, - [1486] = {.lex_state = 70}, - [1487] = {.lex_state = 70}, - [1488] = {.lex_state = 70}, - [1489] = {.lex_state = 21, .external_lex_state = 4}, - [1490] = {.lex_state = 70}, - [1491] = {.lex_state = 70}, - [1492] = {.lex_state = 70}, - [1493] = {.lex_state = 70}, - [1494] = {.lex_state = 70, .external_lex_state = 2}, - [1495] = {.lex_state = 70}, - [1496] = {.lex_state = 70}, - [1497] = {.lex_state = 70}, - [1498] = {.lex_state = 70}, - [1499] = {.lex_state = 70}, - [1500] = {.lex_state = 10, .external_lex_state = 5}, - [1501] = {.lex_state = 70}, - [1502] = {.lex_state = 70}, - [1503] = {.lex_state = 10, .external_lex_state = 5}, - [1504] = {.lex_state = 70}, - [1505] = {.lex_state = 70, .external_lex_state = 2}, - [1506] = {.lex_state = 70, .external_lex_state = 2}, - [1507] = {.lex_state = 9}, - [1508] = {.lex_state = 70}, - [1509] = {.lex_state = 70}, - [1510] = {.lex_state = 70}, - [1511] = {.lex_state = 10, .external_lex_state = 5}, - [1512] = {.lex_state = 70}, - [1513] = {.lex_state = 72}, - [1514] = {.lex_state = 72}, - [1515] = {.lex_state = 10, .external_lex_state = 5}, - [1516] = {.lex_state = 72}, - [1517] = {.lex_state = 70}, - [1518] = {.lex_state = 70}, - [1519] = {.lex_state = 70}, - [1520] = {.lex_state = 70}, - [1521] = {.lex_state = 70}, - [1522] = {.lex_state = 70}, - [1523] = {.lex_state = 9}, - [1524] = {.lex_state = 70}, - [1525] = {.lex_state = 70}, - [1526] = {.lex_state = 70}, - [1527] = {.lex_state = 10, .external_lex_state = 5}, - [1528] = {.lex_state = 72}, - [1529] = {.lex_state = 9}, - [1530] = {.lex_state = 10, .external_lex_state = 5}, - [1531] = {.lex_state = 70}, - [1532] = {.lex_state = 70}, - [1533] = {.lex_state = 70, .external_lex_state = 2}, - [1534] = {.lex_state = 10, .external_lex_state = 5}, - [1535] = {.lex_state = 10, .external_lex_state = 5}, - [1536] = {.lex_state = 10, .external_lex_state = 5}, - [1537] = {.lex_state = 70}, - [1538] = {.lex_state = 10, .external_lex_state = 5}, - [1539] = {.lex_state = 72}, - [1540] = {.lex_state = 70}, - [1541] = {.lex_state = 70}, - [1542] = {.lex_state = 70}, - [1543] = {.lex_state = 70}, - [1544] = {.lex_state = 10, .external_lex_state = 5}, - [1545] = {.lex_state = 70}, - [1546] = {.lex_state = 70}, - [1547] = {.lex_state = 70}, - [1548] = {.lex_state = 70}, - [1549] = {.lex_state = 70}, - [1550] = {.lex_state = 70, .external_lex_state = 2}, - [1551] = {.lex_state = 70}, - [1552] = {.lex_state = 70}, - [1553] = {.lex_state = 71, .external_lex_state = 10}, - [1554] = {.lex_state = 70}, - [1555] = {.lex_state = 70}, - [1556] = {.lex_state = 70}, - [1557] = {.lex_state = 70}, - [1558] = {.lex_state = 70}, - [1559] = {.lex_state = 70}, - [1560] = {.lex_state = 10, .external_lex_state = 7}, - [1561] = {.lex_state = 10, .external_lex_state = 7}, - [1562] = {.lex_state = 10, .external_lex_state = 7}, - [1563] = {.lex_state = 70}, - [1564] = {.lex_state = 10, .external_lex_state = 7}, - [1565] = {.lex_state = 10, .external_lex_state = 7}, - [1566] = {.lex_state = 72}, - [1567] = {.lex_state = 70}, - [1568] = {.lex_state = 70}, - [1569] = {.lex_state = 72}, - [1570] = {.lex_state = 70}, - [1571] = {.lex_state = 70, .external_lex_state = 2}, - [1572] = {.lex_state = 70}, - [1573] = {.lex_state = 70}, - [1574] = {.lex_state = 70}, - [1575] = {.lex_state = 72}, - [1576] = {.lex_state = 70}, - [1577] = {.lex_state = 72}, - [1578] = {.lex_state = 70}, - [1579] = {.lex_state = 70}, - [1580] = {.lex_state = 70}, - [1581] = {.lex_state = 70}, - [1582] = {.lex_state = 70}, - [1583] = {.lex_state = 72}, - [1584] = {.lex_state = 70}, - [1585] = {.lex_state = 70}, - [1586] = {.lex_state = 70}, - [1587] = {.lex_state = 70}, - [1588] = {.lex_state = 70}, - [1589] = {.lex_state = 72}, - [1590] = {.lex_state = 70}, - [1591] = {.lex_state = 70}, - [1592] = {.lex_state = 70}, - [1593] = {.lex_state = 70, .external_lex_state = 2}, - [1594] = {.lex_state = 72}, - [1595] = {.lex_state = 10, .external_lex_state = 7}, - [1596] = {.lex_state = 72}, - [1597] = {.lex_state = 70}, - [1598] = {.lex_state = 72}, - [1599] = {.lex_state = 70}, - [1600] = {.lex_state = 70}, - [1601] = {.lex_state = 70}, - [1602] = {.lex_state = 10, .external_lex_state = 7}, - [1603] = {.lex_state = 70}, - [1604] = {.lex_state = 10, .external_lex_state = 7}, - [1605] = {.lex_state = 10, .external_lex_state = 7}, - [1606] = {.lex_state = 72}, - [1607] = {.lex_state = 70}, - [1608] = {.lex_state = 70}, - [1609] = {.lex_state = 70}, - [1610] = {.lex_state = 10, .external_lex_state = 7}, - [1611] = {.lex_state = 72}, - [1612] = {.lex_state = 72}, - [1613] = {.lex_state = 70}, - [1614] = {.lex_state = 70}, - [1615] = {.lex_state = 70}, - [1616] = {.lex_state = 70}, - [1617] = {.lex_state = 70}, - [1618] = {.lex_state = 70}, - [1619] = {.lex_state = 70}, - [1620] = {.lex_state = 70, .external_lex_state = 2}, - [1621] = {.lex_state = 70}, - [1622] = {.lex_state = 5, .external_lex_state = 11}, - [1623] = {.lex_state = 70}, - [1624] = {.lex_state = 70}, - [1625] = {.lex_state = 70, .external_lex_state = 2}, - [1626] = {.lex_state = 70, .external_lex_state = 2}, - [1627] = {.lex_state = 70, .external_lex_state = 2}, - [1628] = {.lex_state = 70}, - [1629] = {.lex_state = 70, .external_lex_state = 2}, - [1630] = {.lex_state = 70, .external_lex_state = 2}, - [1631] = {.lex_state = 70, .external_lex_state = 2}, - [1632] = {.lex_state = 70, .external_lex_state = 2}, - [1633] = {.lex_state = 70}, - [1634] = {.lex_state = 70}, - [1635] = {.lex_state = 5, .external_lex_state = 12}, - [1636] = {.lex_state = 70, .external_lex_state = 2}, - [1637] = {.lex_state = 70}, - [1638] = {.lex_state = 70}, - [1639] = {.lex_state = 71}, - [1640] = {.lex_state = 72}, - [1641] = {.lex_state = 70}, - [1642] = {.lex_state = 70, .external_lex_state = 2}, - [1643] = {.lex_state = 70}, - [1644] = {.lex_state = 70, .external_lex_state = 2}, - [1645] = {.lex_state = 70}, - [1646] = {.lex_state = 72}, - [1647] = {.lex_state = 70, .external_lex_state = 2}, - [1648] = {.lex_state = 70}, - [1649] = {.lex_state = 70, .external_lex_state = 2}, - [1650] = {.lex_state = 70}, - [1651] = {.lex_state = 70}, - [1652] = {.lex_state = 70}, - [1653] = {.lex_state = 70, .external_lex_state = 2}, - [1654] = {.lex_state = 70, .external_lex_state = 2}, - [1655] = {.lex_state = 70}, - [1656] = {.lex_state = 70}, - [1657] = {.lex_state = 70}, - [1658] = {.lex_state = 5, .external_lex_state = 11}, - [1659] = {.lex_state = 70}, - [1660] = {.lex_state = 70, .external_lex_state = 2}, - [1661] = {.lex_state = 70, .external_lex_state = 2}, - [1662] = {.lex_state = 70, .external_lex_state = 2}, - [1663] = {.lex_state = 72}, - [1664] = {.lex_state = 70}, - [1665] = {.lex_state = 70}, - [1666] = {.lex_state = 5, .external_lex_state = 11}, - [1667] = {.lex_state = 70}, - [1668] = {.lex_state = 70}, - [1669] = {.lex_state = 5, .external_lex_state = 11}, - [1670] = {.lex_state = 72}, - [1671] = {.lex_state = 70}, - [1672] = {.lex_state = 70, .external_lex_state = 2}, - [1673] = {.lex_state = 70, .external_lex_state = 2}, - [1674] = {.lex_state = 72}, - [1675] = {.lex_state = 70}, - [1676] = {.lex_state = 70}, - [1677] = {.lex_state = 70}, - [1678] = {.lex_state = 70, .external_lex_state = 2}, - [1679] = {.lex_state = 70}, - [1680] = {.lex_state = 70, .external_lex_state = 2}, - [1681] = {.lex_state = 70, .external_lex_state = 2}, - [1682] = {.lex_state = 70}, - [1683] = {.lex_state = 70, .external_lex_state = 2}, - [1684] = {.lex_state = 70}, - [1685] = {.lex_state = 70}, - [1686] = {.lex_state = 5, .external_lex_state = 11}, - [1687] = {.lex_state = 70}, - [1688] = {.lex_state = 70}, - [1689] = {.lex_state = 70}, - [1690] = {.lex_state = 5, .external_lex_state = 11}, - [1691] = {.lex_state = 70, .external_lex_state = 2}, - [1692] = {.lex_state = 70}, - [1693] = {.lex_state = 72}, - [1694] = {.lex_state = 72}, - [1695] = {.lex_state = 70}, - [1696] = {.lex_state = 70}, - [1697] = {.lex_state = 70}, - [1698] = {.lex_state = 70}, - [1699] = {.lex_state = 70}, - [1700] = {.lex_state = 70}, - [1701] = {.lex_state = 70, .external_lex_state = 2}, - [1702] = {.lex_state = 71, .external_lex_state = 10}, - [1703] = {.lex_state = 70, .external_lex_state = 2}, - [1704] = {.lex_state = 70}, - [1705] = {.lex_state = 70}, - [1706] = {.lex_state = 70}, - [1707] = {.lex_state = 71, .external_lex_state = 10}, - [1708] = {.lex_state = 70}, - [1709] = {.lex_state = 70, .external_lex_state = 2}, - [1710] = {.lex_state = 70}, - [1711] = {.lex_state = 70}, - [1712] = {.lex_state = 70}, - [1713] = {.lex_state = 71}, - [1714] = {.lex_state = 70}, - [1715] = {.lex_state = 70, .external_lex_state = 2}, - [1716] = {.lex_state = 70, .external_lex_state = 2}, - [1717] = {.lex_state = 5, .external_lex_state = 12}, - [1718] = {.lex_state = 70, .external_lex_state = 2}, - [1719] = {.lex_state = 71, .external_lex_state = 10}, - [1720] = {.lex_state = 70}, - [1721] = {.lex_state = 70}, - [1722] = {.lex_state = 70}, - [1723] = {.lex_state = 70}, - [1724] = {.lex_state = 70, .external_lex_state = 2}, - [1725] = {.lex_state = 70, .external_lex_state = 2}, - [1726] = {.lex_state = 70, .external_lex_state = 2}, - [1727] = {.lex_state = 70}, - [1728] = {.lex_state = 70}, - [1729] = {.lex_state = 70}, - [1730] = {.lex_state = 70}, - [1731] = {.lex_state = 70, .external_lex_state = 2}, - [1732] = {.lex_state = 70}, - [1733] = {.lex_state = 72}, - [1734] = {.lex_state = 70}, - [1735] = {.lex_state = 70}, - [1736] = {.lex_state = 70, .external_lex_state = 2}, - [1737] = {.lex_state = 16}, - [1738] = {.lex_state = 70, .external_lex_state = 2}, - [1739] = {.lex_state = 70, .external_lex_state = 2}, - [1740] = {.lex_state = 70, .external_lex_state = 2}, - [1741] = {.lex_state = 70, .external_lex_state = 2}, - [1742] = {.lex_state = 70, .external_lex_state = 2}, - [1743] = {.lex_state = 70, .external_lex_state = 2}, - [1744] = {.lex_state = 70, .external_lex_state = 2}, - [1745] = {.lex_state = 70}, - [1746] = {.lex_state = 70}, - [1747] = {.lex_state = 70, .external_lex_state = 2}, - [1748] = {.lex_state = 70}, - [1749] = {.lex_state = 5, .external_lex_state = 11}, - [1750] = {.lex_state = 70}, - [1751] = {.lex_state = 70, .external_lex_state = 2}, - [1752] = {.lex_state = 70}, - [1753] = {.lex_state = 5, .external_lex_state = 11}, - [1754] = {.lex_state = 70, .external_lex_state = 2}, - [1755] = {.lex_state = 72}, - [1756] = {.lex_state = 70}, - [1757] = {.lex_state = 70}, - [1758] = {.lex_state = 70}, - [1759] = {.lex_state = 70, .external_lex_state = 2}, - [1760] = {.lex_state = 70}, - [1761] = {.lex_state = 70}, - [1762] = {.lex_state = 70}, - [1763] = {.lex_state = 70}, - [1764] = {.lex_state = 70}, - [1765] = {.lex_state = 70}, - [1766] = {.lex_state = 72}, - [1767] = {.lex_state = 70}, - [1768] = {.lex_state = 70}, - [1769] = {.lex_state = 70, .external_lex_state = 2}, - [1770] = {.lex_state = 70, .external_lex_state = 2}, - [1771] = {.lex_state = 70, .external_lex_state = 2}, - [1772] = {.lex_state = 70, .external_lex_state = 2}, - [1773] = {.lex_state = 70, .external_lex_state = 2}, - [1774] = {.lex_state = 70, .external_lex_state = 2}, - [1775] = {.lex_state = 70}, - [1776] = {.lex_state = 70}, - [1777] = {.lex_state = 70}, - [1778] = {.lex_state = 70, .external_lex_state = 2}, - [1779] = {.lex_state = 70}, - [1780] = {.lex_state = 70}, - [1781] = {.lex_state = 70}, - [1782] = {.lex_state = 70}, - [1783] = {.lex_state = 70, .external_lex_state = 2}, - [1784] = {.lex_state = 70}, - [1785] = {.lex_state = 70}, - [1786] = {.lex_state = 70}, - [1787] = {.lex_state = 70}, - [1788] = {.lex_state = 70}, - [1789] = {.lex_state = 70}, - [1790] = {.lex_state = 70}, - [1791] = {.lex_state = 70, .external_lex_state = 2}, - [1792] = {.lex_state = 71}, - [1793] = {.lex_state = 70}, - [1794] = {.lex_state = 5, .external_lex_state = 12}, - [1795] = {.lex_state = 70}, - [1796] = {.lex_state = 70, .external_lex_state = 2}, - [1797] = {.lex_state = 70, .external_lex_state = 2}, - [1798] = {.lex_state = 70}, - [1799] = {.lex_state = 70}, - [1800] = {.lex_state = 70}, - [1801] = {.lex_state = 70, .external_lex_state = 2}, - [1802] = {.lex_state = 70, .external_lex_state = 2}, - [1803] = {.lex_state = 70, .external_lex_state = 2}, - [1804] = {.lex_state = 5, .external_lex_state = 11}, - [1805] = {.lex_state = 5, .external_lex_state = 11}, - [1806] = {.lex_state = 5, .external_lex_state = 11}, - [1807] = {.lex_state = 70}, - [1808] = {.lex_state = 70, .external_lex_state = 2}, - [1809] = {.lex_state = 70}, - [1810] = {.lex_state = 70}, - [1811] = {.lex_state = 70}, - [1812] = {.lex_state = 70}, - [1813] = {.lex_state = 70, .external_lex_state = 2}, - [1814] = {.lex_state = 70}, - [1815] = {.lex_state = 70}, - [1816] = {.lex_state = 70}, - [1817] = {.lex_state = 70}, - [1818] = {.lex_state = 70, .external_lex_state = 2}, - [1819] = {.lex_state = 72}, - [1820] = {.lex_state = 70, .external_lex_state = 2}, - [1821] = {.lex_state = 70, .external_lex_state = 2}, - [1822] = {.lex_state = 70, .external_lex_state = 2}, - [1823] = {.lex_state = 70, .external_lex_state = 2}, - [1824] = {.lex_state = 70, .external_lex_state = 2}, - [1825] = {.lex_state = 70, .external_lex_state = 2}, - [1826] = {.lex_state = 70}, - [1827] = {.lex_state = 70}, - [1828] = {.lex_state = 70, .external_lex_state = 2}, - [1829] = {.lex_state = 70}, - [1830] = {.lex_state = 70, .external_lex_state = 2}, - [1831] = {.lex_state = 70}, - [1832] = {.lex_state = 70, .external_lex_state = 2}, - [1833] = {.lex_state = 70}, - [1834] = {.lex_state = 70}, - [1835] = {.lex_state = 16}, - [1836] = {.lex_state = 70, .external_lex_state = 2}, - [1837] = {.lex_state = 70}, - [1838] = {.lex_state = 70, .external_lex_state = 2}, - [1839] = {.lex_state = 70}, - [1840] = {.lex_state = 70}, - [1841] = {.lex_state = 70}, - [1842] = {.lex_state = 70}, - [1843] = {.lex_state = 70}, - [1844] = {.lex_state = 70}, - [1845] = {.lex_state = 70, .external_lex_state = 2}, - [1846] = {.lex_state = 70}, - [1847] = {.lex_state = 70, .external_lex_state = 2}, - [1848] = {.lex_state = 70, .external_lex_state = 2}, - [1849] = {.lex_state = 72}, - [1850] = {.lex_state = 70}, - [1851] = {.lex_state = 70, .external_lex_state = 2}, - [1852] = {.lex_state = 70, .external_lex_state = 2}, - [1853] = {.lex_state = 70}, - [1854] = {.lex_state = 5, .external_lex_state = 11}, - [1855] = {.lex_state = 70}, - [1856] = {.lex_state = 70}, - [1857] = {.lex_state = 70, .external_lex_state = 2}, - [1858] = {.lex_state = 70}, - [1859] = {.lex_state = 70, .external_lex_state = 2}, - [1860] = {.lex_state = 70, .external_lex_state = 2}, - [1861] = {.lex_state = 70, .external_lex_state = 2}, - [1862] = {.lex_state = 70}, - [1863] = {.lex_state = 70}, - [1864] = {.lex_state = 70}, - [1865] = {.lex_state = 70}, - [1866] = {.lex_state = 70}, - [1867] = {.lex_state = 70, .external_lex_state = 2}, - [1868] = {.lex_state = 70}, - [1869] = {.lex_state = 70}, - [1870] = {.lex_state = 70}, - [1871] = {.lex_state = 70}, - [1872] = {.lex_state = 70}, - [1873] = {.lex_state = 70}, - [1874] = {.lex_state = 70, .external_lex_state = 2}, - [1875] = {.lex_state = 70}, - [1876] = {.lex_state = 70}, - [1877] = {.lex_state = 70}, - [1878] = {.lex_state = 70}, - [1879] = {.lex_state = 70}, - [1880] = {.lex_state = 70}, - [1881] = {.lex_state = 70}, - [1882] = {.lex_state = 72}, - [1883] = {.lex_state = 70}, - [1884] = {.lex_state = 70}, - [1885] = {.lex_state = 70}, - [1886] = {.lex_state = 70}, - [1887] = {.lex_state = 70}, - [1888] = {.lex_state = 70}, - [1889] = {.lex_state = 70}, - [1890] = {.lex_state = 70}, - [1891] = {.lex_state = 70}, - [1892] = {.lex_state = 70}, - [1893] = {.lex_state = 70}, - [1894] = {.lex_state = 70}, - [1895] = {.lex_state = 70}, - [1896] = {.lex_state = 70}, - [1897] = {.lex_state = 70, .external_lex_state = 2}, - [1898] = {.lex_state = 70}, - [1899] = {.lex_state = 70}, - [1900] = {.lex_state = 70}, - [1901] = {.lex_state = 70}, - [1902] = {.lex_state = 70}, - [1903] = {.lex_state = 70}, - [1904] = {.lex_state = 70}, - [1905] = {.lex_state = 5, .external_lex_state = 11}, - [1906] = {.lex_state = 70}, - [1907] = {.lex_state = 70}, - [1908] = {.lex_state = 70}, - [1909] = {.lex_state = 70}, - [1910] = {.lex_state = 70}, - [1911] = {.lex_state = 70}, - [1912] = {.lex_state = 70}, - [1913] = {.lex_state = 70}, - [1914] = {.lex_state = 70}, - [1915] = {.lex_state = 70}, - [1916] = {.lex_state = 70}, - [1917] = {.lex_state = 70}, - [1918] = {.lex_state = 70, .external_lex_state = 2}, - [1919] = {.lex_state = 70}, - [1920] = {.lex_state = 70}, - [1921] = {.lex_state = 70}, - [1922] = {.lex_state = 70}, - [1923] = {.lex_state = 70}, - [1924] = {.lex_state = 70}, - [1925] = {.lex_state = 70}, - [1926] = {.lex_state = 70, .external_lex_state = 2}, - [1927] = {.lex_state = 70, .external_lex_state = 2}, - [1928] = {.lex_state = 70}, - [1929] = {.lex_state = 70, .external_lex_state = 13}, - [1930] = {.lex_state = 70, .external_lex_state = 2}, - [1931] = {.lex_state = 70}, - [1932] = {.lex_state = 70, .external_lex_state = 2}, - [1933] = {.lex_state = 70}, - [1934] = {.lex_state = 70}, - [1935] = {.lex_state = 70}, - [1936] = {.lex_state = 70, .external_lex_state = 2}, - [1937] = {.lex_state = 70}, - [1938] = {.lex_state = 70, .external_lex_state = 2}, - [1939] = {.lex_state = 70}, - [1940] = {.lex_state = 70}, - [1941] = {.lex_state = 70}, - [1942] = {.lex_state = 70}, - [1943] = {.lex_state = 70}, - [1944] = {.lex_state = 70}, - [1945] = {.lex_state = 70}, - [1946] = {.lex_state = 70}, - [1947] = {.lex_state = 70}, - [1948] = {.lex_state = 70}, - [1949] = {.lex_state = 70}, - [1950] = {.lex_state = 70}, - [1951] = {.lex_state = 70, .external_lex_state = 2}, - [1952] = {.lex_state = 70}, - [1953] = {.lex_state = 70, .external_lex_state = 2}, - [1954] = {.lex_state = 72}, - [1955] = {.lex_state = 70}, - [1956] = {.lex_state = 70}, - [1957] = {.lex_state = 70}, - [1958] = {.lex_state = 70}, - [1959] = {.lex_state = 72}, - [1960] = {.lex_state = 70}, - [1961] = {.lex_state = 70}, - [1962] = {.lex_state = 70}, - [1963] = {.lex_state = 70}, - [1964] = {.lex_state = 70}, - [1965] = {.lex_state = 70, .external_lex_state = 2}, - [1966] = {.lex_state = 70}, - [1967] = {.lex_state = 70}, - [1968] = {.lex_state = 70}, - [1969] = {.lex_state = 70}, - [1970] = {.lex_state = 70}, - [1971] = {.lex_state = 70}, - [1972] = {.lex_state = 70}, - [1973] = {.lex_state = 70}, - [1974] = {.lex_state = 70}, - [1975] = {.lex_state = 70, .external_lex_state = 2}, - [1976] = {.lex_state = 70}, - [1977] = {.lex_state = 70}, - [1978] = {.lex_state = 70}, - [1979] = {.lex_state = 70}, - [1980] = {.lex_state = 70}, - [1981] = {.lex_state = 70}, - [1982] = {.lex_state = 70}, - [1983] = {.lex_state = 70}, - [1984] = {.lex_state = 70}, - [1985] = {.lex_state = 70}, - [1986] = {.lex_state = 70}, - [1987] = {.lex_state = 70}, - [1988] = {.lex_state = 70}, - [1989] = {.lex_state = 70}, - [1990] = {.lex_state = 70}, - [1991] = {.lex_state = 70}, - [1992] = {.lex_state = 70}, - [1993] = {.lex_state = 70}, - [1994] = {.lex_state = 70}, - [1995] = {.lex_state = 70}, - [1996] = {.lex_state = 70}, - [1997] = {.lex_state = 70}, - [1998] = {.lex_state = 70}, - [1999] = {.lex_state = 70}, - [2000] = {.lex_state = 70}, - [2001] = {.lex_state = 70, .external_lex_state = 2}, - [2002] = {.lex_state = 70}, - [2003] = {.lex_state = 194, .external_lex_state = 14}, - [2004] = {.lex_state = 70}, - [2005] = {.lex_state = 70}, - [2006] = {.lex_state = 70}, - [2007] = {.lex_state = 70}, - [2008] = {.lex_state = 70}, - [2009] = {.lex_state = 70}, - [2010] = {.lex_state = 70}, - [2011] = {.lex_state = 70, .external_lex_state = 13}, - [2012] = {.lex_state = 70}, - [2013] = {.lex_state = 70}, - [2014] = {.lex_state = 70}, - [2015] = {.lex_state = 70}, - [2016] = {.lex_state = 70}, - [2017] = {.lex_state = 70}, - [2018] = {.lex_state = 70}, - [2019] = {.lex_state = 70}, - [2020] = {.lex_state = 70}, - [2021] = {.lex_state = 70}, - [2022] = {.lex_state = 70}, - [2023] = {.lex_state = 70}, - [2024] = {.lex_state = 70}, - [2025] = {.lex_state = 70}, - [2026] = {.lex_state = 70}, - [2027] = {.lex_state = 70}, - [2028] = {.lex_state = 70}, - [2029] = {.lex_state = 70}, - [2030] = {.lex_state = 70}, - [2031] = {.lex_state = 70}, - [2032] = {.lex_state = 70}, - [2033] = {.lex_state = 70}, - [2034] = {.lex_state = 70}, - [2035] = {.lex_state = 70}, - [2036] = {.lex_state = 70}, - [2037] = {.lex_state = 70}, - [2038] = {.lex_state = 70}, - [2039] = {.lex_state = 70}, - [2040] = {.lex_state = 70}, - [2041] = {.lex_state = 70}, - [2042] = {.lex_state = 70}, - [2043] = {.lex_state = 70}, - [2044] = {.lex_state = 70}, - [2045] = {.lex_state = 70}, - [2046] = {.lex_state = 70}, - [2047] = {.lex_state = 70}, - [2048] = {.lex_state = 70}, - [2049] = {.lex_state = 70}, - [2050] = {.lex_state = 70}, - [2051] = {.lex_state = 70, .external_lex_state = 2}, - [2052] = {.lex_state = 70}, - [2053] = {.lex_state = 70}, - [2054] = {.lex_state = 70}, - [2055] = {.lex_state = 70}, - [2056] = {.lex_state = 70}, - [2057] = {.lex_state = 70}, - [2058] = {.lex_state = 70}, - [2059] = {.lex_state = 70}, - [2060] = {.lex_state = 70}, - [2061] = {.lex_state = 70}, - [2062] = {.lex_state = 70}, - [2063] = {.lex_state = 70}, - [2064] = {.lex_state = 70}, - [2065] = {.lex_state = 70}, - [2066] = {.lex_state = 70}, - [2067] = {.lex_state = 70}, - [2068] = {.lex_state = 72}, - [2069] = {.lex_state = 70}, - [2070] = {.lex_state = 70}, - [2071] = {.lex_state = 70}, - [2072] = {.lex_state = 70}, - [2073] = {.lex_state = 70}, - [2074] = {.lex_state = 70}, - [2075] = {.lex_state = 70}, - [2076] = {.lex_state = 70}, - [2077] = {.lex_state = 70}, - [2078] = {.lex_state = 70}, - [2079] = {.lex_state = 70}, - [2080] = {.lex_state = 70}, - [2081] = {.lex_state = 70}, - [2082] = {.lex_state = 70}, - [2083] = {.lex_state = 70}, - [2084] = {.lex_state = 70}, - [2085] = {.lex_state = 70}, - [2086] = {.lex_state = 70}, - [2087] = {.lex_state = 70}, - [2088] = {.lex_state = 70}, - [2089] = {.lex_state = 70}, - [2090] = {.lex_state = 70}, - [2091] = {.lex_state = 70}, - [2092] = {.lex_state = 70}, - [2093] = {.lex_state = 70}, - [2094] = {.lex_state = 70}, - [2095] = {.lex_state = 70}, - [2096] = {.lex_state = 70}, - [2097] = {.lex_state = 70}, - [2098] = {.lex_state = 70}, - [2099] = {.lex_state = 70}, - [2100] = {.lex_state = 70}, - [2101] = {.lex_state = 70}, - [2102] = {.lex_state = 70}, - [2103] = {.lex_state = 70}, - [2104] = {.lex_state = 70}, - [2105] = {.lex_state = 70}, - [2106] = {.lex_state = 70}, - [2107] = {.lex_state = 70}, - [2108] = {.lex_state = 70}, - [2109] = {.lex_state = 70}, - [2110] = {.lex_state = 70}, - [2111] = {.lex_state = 70}, - [2112] = {.lex_state = 70}, - [2113] = {.lex_state = 72}, - [2114] = {.lex_state = 70}, - [2115] = {.lex_state = 70}, - [2116] = {.lex_state = 70, .external_lex_state = 2}, - [2117] = {.lex_state = 70}, - [2118] = {.lex_state = 70}, - [2119] = {.lex_state = 70}, - [2120] = {.lex_state = 194, .external_lex_state = 14}, - [2121] = {.lex_state = 72, .external_lex_state = 10}, - [2122] = {.lex_state = 70}, - [2123] = {.lex_state = 70}, - [2124] = {.lex_state = 70}, - [2125] = {.lex_state = 70}, - [2126] = {.lex_state = 70}, - [2127] = {.lex_state = 70}, - [2128] = {.lex_state = 70}, - [2129] = {.lex_state = 70}, - [2130] = {.lex_state = 70}, - [2131] = {.lex_state = 70}, - [2132] = {.lex_state = 70}, - [2133] = {.lex_state = 70}, - [2134] = {.lex_state = 70}, - [2135] = {.lex_state = 70}, - [2136] = {.lex_state = 70}, - [2137] = {.lex_state = 70}, - [2138] = {.lex_state = 70, .external_lex_state = 2}, - [2139] = {.lex_state = 70}, - [2140] = {.lex_state = 70}, - [2141] = {.lex_state = 70}, - [2142] = {.lex_state = 70}, - [2143] = {.lex_state = 70}, - [2144] = {.lex_state = 70}, - [2145] = {.lex_state = 70}, - [2146] = {.lex_state = 70}, - [2147] = {.lex_state = 70}, - [2148] = {.lex_state = 70}, - [2149] = {.lex_state = 70, .external_lex_state = 2}, - [2150] = {.lex_state = 70}, - [2151] = {.lex_state = 70, .external_lex_state = 2}, - [2152] = {.lex_state = 70}, - [2153] = {.lex_state = 70}, - [2154] = {.lex_state = 70, .external_lex_state = 2}, - [2155] = {.lex_state = 70, .external_lex_state = 2}, - [2156] = {.lex_state = 70}, - [2157] = {.lex_state = 70}, - [2158] = {.lex_state = 70, .external_lex_state = 2}, - [2159] = {.lex_state = 70, .external_lex_state = 2}, - [2160] = {.lex_state = 70, .external_lex_state = 2}, - [2161] = {.lex_state = 70}, - [2162] = {.lex_state = 70}, - [2163] = {.lex_state = 70}, - [2164] = {.lex_state = 70}, - [2165] = {.lex_state = 70, .external_lex_state = 2}, - [2166] = {.lex_state = 70, .external_lex_state = 2}, - [2167] = {.lex_state = 70}, - [2168] = {.lex_state = 70}, - [2169] = {.lex_state = 70, .external_lex_state = 2}, - [2170] = {.lex_state = 70, .external_lex_state = 2}, - [2171] = {.lex_state = 70}, - [2172] = {.lex_state = 70}, - [2173] = {.lex_state = 70, .external_lex_state = 2}, - [2174] = {.lex_state = 70}, - [2175] = {.lex_state = 70}, - [2176] = {.lex_state = 70}, - [2177] = {.lex_state = 70}, - [2178] = {.lex_state = 70}, - [2179] = {.lex_state = 70, .external_lex_state = 2}, - [2180] = {.lex_state = 70}, - [2181] = {.lex_state = 70}, - [2182] = {.lex_state = 70}, - [2183] = {.lex_state = 70, .external_lex_state = 2}, - [2184] = {.lex_state = 70}, - [2185] = {.lex_state = 70}, - [2186] = {.lex_state = 70}, - [2187] = {.lex_state = 70}, - [2188] = {.lex_state = 70}, - [2189] = {.lex_state = 70, .external_lex_state = 2}, - [2190] = {.lex_state = 70}, - [2191] = {.lex_state = 70, .external_lex_state = 2}, - [2192] = {.lex_state = 70}, - [2193] = {.lex_state = 70}, - [2194] = {.lex_state = 70}, - [2195] = {.lex_state = 70}, - [2196] = {.lex_state = 70, .external_lex_state = 2}, - [2197] = {.lex_state = 70}, - [2198] = {.lex_state = 70}, - [2199] = {.lex_state = 70}, - [2200] = {.lex_state = 70}, - [2201] = {.lex_state = 70}, - [2202] = {.lex_state = 70}, - [2203] = {.lex_state = 70, .external_lex_state = 2}, - [2204] = {.lex_state = 70}, - [2205] = {.lex_state = 70}, - [2206] = {.lex_state = 70}, - [2207] = {.lex_state = 70}, - [2208] = {.lex_state = 70}, - [2209] = {.lex_state = 70}, - [2210] = {.lex_state = 70, .external_lex_state = 2}, - [2211] = {.lex_state = 70}, - [2212] = {.lex_state = 70, .external_lex_state = 2}, - [2213] = {.lex_state = 70}, - [2214] = {.lex_state = 70, .external_lex_state = 2}, - [2215] = {.lex_state = 70, .external_lex_state = 2}, - [2216] = {.lex_state = 70, .external_lex_state = 2}, - [2217] = {.lex_state = 70}, - [2218] = {.lex_state = 70}, - [2219] = {.lex_state = 70}, - [2220] = {.lex_state = 70}, - [2221] = {.lex_state = 70, .external_lex_state = 2}, - [2222] = {.lex_state = 70, .external_lex_state = 2}, - [2223] = {.lex_state = 70}, - [2224] = {.lex_state = 70}, - [2225] = {.lex_state = 70}, - [2226] = {.lex_state = 70, .external_lex_state = 2}, - [2227] = {.lex_state = 70}, - [2228] = {.lex_state = 70}, - [2229] = {.lex_state = 70}, - [2230] = {.lex_state = 70}, - [2231] = {.lex_state = 70, .external_lex_state = 2}, - [2232] = {.lex_state = 70, .external_lex_state = 2}, - [2233] = {.lex_state = 70, .external_lex_state = 2}, - [2234] = {.lex_state = 70}, - [2235] = {.lex_state = 70, .external_lex_state = 2}, - [2236] = {.lex_state = 70}, - [2237] = {.lex_state = 70}, - [2238] = {.lex_state = 70}, - [2239] = {.lex_state = 70}, - [2240] = {.lex_state = 70}, - [2241] = {.lex_state = 70, .external_lex_state = 2}, - [2242] = {.lex_state = 70}, - [2243] = {.lex_state = 70, .external_lex_state = 2}, - [2244] = {.lex_state = 70}, - [2245] = {.lex_state = 70}, - [2246] = {.lex_state = 70}, - [2247] = {.lex_state = 70, .external_lex_state = 2}, - [2248] = {.lex_state = 70}, - [2249] = {.lex_state = 70, .external_lex_state = 2}, - [2250] = {.lex_state = 70}, - [2251] = {.lex_state = 70}, - [2252] = {.lex_state = 70}, - [2253] = {.lex_state = 70}, - [2254] = {.lex_state = 70}, - [2255] = {.lex_state = 70}, - [2256] = {.lex_state = 70}, - [2257] = {.lex_state = 70}, - [2258] = {.lex_state = 70}, - [2259] = {.lex_state = 70}, - [2260] = {.lex_state = 70}, - [2261] = {.lex_state = 70, .external_lex_state = 2}, - [2262] = {.lex_state = 70}, - [2263] = {.lex_state = 70}, - [2264] = {.lex_state = 70}, - [2265] = {.lex_state = 70}, - [2266] = {.lex_state = 70}, - [2267] = {.lex_state = 70, .external_lex_state = 2}, - [2268] = {.lex_state = 70}, - [2269] = {.lex_state = 70, .external_lex_state = 2}, - [2270] = {.lex_state = 70}, - [2271] = {.lex_state = 70, .external_lex_state = 2}, - [2272] = {.lex_state = 70}, - [2273] = {.lex_state = 70}, - [2274] = {.lex_state = 70}, - [2275] = {.lex_state = 70}, - [2276] = {.lex_state = 70}, - [2277] = {.lex_state = 70, .external_lex_state = 2}, - [2278] = {.lex_state = 70, .external_lex_state = 2}, - [2279] = {.lex_state = 70}, - [2280] = {.lex_state = 70}, - [2281] = {.lex_state = 70}, - [2282] = {.lex_state = 70}, - [2283] = {.lex_state = 70}, - [2284] = {.lex_state = 70}, - [2285] = {.lex_state = 70}, - [2286] = {.lex_state = 70}, - [2287] = {.lex_state = 70}, - [2288] = {.lex_state = 70}, - [2289] = {.lex_state = 70}, - [2290] = {.lex_state = 70, .external_lex_state = 2}, - [2291] = {.lex_state = 70}, - [2292] = {.lex_state = 70}, - [2293] = {.lex_state = 70}, - [2294] = {.lex_state = 70, .external_lex_state = 2}, - [2295] = {.lex_state = 70}, - [2296] = {.lex_state = 70, .external_lex_state = 2}, - [2297] = {.lex_state = 70, .external_lex_state = 2}, - [2298] = {.lex_state = 70}, - [2299] = {.lex_state = 70}, - [2300] = {.lex_state = 70, .external_lex_state = 2}, - [2301] = {.lex_state = 70, .external_lex_state = 2}, - [2302] = {.lex_state = 70}, - [2303] = {.lex_state = 70}, - [2304] = {.lex_state = 70, .external_lex_state = 2}, - [2305] = {.lex_state = 70}, - [2306] = {.lex_state = 70}, - [2307] = {.lex_state = 70}, - [2308] = {.lex_state = 70}, - [2309] = {.lex_state = 70}, - [2310] = {.lex_state = 70}, - [2311] = {.lex_state = 70}, - [2312] = {.lex_state = 70}, - [2313] = {.lex_state = 70}, - [2314] = {.lex_state = 70}, - [2315] = {.lex_state = 70}, - [2316] = {.lex_state = 70, .external_lex_state = 2}, - [2317] = {.lex_state = 70}, - [2318] = {.lex_state = 70}, - [2319] = {.lex_state = 70}, - [2320] = {.lex_state = 70}, - [2321] = {.lex_state = 70}, - [2322] = {.lex_state = 70}, - [2323] = {.lex_state = 70}, - [2324] = {.lex_state = 70}, - [2325] = {.lex_state = 70}, - [2326] = {.lex_state = 70, .external_lex_state = 2}, - [2327] = {.lex_state = 70}, - [2328] = {.lex_state = 70}, - [2329] = {.lex_state = 70}, - [2330] = {.lex_state = 70}, - [2331] = {.lex_state = 70}, - [2332] = {.lex_state = 70, .external_lex_state = 2}, - [2333] = {.lex_state = 70}, - [2334] = {.lex_state = 70, .external_lex_state = 2}, - [2335] = {.lex_state = 70, .external_lex_state = 2}, - [2336] = {.lex_state = 70}, - [2337] = {.lex_state = 70}, - [2338] = {.lex_state = 70}, - [2339] = {.lex_state = 70, .external_lex_state = 2}, - [2340] = {.lex_state = 70}, - [2341] = {.lex_state = 70}, - [2342] = {.lex_state = 70}, - [2343] = {.lex_state = 70}, - [2344] = {.lex_state = 70}, - [2345] = {.lex_state = 70}, - [2346] = {.lex_state = 70}, - [2347] = {.lex_state = 70}, - [2348] = {.lex_state = 70}, - [2349] = {.lex_state = 70}, - [2350] = {.lex_state = 70}, - [2351] = {.lex_state = 70}, - [2352] = {.lex_state = 70}, - [2353] = {.lex_state = 70}, - [2354] = {.lex_state = 70}, - [2355] = {.lex_state = 70, .external_lex_state = 2}, - [2356] = {.lex_state = 70}, - [2357] = {.lex_state = 70}, - [2358] = {.lex_state = 70}, - [2359] = {.lex_state = 70}, - [2360] = {.lex_state = 70}, - [2361] = {.lex_state = 70}, - [2362] = {.lex_state = 70}, - [2363] = {.lex_state = 70}, - [2364] = {.lex_state = 70}, - [2365] = {.lex_state = 70}, - [2366] = {.lex_state = 70}, - [2367] = {.lex_state = 70}, - [2368] = {.lex_state = 70}, - [2369] = {.lex_state = 70}, - [2370] = {.lex_state = 70}, - [2371] = {.lex_state = 70}, - [2372] = {.lex_state = 70}, - [2373] = {.lex_state = 70}, - [2374] = {.lex_state = 70}, - [2375] = {.lex_state = 70}, - [2376] = {.lex_state = 70}, - [2377] = {.lex_state = 70}, - [2378] = {.lex_state = 70}, - [2379] = {.lex_state = 70}, - [2380] = {.lex_state = 70}, - [2381] = {.lex_state = 70}, - [2382] = {.lex_state = 70}, - [2383] = {.lex_state = 70}, - [2384] = {.lex_state = 70}, - [2385] = {.lex_state = 70}, - [2386] = {.lex_state = 70}, - [2387] = {.lex_state = 70}, - [2388] = {.lex_state = 70}, - [2389] = {.lex_state = 70}, - [2390] = {.lex_state = 70}, - [2391] = {.lex_state = 70}, - [2392] = {.lex_state = 70}, - [2393] = {.lex_state = 70}, - [2394] = {.lex_state = 70}, - [2395] = {.lex_state = 70}, - [2396] = {.lex_state = 9}, - [2397] = {.lex_state = 9}, - [2398] = {.lex_state = 70}, - [2399] = {.lex_state = 70}, - [2400] = {.lex_state = 70}, - [2401] = {.lex_state = 70}, - [2402] = {.lex_state = 70}, - [2403] = {.lex_state = 70}, - [2404] = {.lex_state = 70, .external_lex_state = 11}, - [2405] = {.lex_state = 70}, - [2406] = {.lex_state = 70}, - [2407] = {.lex_state = 70}, - [2408] = {.lex_state = 70}, - [2409] = {.lex_state = 70}, - [2410] = {.lex_state = 70}, - [2411] = {.lex_state = 70}, - [2412] = {.lex_state = 70}, - [2413] = {.lex_state = 70}, - [2414] = {.lex_state = 70}, - [2415] = {.lex_state = 70}, - [2416] = {.lex_state = 70}, - [2417] = {.lex_state = 70}, - [2418] = {.lex_state = 70}, - [2419] = {.lex_state = 70}, - [2420] = {.lex_state = 70, .external_lex_state = 11}, - [2421] = {.lex_state = 70}, - [2422] = {.lex_state = 70}, - [2423] = {.lex_state = 70, .external_lex_state = 11}, - [2424] = {.lex_state = 70}, - [2425] = {.lex_state = 70}, - [2426] = {.lex_state = 70}, - [2427] = {.lex_state = 70, .external_lex_state = 11}, - [2428] = {.lex_state = 70, .external_lex_state = 11}, - [2429] = {.lex_state = 70}, - [2430] = {.lex_state = 70}, - [2431] = {.lex_state = 70}, - [2432] = {.lex_state = 70}, - [2433] = {.lex_state = 70}, - [2434] = {.lex_state = 70}, - [2435] = {.lex_state = 70, .external_lex_state = 13}, - [2436] = {.lex_state = 70, .external_lex_state = 13}, - [2437] = {.lex_state = 70}, - [2438] = {.lex_state = 70}, - [2439] = {.lex_state = 70}, - [2440] = {.lex_state = 70}, - [2441] = {.lex_state = 70}, - [2442] = {.lex_state = 70}, - [2443] = {.lex_state = 70}, - [2444] = {.lex_state = 70}, - [2445] = {.lex_state = 70}, - [2446] = {.lex_state = 70}, - [2447] = {.lex_state = 70}, - [2448] = {.lex_state = 70}, - [2449] = {.lex_state = 70}, - [2450] = {.lex_state = 70}, - [2451] = {.lex_state = 70}, - [2452] = {.lex_state = 70}, - [2453] = {.lex_state = 70}, - [2454] = {.lex_state = 70}, - [2455] = {.lex_state = 70}, - [2456] = {.lex_state = 70}, - [2457] = {.lex_state = 9}, - [2458] = {.lex_state = 9}, - [2459] = {.lex_state = 70}, - [2460] = {.lex_state = 70}, - [2461] = {.lex_state = 70}, - [2462] = {.lex_state = 70}, - [2463] = {.lex_state = 70}, - [2464] = {.lex_state = 70}, - [2465] = {.lex_state = 70}, - [2466] = {.lex_state = 70}, - [2467] = {.lex_state = 70}, - [2468] = {.lex_state = 70}, - [2469] = {.lex_state = 70}, - [2470] = {.lex_state = 70}, - [2471] = {.lex_state = 70}, - [2472] = {.lex_state = 70}, - [2473] = {.lex_state = 70}, - [2474] = {.lex_state = 70}, - [2475] = {.lex_state = 70}, - [2476] = {.lex_state = 70}, - [2477] = {.lex_state = 70}, - [2478] = {.lex_state = 70}, - [2479] = {.lex_state = 70}, - [2480] = {.lex_state = 70}, - [2481] = {.lex_state = 70}, - [2482] = {.lex_state = 70}, - [2483] = {.lex_state = 70}, - [2484] = {.lex_state = 70}, - [2485] = {.lex_state = 70}, - [2486] = {.lex_state = 70}, - [2487] = {.lex_state = 70}, - [2488] = {.lex_state = 180}, - [2489] = {.lex_state = 70}, - [2490] = {.lex_state = 70, .external_lex_state = 13}, - [2491] = {.lex_state = 70, .external_lex_state = 13}, - [2492] = {.lex_state = 70}, - [2493] = {.lex_state = 70}, - [2494] = {.lex_state = 70}, - [2495] = {.lex_state = 70}, - [2496] = {.lex_state = 70}, - [2497] = {.lex_state = 70}, - [2498] = {.lex_state = 70}, - [2499] = {.lex_state = 70}, - [2500] = {.lex_state = 70}, - [2501] = {.lex_state = 70}, - [2502] = {.lex_state = 70}, - [2503] = {.lex_state = 70}, - [2504] = {.lex_state = 70}, - [2505] = {.lex_state = 70}, - [2506] = {.lex_state = 70}, - [2507] = {.lex_state = 70}, - [2508] = {.lex_state = 70}, - [2509] = {.lex_state = 70}, - [2510] = {.lex_state = 70}, - [2511] = {.lex_state = 70}, - [2512] = {.lex_state = 70}, - [2513] = {.lex_state = 70}, - [2514] = {.lex_state = 70}, - [2515] = {.lex_state = 70}, - [2516] = {.lex_state = 70}, - [2517] = {.lex_state = 70}, - [2518] = {.lex_state = 70}, - [2519] = {.lex_state = 70}, - [2520] = {.lex_state = 70}, - [2521] = {.lex_state = 70}, - [2522] = {.lex_state = 70}, - [2523] = {.lex_state = 70}, - [2524] = {.lex_state = 70}, - [2525] = {.lex_state = 70}, - [2526] = {.lex_state = 70}, - [2527] = {.lex_state = 70}, - [2528] = {.lex_state = 70}, - [2529] = {.lex_state = 70}, - [2530] = {.lex_state = 70}, - [2531] = {.lex_state = 70}, - [2532] = {.lex_state = 70}, - [2533] = {.lex_state = 70}, - [2534] = {.lex_state = 70}, - [2535] = {.lex_state = 70}, - [2536] = {.lex_state = 70}, - [2537] = {.lex_state = 70}, - [2538] = {.lex_state = 70}, - [2539] = {.lex_state = 70}, - [2540] = {.lex_state = 180}, - [2541] = {.lex_state = 70}, - [2542] = {.lex_state = 70}, - [2543] = {.lex_state = 70}, - [2544] = {.lex_state = 70}, - [2545] = {.lex_state = 70}, - [2546] = {.lex_state = 70}, - [2547] = {.lex_state = 70}, - [2548] = {.lex_state = 70}, - [2549] = {.lex_state = 70}, - [2550] = {.lex_state = 70}, - [2551] = {.lex_state = 70}, - [2552] = {.lex_state = 70}, - [2553] = {.lex_state = 70}, - [2554] = {.lex_state = 70}, - [2555] = {.lex_state = 70}, - [2556] = {.lex_state = 70}, - [2557] = {.lex_state = 70}, - [2558] = {.lex_state = 70}, - [2559] = {.lex_state = 70, .external_lex_state = 11}, - [2560] = {.lex_state = 70}, - [2561] = {.lex_state = 70}, - [2562] = {.lex_state = 70}, - [2563] = {.lex_state = 70}, - [2564] = {.lex_state = 70}, - [2565] = {.lex_state = 70}, - [2566] = {.lex_state = 70}, - [2567] = {.lex_state = 70}, - [2568] = {.lex_state = 70, .external_lex_state = 11}, - [2569] = {.lex_state = 70}, - [2570] = {.lex_state = 70}, - [2571] = {.lex_state = 70}, - [2572] = {.lex_state = 70}, - [2573] = {.lex_state = 70}, - [2574] = {.lex_state = 70}, - [2575] = {.lex_state = 70}, - [2576] = {.lex_state = 70}, - [2577] = {.lex_state = 70}, - [2578] = {.lex_state = 70}, - [2579] = {.lex_state = 70}, - [2580] = {.lex_state = 70}, - [2581] = {.lex_state = 70}, - [2582] = {.lex_state = 70}, - [2583] = {.lex_state = 70}, - [2584] = {.lex_state = 70}, - [2585] = {.lex_state = 70}, - [2586] = {(TSStateId)(-1)}, - [2587] = {(TSStateId)(-1)}, -}; - -enum { - ts_external_token__automatic_semicolon = 0, - ts_external_token_encapsed_string_chars = 1, - ts_external_token_encapsed_string_chars_after_variable = 2, - ts_external_token_execution_string_chars = 3, - ts_external_token_execution_string_chars_after_variable = 4, - ts_external_token_encapsed_string_chars_heredoc = 5, - ts_external_token_encapsed_string_chars_after_variable_heredoc = 6, - ts_external_token__eof = 7, - ts_external_token_heredoc_start = 8, - ts_external_token_heredoc_end = 9, - ts_external_token_nowdoc_string = 10, - ts_external_token_sentinel_error = 11, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, - [ts_external_token_encapsed_string_chars] = sym_encapsed_string_chars, - [ts_external_token_encapsed_string_chars_after_variable] = sym_encapsed_string_chars_after_variable, - [ts_external_token_execution_string_chars] = sym_execution_string_chars, - [ts_external_token_execution_string_chars_after_variable] = sym_execution_string_chars_after_variable, - [ts_external_token_encapsed_string_chars_heredoc] = sym_encapsed_string_chars_heredoc, - [ts_external_token_encapsed_string_chars_after_variable_heredoc] = sym_encapsed_string_chars_after_variable_heredoc, - [ts_external_token__eof] = sym__eof, - [ts_external_token_heredoc_start] = sym_heredoc_start, - [ts_external_token_heredoc_end] = sym_heredoc_end, - [ts_external_token_nowdoc_string] = sym_nowdoc_string, - [ts_external_token_sentinel_error] = sym_sentinel_error, -}; - -static const bool ts_external_scanner_states[15][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token_encapsed_string_chars] = true, - [ts_external_token_encapsed_string_chars_after_variable] = true, - [ts_external_token_execution_string_chars] = true, - [ts_external_token_execution_string_chars_after_variable] = true, - [ts_external_token_encapsed_string_chars_heredoc] = true, - [ts_external_token_encapsed_string_chars_after_variable_heredoc] = true, - [ts_external_token__eof] = true, - [ts_external_token_heredoc_start] = true, - [ts_external_token_heredoc_end] = true, - [ts_external_token_nowdoc_string] = true, - [ts_external_token_sentinel_error] = true, - }, - [2] = { - [ts_external_token__automatic_semicolon] = true, - }, - [3] = { - [ts_external_token_encapsed_string_chars_heredoc] = true, - [ts_external_token_heredoc_end] = true, - }, - [4] = { - [ts_external_token_encapsed_string_chars_heredoc] = true, - }, - [5] = { - [ts_external_token_encapsed_string_chars] = true, - }, - [6] = { - [ts_external_token_encapsed_string_chars_heredoc] = true, - [ts_external_token_encapsed_string_chars_after_variable_heredoc] = true, - [ts_external_token_heredoc_end] = true, - }, - [7] = { - [ts_external_token_execution_string_chars] = true, - }, - [8] = { - [ts_external_token_encapsed_string_chars] = true, - [ts_external_token_encapsed_string_chars_after_variable] = true, - }, - [9] = { - [ts_external_token_execution_string_chars] = true, - [ts_external_token_execution_string_chars_after_variable] = true, - }, - [10] = { - [ts_external_token__eof] = true, - }, - [11] = { - [ts_external_token_heredoc_end] = true, - }, - [12] = { - [ts_external_token_heredoc_end] = true, - [ts_external_token_nowdoc_string] = true, - }, - [13] = { - [ts_external_token_heredoc_start] = true, - }, - [14] = { - [ts_external_token_nowdoc_string] = true, - }, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [sym_text_interpolation] = STATE(0), - [ts_builtin_sym_end] = ACTIONS(1), - [sym_name] = ACTIONS(1), - [sym_php_tag] = ACTIONS(1), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_text_token1] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [aux_sym_function_static_declaration_token1] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [aux_sym_global_declaration_token1] = ACTIONS(1), - [aux_sym_namespace_definition_token1] = ACTIONS(1), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1), - [anon_sym_BSLASH] = ACTIONS(1), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [aux_sym_trait_declaration_token1] = ACTIONS(1), - [aux_sym_interface_declaration_token1] = ACTIONS(1), - [aux_sym_base_clause_token1] = ACTIONS(1), - [aux_sym_enum_declaration_token1] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_string] = ACTIONS(1), - [anon_sym_int] = ACTIONS(1), - [aux_sym_enum_case_token1] = ACTIONS(1), - [aux_sym_class_declaration_token1] = ACTIONS(1), - [aux_sym_final_modifier_token1] = ACTIONS(1), - [aux_sym_abstract_modifier_token1] = ACTIONS(1), - [aux_sym_readonly_modifier_token1] = ACTIONS(1), - [aux_sym_class_interface_clause_token1] = ACTIONS(1), - [sym_var_modifier] = ACTIONS(1), - [aux_sym_use_instead_of_clause_token1] = ACTIONS(1), - [aux_sym_visibility_modifier_token1] = ACTIONS(1), - [aux_sym_visibility_modifier_token2] = ACTIONS(1), - [aux_sym_visibility_modifier_token3] = ACTIONS(1), - [aux_sym__arrow_function_header_token1] = ACTIONS(1), - [anon_sym_EQ_GT] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [sym_bottom_type] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_array] = ACTIONS(1), - [aux_sym_primitive_type_token1] = ACTIONS(1), - [anon_sym_iterable] = ACTIONS(1), - [anon_sym_bool] = ACTIONS(1), - [anon_sym_float] = ACTIONS(1), - [anon_sym_void] = ACTIONS(1), - [anon_sym_mixed] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), - [anon_sym_false] = ACTIONS(1), - [anon_sym_null] = ACTIONS(1), - [anon_sym_true] = ACTIONS(1), - [aux_sym_cast_type_token1] = ACTIONS(1), - [aux_sym_cast_type_token2] = ACTIONS(1), - [aux_sym_cast_type_token3] = ACTIONS(1), - [aux_sym_cast_type_token4] = ACTIONS(1), - [aux_sym_cast_type_token5] = ACTIONS(1), - [aux_sym_cast_type_token6] = ACTIONS(1), - [aux_sym_cast_type_token7] = ACTIONS(1), - [aux_sym_cast_type_token8] = ACTIONS(1), - [aux_sym_cast_type_token9] = ACTIONS(1), - [aux_sym_cast_type_token10] = ACTIONS(1), - [aux_sym_cast_type_token11] = ACTIONS(1), - [aux_sym_cast_type_token12] = ACTIONS(1), - [aux_sym_echo_statement_token1] = ACTIONS(1), - [anon_sym_unset] = ACTIONS(1), - [aux_sym_declare_statement_token1] = ACTIONS(1), - [aux_sym_declare_statement_token2] = ACTIONS(1), - [anon_sym_ticks] = ACTIONS(1), - [anon_sym_encoding] = ACTIONS(1), - [anon_sym_strict_types] = ACTIONS(1), - [sym_float] = ACTIONS(1), - [aux_sym_try_statement_token1] = ACTIONS(1), - [aux_sym_catch_clause_token1] = ACTIONS(1), - [aux_sym_finally_clause_token1] = ACTIONS(1), - [aux_sym_goto_statement_token1] = ACTIONS(1), - [aux_sym_continue_statement_token1] = ACTIONS(1), - [aux_sym_break_statement_token1] = ACTIONS(1), - [sym_integer] = ACTIONS(1), - [aux_sym_return_statement_token1] = ACTIONS(1), - [aux_sym_throw_expression_token1] = ACTIONS(1), - [aux_sym_while_statement_token1] = ACTIONS(1), - [aux_sym_while_statement_token2] = ACTIONS(1), - [aux_sym_do_statement_token1] = ACTIONS(1), - [aux_sym_for_statement_token1] = ACTIONS(1), - [aux_sym_for_statement_token2] = ACTIONS(1), - [aux_sym_foreach_statement_token1] = ACTIONS(1), - [aux_sym_foreach_statement_token2] = ACTIONS(1), - [aux_sym_if_statement_token1] = ACTIONS(1), - [aux_sym_if_statement_token2] = ACTIONS(1), - [aux_sym_else_if_clause_token1] = ACTIONS(1), - [aux_sym_else_clause_token1] = ACTIONS(1), - [aux_sym_match_expression_token1] = ACTIONS(1), - [aux_sym_match_default_expression_token1] = ACTIONS(1), - [aux_sym_switch_statement_token1] = ACTIONS(1), - [aux_sym_switch_block_token1] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_STAR_STAR] = ACTIONS(1), - [aux_sym_clone_expression_token1] = ACTIONS(1), - [anon_sym_COLON_COLON] = ACTIONS(1), - [aux_sym_print_intrinsic_token1] = ACTIONS(1), - [aux_sym_object_creation_expression_token1] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_GT_GT_EQ] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), - [anon_sym_CARET_EQ] = ACTIONS(1), - [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1), - [aux_sym__list_destructing_token1] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_self] = ACTIONS(1), - [anon_sym_parent] = ACTIONS(1), - [anon_sym_POUND_LBRACK] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym_QMARK_GT2] = ACTIONS(1), - [aux_sym_encapsed_string_token1] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [aux_sym_string_token1] = ACTIONS(1), - [anon_sym_DQUOTE2] = ACTIONS(1), - [anon_sym_SQUOTE2] = ACTIONS(1), - [anon_sym_BQUOTE] = ACTIONS(1), - [sym_boolean] = ACTIONS(1), - [sym_null] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), - [aux_sym_yield_expression_token1] = ACTIONS(1), - [aux_sym_yield_expression_token2] = ACTIONS(1), - [aux_sym_binary_expression_token1] = ACTIONS(1), - [anon_sym_QMARK_QMARK] = ACTIONS(1), - [aux_sym_binary_expression_token2] = ACTIONS(1), - [aux_sym_binary_expression_token3] = ACTIONS(1), - [aux_sym_binary_expression_token4] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [aux_sym_include_expression_token1] = ACTIONS(1), - [aux_sym_include_once_expression_token1] = ACTIONS(1), - [aux_sym_require_expression_token1] = ACTIONS(1), - [aux_sym_require_once_expression_token1] = ACTIONS(1), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1), - [sym_encapsed_string_chars] = ACTIONS(1), - [sym_encapsed_string_chars_after_variable] = ACTIONS(1), - [sym_execution_string_chars] = ACTIONS(1), - [sym_execution_string_chars_after_variable] = ACTIONS(1), - [sym_encapsed_string_chars_heredoc] = ACTIONS(1), - [sym_encapsed_string_chars_after_variable_heredoc] = ACTIONS(1), - [sym__eof] = ACTIONS(1), - [sym_heredoc_start] = ACTIONS(1), - [sym_heredoc_end] = ACTIONS(1), - [sym_nowdoc_string] = ACTIONS(1), - [sym_sentinel_error] = ACTIONS(1), - }, - [1] = { - [sym_program] = STATE(2580), - [sym_text_interpolation] = STATE(1), - [sym_text] = STATE(2113), - [aux_sym_text_repeat1] = STATE(1639), - [ts_builtin_sym_end] = ACTIONS(7), - [sym_php_tag] = ACTIONS(9), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_text_token1] = ACTIONS(11), - [aux_sym_text_token2] = ACTIONS(11), - [sym_comment] = ACTIONS(5), - }, - [2] = { - [sym_text_interpolation] = STATE(2), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(13), - [sym_name] = ACTIONS(15), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(20), - [aux_sym_function_static_declaration_token1] = ACTIONS(23), - [aux_sym_global_declaration_token1] = ACTIONS(26), - [aux_sym_namespace_definition_token1] = ACTIONS(29), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(32), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(35), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(38), - [anon_sym_BSLASH] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(44), - [anon_sym_RBRACE] = ACTIONS(13), - [aux_sym_trait_declaration_token1] = ACTIONS(47), - [aux_sym_interface_declaration_token1] = ACTIONS(50), - [aux_sym_enum_declaration_token1] = ACTIONS(53), - [aux_sym_enum_case_token1] = ACTIONS(56), - [aux_sym_class_declaration_token1] = ACTIONS(58), - [aux_sym_final_modifier_token1] = ACTIONS(61), - [aux_sym_abstract_modifier_token1] = ACTIONS(64), - [aux_sym_readonly_modifier_token1] = ACTIONS(67), - [aux_sym_visibility_modifier_token1] = ACTIONS(70), - [aux_sym_visibility_modifier_token2] = ACTIONS(70), - [aux_sym_visibility_modifier_token3] = ACTIONS(70), - [aux_sym__arrow_function_header_token1] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(76), - [aux_sym_cast_type_token1] = ACTIONS(79), - [aux_sym_echo_statement_token1] = ACTIONS(82), - [anon_sym_unset] = ACTIONS(85), - [aux_sym_declare_statement_token1] = ACTIONS(88), - [aux_sym_declare_statement_token2] = ACTIONS(56), - [sym_float] = ACTIONS(91), - [aux_sym_try_statement_token1] = ACTIONS(94), - [aux_sym_goto_statement_token1] = ACTIONS(97), - [aux_sym_continue_statement_token1] = ACTIONS(100), - [aux_sym_break_statement_token1] = ACTIONS(103), - [sym_integer] = ACTIONS(91), - [aux_sym_return_statement_token1] = ACTIONS(106), - [aux_sym_throw_expression_token1] = ACTIONS(109), - [aux_sym_while_statement_token1] = ACTIONS(112), - [aux_sym_while_statement_token2] = ACTIONS(56), - [aux_sym_do_statement_token1] = ACTIONS(115), - [aux_sym_for_statement_token1] = ACTIONS(118), - [aux_sym_for_statement_token2] = ACTIONS(56), - [aux_sym_foreach_statement_token1] = ACTIONS(121), - [aux_sym_foreach_statement_token2] = ACTIONS(56), - [aux_sym_if_statement_token1] = ACTIONS(124), - [aux_sym_if_statement_token2] = ACTIONS(56), - [aux_sym_match_expression_token1] = ACTIONS(127), - [aux_sym_match_default_expression_token1] = ACTIONS(56), - [aux_sym_switch_statement_token1] = ACTIONS(130), - [aux_sym_switch_block_token1] = ACTIONS(56), - [anon_sym_AT] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_BANG] = ACTIONS(139), - [aux_sym_clone_expression_token1] = ACTIONS(142), - [aux_sym_print_intrinsic_token1] = ACTIONS(145), - [aux_sym_object_creation_expression_token1] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(151), - [anon_sym_DASH_DASH] = ACTIONS(151), - [aux_sym__list_destructing_token1] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_self] = ACTIONS(160), - [anon_sym_parent] = ACTIONS(160), - [anon_sym_POUND_LBRACK] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(166), - [aux_sym_encapsed_string_token1] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(169), - [aux_sym_string_token1] = ACTIONS(166), - [anon_sym_LT_LT_LT] = ACTIONS(172), - [anon_sym_BQUOTE] = ACTIONS(175), - [sym_boolean] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(178), - [aux_sym_yield_expression_token1] = ACTIONS(181), - [aux_sym_include_expression_token1] = ACTIONS(184), - [aux_sym_include_once_expression_token1] = ACTIONS(187), - [aux_sym_require_expression_token1] = ACTIONS(190), - [aux_sym_require_once_expression_token1] = ACTIONS(193), - [sym_comment] = ACTIONS(5), - }, - [3] = { - [sym_text_interpolation] = STATE(3), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(216), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_enum_case_token1] = ACTIONS(224), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_match_default_expression_token1] = ACTIONS(224), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [aux_sym_switch_block_token1] = ACTIONS(224), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [4] = { - [sym_text_interpolation] = STATE(4), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(5), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(318), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_enum_case_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_match_default_expression_token1] = ACTIONS(320), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [aux_sym_switch_block_token1] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [5] = { - [sym_text_interpolation] = STATE(5), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(322), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_enum_case_token1] = ACTIONS(324), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_match_default_expression_token1] = ACTIONS(324), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [aux_sym_switch_block_token1] = ACTIONS(324), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [6] = { - [sym_text_interpolation] = STATE(6), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(3), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(326), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_enum_case_token1] = ACTIONS(328), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_match_default_expression_token1] = ACTIONS(328), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [aux_sym_switch_block_token1] = ACTIONS(328), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [7] = { - [sym_text_interpolation] = STATE(7), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(15), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(20), - [aux_sym_function_static_declaration_token1] = ACTIONS(23), - [aux_sym_global_declaration_token1] = ACTIONS(26), - [aux_sym_namespace_definition_token1] = ACTIONS(29), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(32), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(35), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(38), - [anon_sym_BSLASH] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(44), - [aux_sym_trait_declaration_token1] = ACTIONS(47), - [aux_sym_interface_declaration_token1] = ACTIONS(50), - [aux_sym_enum_declaration_token1] = ACTIONS(53), - [aux_sym_class_declaration_token1] = ACTIONS(58), - [aux_sym_final_modifier_token1] = ACTIONS(61), - [aux_sym_abstract_modifier_token1] = ACTIONS(64), - [aux_sym_readonly_modifier_token1] = ACTIONS(67), - [aux_sym_visibility_modifier_token1] = ACTIONS(70), - [aux_sym_visibility_modifier_token2] = ACTIONS(70), - [aux_sym_visibility_modifier_token3] = ACTIONS(70), - [aux_sym__arrow_function_header_token1] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(76), - [aux_sym_cast_type_token1] = ACTIONS(79), - [aux_sym_echo_statement_token1] = ACTIONS(82), - [anon_sym_unset] = ACTIONS(85), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(91), - [aux_sym_try_statement_token1] = ACTIONS(94), - [aux_sym_goto_statement_token1] = ACTIONS(97), - [aux_sym_continue_statement_token1] = ACTIONS(100), - [aux_sym_break_statement_token1] = ACTIONS(103), - [sym_integer] = ACTIONS(91), - [aux_sym_return_statement_token1] = ACTIONS(106), - [aux_sym_throw_expression_token1] = ACTIONS(109), - [aux_sym_while_statement_token1] = ACTIONS(333), - [aux_sym_do_statement_token1] = ACTIONS(115), - [aux_sym_for_statement_token1] = ACTIONS(336), - [aux_sym_foreach_statement_token1] = ACTIONS(339), - [aux_sym_if_statement_token1] = ACTIONS(342), - [aux_sym_if_statement_token2] = ACTIONS(56), - [aux_sym_else_if_clause_token1] = ACTIONS(56), - [aux_sym_else_clause_token1] = ACTIONS(56), - [aux_sym_match_expression_token1] = ACTIONS(127), - [aux_sym_switch_statement_token1] = ACTIONS(130), - [anon_sym_AT] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_BANG] = ACTIONS(139), - [aux_sym_clone_expression_token1] = ACTIONS(142), - [aux_sym_print_intrinsic_token1] = ACTIONS(145), - [aux_sym_object_creation_expression_token1] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(151), - [anon_sym_DASH_DASH] = ACTIONS(151), - [aux_sym__list_destructing_token1] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_self] = ACTIONS(160), - [anon_sym_parent] = ACTIONS(160), - [anon_sym_POUND_LBRACK] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(166), - [aux_sym_encapsed_string_token1] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(169), - [aux_sym_string_token1] = ACTIONS(166), - [anon_sym_LT_LT_LT] = ACTIONS(172), - [anon_sym_BQUOTE] = ACTIONS(175), - [sym_boolean] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(178), - [aux_sym_yield_expression_token1] = ACTIONS(181), - [aux_sym_include_expression_token1] = ACTIONS(184), - [aux_sym_include_once_expression_token1] = ACTIONS(187), - [aux_sym_require_expression_token1] = ACTIONS(190), - [aux_sym_require_once_expression_token1] = ACTIONS(193), - [sym_comment] = ACTIONS(5), - }, - [8] = { - [sym_text_interpolation] = STATE(8), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_if_statement_token2] = ACTIONS(355), - [aux_sym_else_if_clause_token1] = ACTIONS(355), - [aux_sym_else_clause_token1] = ACTIONS(355), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [9] = { - [sym_text_interpolation] = STATE(9), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_while_statement_token2] = ACTIONS(355), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_foreach_statement_token2] = ACTIONS(355), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_if_statement_token2] = ACTIONS(355), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [10] = { - [sym_text_interpolation] = STATE(10), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_while_statement_token2] = ACTIONS(357), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_foreach_statement_token2] = ACTIONS(357), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_if_statement_token2] = ACTIONS(357), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [11] = { - [sym_text_interpolation] = STATE(11), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_if_statement_token2] = ACTIONS(357), - [aux_sym_else_if_clause_token1] = ACTIONS(357), - [aux_sym_else_clause_token1] = ACTIONS(357), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [12] = { - [sym_text_interpolation] = STATE(12), - [sym_empty_statement] = STATE(493), - [sym_function_static_declaration] = STATE(493), - [sym_global_declaration] = STATE(493), - [sym_namespace_definition] = STATE(493), - [sym_namespace_use_declaration] = STATE(493), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(493), - [sym_interface_declaration] = STATE(493), - [sym_enum_declaration] = STATE(493), - [sym_class_declaration] = STATE(493), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(493), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(493), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(493), - [sym_unset_statement] = STATE(493), - [sym_declare_statement] = STATE(493), - [sym_try_statement] = STATE(493), - [sym_goto_statement] = STATE(493), - [sym_continue_statement] = STATE(493), - [sym_break_statement] = STATE(493), - [sym_return_statement] = STATE(493), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(493), - [sym_do_statement] = STATE(493), - [sym_for_statement] = STATE(493), - [sym_foreach_statement] = STATE(493), - [sym_if_statement] = STATE(493), - [sym_colon_block] = STATE(2502), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(493), - [sym_compound_statement] = STATE(493), - [sym_named_label_statement] = STATE(493), - [sym_expression_statement] = STATE(493), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(359), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(363), - }, - [13] = { - [sym_text_interpolation] = STATE(13), - [sym_empty_statement] = STATE(2094), - [sym_function_static_declaration] = STATE(2094), - [sym_global_declaration] = STATE(2094), - [sym_namespace_definition] = STATE(2094), - [sym_namespace_use_declaration] = STATE(2094), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2094), - [sym_interface_declaration] = STATE(2094), - [sym_enum_declaration] = STATE(2094), - [sym_class_declaration] = STATE(2094), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2094), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2094), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2094), - [sym_unset_statement] = STATE(2094), - [sym_declare_statement] = STATE(2094), - [sym_try_statement] = STATE(2094), - [sym_goto_statement] = STATE(2094), - [sym_continue_statement] = STATE(2094), - [sym_break_statement] = STATE(2094), - [sym_return_statement] = STATE(2094), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2094), - [sym_do_statement] = STATE(2094), - [sym_for_statement] = STATE(2094), - [sym_foreach_statement] = STATE(2094), - [sym_if_statement] = STATE(2094), - [sym_colon_block] = STATE(2416), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2094), - [sym_compound_statement] = STATE(2094), - [sym_named_label_statement] = STATE(2094), - [sym_expression_statement] = STATE(2094), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(367), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(417), - }, - [14] = { - [sym_text_interpolation] = STATE(14), - [sym_empty_statement] = STATE(2094), - [sym_function_static_declaration] = STATE(2094), - [sym_global_declaration] = STATE(2094), - [sym_namespace_definition] = STATE(2094), - [sym_namespace_use_declaration] = STATE(2094), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2094), - [sym_interface_declaration] = STATE(2094), - [sym_enum_declaration] = STATE(2094), - [sym_class_declaration] = STATE(2094), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2094), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2094), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2094), - [sym_unset_statement] = STATE(2094), - [sym_declare_statement] = STATE(2094), - [sym_try_statement] = STATE(2094), - [sym_goto_statement] = STATE(2094), - [sym_continue_statement] = STATE(2094), - [sym_break_statement] = STATE(2094), - [sym_return_statement] = STATE(2094), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2094), - [sym_do_statement] = STATE(2094), - [sym_for_statement] = STATE(2094), - [sym_foreach_statement] = STATE(2094), - [sym_if_statement] = STATE(2094), - [sym_colon_block] = STATE(2416), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2094), - [sym_compound_statement] = STATE(2094), - [sym_named_label_statement] = STATE(2094), - [sym_expression_statement] = STATE(2094), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(367), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(417), - }, - [15] = { - [sym_text_interpolation] = STATE(15), - [sym_empty_statement] = STATE(493), - [sym_function_static_declaration] = STATE(493), - [sym_global_declaration] = STATE(493), - [sym_namespace_definition] = STATE(493), - [sym_namespace_use_declaration] = STATE(493), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(493), - [sym_interface_declaration] = STATE(493), - [sym_enum_declaration] = STATE(493), - [sym_class_declaration] = STATE(493), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(493), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(493), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(493), - [sym_unset_statement] = STATE(493), - [sym_declare_statement] = STATE(493), - [sym_try_statement] = STATE(493), - [sym_goto_statement] = STATE(493), - [sym_continue_statement] = STATE(493), - [sym_break_statement] = STATE(493), - [sym_return_statement] = STATE(493), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(493), - [sym_do_statement] = STATE(493), - [sym_for_statement] = STATE(493), - [sym_foreach_statement] = STATE(493), - [sym_if_statement] = STATE(493), - [sym_colon_block] = STATE(2502), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(493), - [sym_compound_statement] = STATE(493), - [sym_named_label_statement] = STATE(493), - [sym_expression_statement] = STATE(493), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(359), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(363), - }, - [16] = { - [sym_text_interpolation] = STATE(16), - [sym_empty_statement] = STATE(503), - [sym_function_static_declaration] = STATE(503), - [sym_global_declaration] = STATE(503), - [sym_namespace_definition] = STATE(503), - [sym_namespace_use_declaration] = STATE(503), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(503), - [sym_interface_declaration] = STATE(503), - [sym_enum_declaration] = STATE(503), - [sym_class_declaration] = STATE(503), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(503), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(503), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(503), - [sym_unset_statement] = STATE(503), - [sym_declare_statement] = STATE(503), - [sym_try_statement] = STATE(503), - [sym_goto_statement] = STATE(503), - [sym_continue_statement] = STATE(503), - [sym_break_statement] = STATE(503), - [sym_return_statement] = STATE(503), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(503), - [sym_do_statement] = STATE(503), - [sym_for_statement] = STATE(503), - [sym_foreach_statement] = STATE(503), - [sym_if_statement] = STATE(503), - [sym_colon_block] = STATE(2364), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(503), - [sym_compound_statement] = STATE(503), - [sym_named_label_statement] = STATE(503), - [sym_expression_statement] = STATE(503), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [17] = { - [sym_text_interpolation] = STATE(17), - [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(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(488), - [sym_interface_declaration] = STATE(488), - [sym_enum_declaration] = STATE(488), - [sym_class_declaration] = STATE(488), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(488), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(488), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [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(1047), - [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(1113), - [sym_switch_statement] = STATE(488), - [sym_compound_statement] = STATE(488), - [sym_named_label_statement] = STATE(488), - [sym_expression_statement] = STATE(488), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(429), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(431), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(433), - }, - [18] = { - [sym_text_interpolation] = STATE(18), - [sym_empty_statement] = STATE(1968), - [sym_function_static_declaration] = STATE(1968), - [sym_global_declaration] = STATE(1968), - [sym_namespace_definition] = STATE(1968), - [sym_namespace_use_declaration] = STATE(1968), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(1968), - [sym_interface_declaration] = STATE(1968), - [sym_enum_declaration] = STATE(1968), - [sym_class_declaration] = STATE(1968), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(1968), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(1968), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(1968), - [sym_unset_statement] = STATE(1968), - [sym_declare_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_goto_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_break_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_colon_block] = STATE(2464), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(1968), - [sym_compound_statement] = STATE(1968), - [sym_named_label_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [19] = { - [sym_text_interpolation] = STATE(19), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(56), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(437), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [20] = { - [sym_text_interpolation] = STATE(20), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(439), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [21] = { - [sym_text_interpolation] = STATE(21), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(441), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [22] = { - [sym_text_interpolation] = STATE(22), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(443), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [23] = { - [sym_text_interpolation] = STATE(23), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(445), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [24] = { - [sym_text_interpolation] = STATE(24), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(445), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [25] = { - [sym_text_interpolation] = STATE(25), - [sym_empty_statement] = STATE(502), - [sym_function_static_declaration] = STATE(502), - [sym_global_declaration] = STATE(502), - [sym_namespace_definition] = STATE(502), - [sym_namespace_use_declaration] = STATE(502), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(502), - [sym_interface_declaration] = STATE(502), - [sym_enum_declaration] = STATE(502), - [sym_class_declaration] = STATE(502), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(502), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(502), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(502), - [sym_unset_statement] = STATE(502), - [sym_declare_statement] = STATE(502), - [sym_try_statement] = STATE(502), - [sym_goto_statement] = STATE(502), - [sym_continue_statement] = STATE(502), - [sym_break_statement] = STATE(502), - [sym_return_statement] = STATE(502), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(502), - [sym_do_statement] = STATE(502), - [sym_for_statement] = STATE(502), - [sym_foreach_statement] = STATE(502), - [sym_if_statement] = STATE(502), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(502), - [sym_compound_statement] = STATE(502), - [sym_named_label_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(447), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(449), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(451), - }, - [26] = { - [sym_text_interpolation] = STATE(26), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(73), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(453), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [27] = { - [sym_text_interpolation] = STATE(27), - [sym_empty_statement] = STATE(465), - [sym_function_static_declaration] = STATE(465), - [sym_global_declaration] = STATE(465), - [sym_namespace_definition] = STATE(465), - [sym_namespace_use_declaration] = STATE(465), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(465), - [sym_interface_declaration] = STATE(465), - [sym_enum_declaration] = STATE(465), - [sym_class_declaration] = STATE(465), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(465), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(465), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(465), - [sym_unset_statement] = STATE(465), - [sym_declare_statement] = STATE(465), - [sym_try_statement] = STATE(465), - [sym_goto_statement] = STATE(465), - [sym_continue_statement] = STATE(465), - [sym_break_statement] = STATE(465), - [sym_return_statement] = STATE(465), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(465), - [sym_do_statement] = STATE(465), - [sym_for_statement] = STATE(465), - [sym_foreach_statement] = STATE(465), - [sym_if_statement] = STATE(465), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(465), - [sym_compound_statement] = STATE(465), - [sym_named_label_statement] = STATE(465), - [sym_expression_statement] = STATE(465), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(455), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(457), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(459), - }, - [28] = { - [sym_text_interpolation] = STATE(28), - [sym_empty_statement] = STATE(465), - [sym_function_static_declaration] = STATE(465), - [sym_global_declaration] = STATE(465), - [sym_namespace_definition] = STATE(465), - [sym_namespace_use_declaration] = STATE(465), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(465), - [sym_interface_declaration] = STATE(465), - [sym_enum_declaration] = STATE(465), - [sym_class_declaration] = STATE(465), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(465), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(465), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(465), - [sym_unset_statement] = STATE(465), - [sym_declare_statement] = STATE(465), - [sym_try_statement] = STATE(465), - [sym_goto_statement] = STATE(465), - [sym_continue_statement] = STATE(465), - [sym_break_statement] = STATE(465), - [sym_return_statement] = STATE(465), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(465), - [sym_do_statement] = STATE(465), - [sym_for_statement] = STATE(465), - [sym_foreach_statement] = STATE(465), - [sym_if_statement] = STATE(465), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(465), - [sym_compound_statement] = STATE(465), - [sym_named_label_statement] = STATE(465), - [sym_expression_statement] = STATE(465), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(455), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(457), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(459), - }, - [29] = { - [sym_text_interpolation] = STATE(29), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(443), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [30] = { - [sym_text_interpolation] = STATE(30), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(461), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [31] = { - [sym_text_interpolation] = STATE(31), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(463), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [32] = { - [sym_text_interpolation] = STATE(32), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(59), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(465), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [33] = { - [sym_text_interpolation] = STATE(33), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(463), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [34] = { - [sym_text_interpolation] = STATE(34), - [sym_empty_statement] = STATE(471), - [sym_function_static_declaration] = STATE(471), - [sym_global_declaration] = STATE(471), - [sym_namespace_definition] = STATE(471), - [sym_namespace_use_declaration] = STATE(471), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(471), - [sym_interface_declaration] = STATE(471), - [sym_enum_declaration] = STATE(471), - [sym_class_declaration] = STATE(471), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(471), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(471), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(471), - [sym_unset_statement] = STATE(471), - [sym_declare_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_goto_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_foreach_statement] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(471), - [sym_compound_statement] = STATE(471), - [sym_named_label_statement] = STATE(471), - [sym_expression_statement] = STATE(471), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(467), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(469), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(471), - }, - [35] = { - [sym_text_interpolation] = STATE(35), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(33), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(473), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [36] = { - [sym_text_interpolation] = STATE(36), - [sym_empty_statement] = STATE(2010), - [sym_function_static_declaration] = STATE(2010), - [sym_global_declaration] = STATE(2010), - [sym_namespace_definition] = STATE(2010), - [sym_namespace_use_declaration] = STATE(2010), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2010), - [sym_interface_declaration] = STATE(2010), - [sym_enum_declaration] = STATE(2010), - [sym_class_declaration] = STATE(2010), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2010), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2010), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2010), - [sym_unset_statement] = STATE(2010), - [sym_declare_statement] = STATE(2010), - [sym_try_statement] = STATE(2010), - [sym_goto_statement] = STATE(2010), - [sym_continue_statement] = STATE(2010), - [sym_break_statement] = STATE(2010), - [sym_return_statement] = STATE(2010), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2010), - [sym_do_statement] = STATE(2010), - [sym_for_statement] = STATE(2010), - [sym_foreach_statement] = STATE(2010), - [sym_if_statement] = STATE(2010), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2010), - [sym_compound_statement] = STATE(2010), - [sym_named_label_statement] = STATE(2010), - [sym_expression_statement] = STATE(2010), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(475), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(477), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(479), - }, - [37] = { - [sym_text_interpolation] = STATE(37), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(473), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [38] = { - [sym_text_interpolation] = STATE(38), - [sym_empty_statement] = STATE(502), - [sym_function_static_declaration] = STATE(502), - [sym_global_declaration] = STATE(502), - [sym_namespace_definition] = STATE(502), - [sym_namespace_use_declaration] = STATE(502), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(502), - [sym_interface_declaration] = STATE(502), - [sym_enum_declaration] = STATE(502), - [sym_class_declaration] = STATE(502), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(502), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(502), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(502), - [sym_unset_statement] = STATE(502), - [sym_declare_statement] = STATE(502), - [sym_try_statement] = STATE(502), - [sym_goto_statement] = STATE(502), - [sym_continue_statement] = STATE(502), - [sym_break_statement] = STATE(502), - [sym_return_statement] = STATE(502), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(502), - [sym_do_statement] = STATE(502), - [sym_for_statement] = STATE(502), - [sym_foreach_statement] = STATE(502), - [sym_if_statement] = STATE(502), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(502), - [sym_compound_statement] = STATE(502), - [sym_named_label_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(447), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(449), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(451), - }, - [39] = { - [sym_text_interpolation] = STATE(39), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(481), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [40] = { - [sym_text_interpolation] = STATE(40), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(37), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(483), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [41] = { - [sym_text_interpolation] = STATE(41), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(485), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [42] = { - [sym_text_interpolation] = STATE(42), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(487), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [43] = { - [sym_text_interpolation] = STATE(43), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [aux_sym_declare_statement_token2] = ACTIONS(489), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [44] = { - [sym_text_interpolation] = STATE(44), - [sym_empty_statement] = STATE(2055), - [sym_function_static_declaration] = STATE(2055), - [sym_global_declaration] = STATE(2055), - [sym_namespace_definition] = STATE(2055), - [sym_namespace_use_declaration] = STATE(2055), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2055), - [sym_interface_declaration] = STATE(2055), - [sym_enum_declaration] = STATE(2055), - [sym_class_declaration] = STATE(2055), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2055), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2055), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2055), - [sym_unset_statement] = STATE(2055), - [sym_declare_statement] = STATE(2055), - [sym_try_statement] = STATE(2055), - [sym_goto_statement] = STATE(2055), - [sym_continue_statement] = STATE(2055), - [sym_break_statement] = STATE(2055), - [sym_return_statement] = STATE(2055), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2055), - [sym_do_statement] = STATE(2055), - [sym_for_statement] = STATE(2055), - [sym_foreach_statement] = STATE(2055), - [sym_if_statement] = STATE(2055), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2055), - [sym_compound_statement] = STATE(2055), - [sym_named_label_statement] = STATE(2055), - [sym_expression_statement] = STATE(2055), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(491), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(493), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(495), - }, - [45] = { - [sym_text_interpolation] = STATE(45), - [sym_empty_statement] = STATE(2035), - [sym_function_static_declaration] = STATE(2035), - [sym_global_declaration] = STATE(2035), - [sym_namespace_definition] = STATE(2035), - [sym_namespace_use_declaration] = STATE(2035), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2035), - [sym_interface_declaration] = STATE(2035), - [sym_enum_declaration] = STATE(2035), - [sym_class_declaration] = STATE(2035), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2035), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2035), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2035), - [sym_unset_statement] = STATE(2035), - [sym_declare_statement] = STATE(2035), - [sym_try_statement] = STATE(2035), - [sym_goto_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_return_statement] = STATE(2035), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2035), - [sym_do_statement] = STATE(2035), - [sym_for_statement] = STATE(2035), - [sym_foreach_statement] = STATE(2035), - [sym_if_statement] = STATE(2035), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2035), - [sym_compound_statement] = STATE(2035), - [sym_named_label_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(497), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(499), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(501), - }, - [46] = { - [sym_text_interpolation] = STATE(46), - [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(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(418), - [sym_interface_declaration] = STATE(418), - [sym_enum_declaration] = STATE(418), - [sym_class_declaration] = STATE(418), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(418), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(418), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [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(1047), - [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(1559), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(418), - [sym_compound_statement] = STATE(418), - [sym_named_label_statement] = STATE(418), - [sym_expression_statement] = STATE(418), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(503), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [47] = { - [sym_text_interpolation] = STATE(47), - [sym_empty_statement] = STATE(539), - [sym_function_static_declaration] = STATE(539), - [sym_global_declaration] = STATE(539), - [sym_namespace_definition] = STATE(539), - [sym_namespace_use_declaration] = STATE(539), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(539), - [sym_interface_declaration] = STATE(539), - [sym_enum_declaration] = STATE(539), - [sym_class_declaration] = STATE(539), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(539), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(539), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(539), - [sym_unset_statement] = STATE(539), - [sym_declare_statement] = STATE(539), - [sym_try_statement] = STATE(539), - [sym_goto_statement] = STATE(539), - [sym_continue_statement] = STATE(539), - [sym_break_statement] = STATE(539), - [sym_return_statement] = STATE(539), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(539), - [sym_do_statement] = STATE(539), - [sym_for_statement] = STATE(539), - [sym_foreach_statement] = STATE(539), - [sym_if_statement] = STATE(539), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(539), - [sym_compound_statement] = STATE(539), - [sym_named_label_statement] = STATE(539), - [sym_expression_statement] = STATE(539), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(505), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(507), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(509), - }, - [48] = { - [sym_text_interpolation] = STATE(48), - [sym_empty_statement] = STATE(2098), - [sym_function_static_declaration] = STATE(2098), - [sym_global_declaration] = STATE(2098), - [sym_namespace_definition] = STATE(2098), - [sym_namespace_use_declaration] = STATE(2098), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2098), - [sym_interface_declaration] = STATE(2098), - [sym_enum_declaration] = STATE(2098), - [sym_class_declaration] = STATE(2098), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2098), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2098), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2098), - [sym_unset_statement] = STATE(2098), - [sym_declare_statement] = STATE(2098), - [sym_try_statement] = STATE(2098), - [sym_goto_statement] = STATE(2098), - [sym_continue_statement] = STATE(2098), - [sym_break_statement] = STATE(2098), - [sym_return_statement] = STATE(2098), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2098), - [sym_do_statement] = STATE(2098), - [sym_for_statement] = STATE(2098), - [sym_foreach_statement] = STATE(2098), - [sym_if_statement] = STATE(2098), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2098), - [sym_compound_statement] = STATE(2098), - [sym_named_label_statement] = STATE(2098), - [sym_expression_statement] = STATE(2098), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(511), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(513), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(515), - }, - [49] = { - [sym_text_interpolation] = STATE(49), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [aux_sym_declare_statement_token2] = ACTIONS(517), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [50] = { - [sym_text_interpolation] = STATE(50), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(465), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [51] = { - [sym_text_interpolation] = STATE(51), - [sym_empty_statement] = STATE(2059), - [sym_function_static_declaration] = STATE(2059), - [sym_global_declaration] = STATE(2059), - [sym_namespace_definition] = STATE(2059), - [sym_namespace_use_declaration] = STATE(2059), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2059), - [sym_interface_declaration] = STATE(2059), - [sym_enum_declaration] = STATE(2059), - [sym_class_declaration] = STATE(2059), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2059), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2059), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2059), - [sym_unset_statement] = STATE(2059), - [sym_declare_statement] = STATE(2059), - [sym_try_statement] = STATE(2059), - [sym_goto_statement] = STATE(2059), - [sym_continue_statement] = STATE(2059), - [sym_break_statement] = STATE(2059), - [sym_return_statement] = STATE(2059), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2059), - [sym_do_statement] = STATE(2059), - [sym_for_statement] = STATE(2059), - [sym_foreach_statement] = STATE(2059), - [sym_if_statement] = STATE(2059), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2059), - [sym_compound_statement] = STATE(2059), - [sym_named_label_statement] = STATE(2059), - [sym_expression_statement] = STATE(2059), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(519), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(521), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(523), - }, - [52] = { - [sym_text_interpolation] = STATE(52), - [sym_empty_statement] = STATE(2055), - [sym_function_static_declaration] = STATE(2055), - [sym_global_declaration] = STATE(2055), - [sym_namespace_definition] = STATE(2055), - [sym_namespace_use_declaration] = STATE(2055), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2055), - [sym_interface_declaration] = STATE(2055), - [sym_enum_declaration] = STATE(2055), - [sym_class_declaration] = STATE(2055), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2055), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2055), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2055), - [sym_unset_statement] = STATE(2055), - [sym_declare_statement] = STATE(2055), - [sym_try_statement] = STATE(2055), - [sym_goto_statement] = STATE(2055), - [sym_continue_statement] = STATE(2055), - [sym_break_statement] = STATE(2055), - [sym_return_statement] = STATE(2055), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2055), - [sym_do_statement] = STATE(2055), - [sym_for_statement] = STATE(2055), - [sym_foreach_statement] = STATE(2055), - [sym_if_statement] = STATE(2055), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2055), - [sym_compound_statement] = STATE(2055), - [sym_named_label_statement] = STATE(2055), - [sym_expression_statement] = STATE(2055), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(491), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(493), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(495), - }, - [53] = { - [sym_text_interpolation] = STATE(53), - [sym_empty_statement] = STATE(1590), - [sym_function_static_declaration] = STATE(1590), - [sym_global_declaration] = STATE(1590), - [sym_namespace_definition] = STATE(1590), - [sym_namespace_use_declaration] = STATE(1590), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(1590), - [sym_interface_declaration] = STATE(1590), - [sym_enum_declaration] = STATE(1590), - [sym_class_declaration] = STATE(1590), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(1590), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(1590), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(1590), - [sym_unset_statement] = STATE(1590), - [sym_declare_statement] = STATE(1590), - [sym_try_statement] = STATE(1590), - [sym_goto_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(1590), - [sym_do_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_foreach_statement] = STATE(1590), - [sym_if_statement] = STATE(1590), - [sym_colon_block] = STATE(1601), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(1590), - [sym_compound_statement] = STATE(1590), - [sym_named_label_statement] = STATE(1590), - [sym_expression_statement] = STATE(1590), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(503), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [54] = { - [sym_text_interpolation] = STATE(54), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(43), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [aux_sym_declare_statement_token2] = ACTIONS(525), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [55] = { - [sym_text_interpolation] = STATE(55), - [sym_empty_statement] = STATE(2059), - [sym_function_static_declaration] = STATE(2059), - [sym_global_declaration] = STATE(2059), - [sym_namespace_definition] = STATE(2059), - [sym_namespace_use_declaration] = STATE(2059), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2059), - [sym_interface_declaration] = STATE(2059), - [sym_enum_declaration] = STATE(2059), - [sym_class_declaration] = STATE(2059), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2059), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2059), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2059), - [sym_unset_statement] = STATE(2059), - [sym_declare_statement] = STATE(2059), - [sym_try_statement] = STATE(2059), - [sym_goto_statement] = STATE(2059), - [sym_continue_statement] = STATE(2059), - [sym_break_statement] = STATE(2059), - [sym_return_statement] = STATE(2059), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2059), - [sym_do_statement] = STATE(2059), - [sym_for_statement] = STATE(2059), - [sym_foreach_statement] = STATE(2059), - [sym_if_statement] = STATE(2059), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2059), - [sym_compound_statement] = STATE(2059), - [sym_named_label_statement] = STATE(2059), - [sym_expression_statement] = STATE(2059), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(519), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(521), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(523), - }, - [56] = { - [sym_text_interpolation] = STATE(56), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(527), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [57] = { - [sym_text_interpolation] = STATE(57), - [sym_empty_statement] = STATE(2098), - [sym_function_static_declaration] = STATE(2098), - [sym_global_declaration] = STATE(2098), - [sym_namespace_definition] = STATE(2098), - [sym_namespace_use_declaration] = STATE(2098), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2098), - [sym_interface_declaration] = STATE(2098), - [sym_enum_declaration] = STATE(2098), - [sym_class_declaration] = STATE(2098), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2098), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2098), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2098), - [sym_unset_statement] = STATE(2098), - [sym_declare_statement] = STATE(2098), - [sym_try_statement] = STATE(2098), - [sym_goto_statement] = STATE(2098), - [sym_continue_statement] = STATE(2098), - [sym_break_statement] = STATE(2098), - [sym_return_statement] = STATE(2098), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2098), - [sym_do_statement] = STATE(2098), - [sym_for_statement] = STATE(2098), - [sym_foreach_statement] = STATE(2098), - [sym_if_statement] = STATE(2098), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2098), - [sym_compound_statement] = STATE(2098), - [sym_named_label_statement] = STATE(2098), - [sym_expression_statement] = STATE(2098), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(511), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(513), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(515), - }, - [58] = { - [sym_text_interpolation] = STATE(58), - [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(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(488), - [sym_interface_declaration] = STATE(488), - [sym_enum_declaration] = STATE(488), - [sym_class_declaration] = STATE(488), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(488), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(488), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [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(1047), - [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(1113), - [sym_switch_statement] = STATE(488), - [sym_compound_statement] = STATE(488), - [sym_named_label_statement] = STATE(488), - [sym_expression_statement] = STATE(488), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(429), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(431), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(433), - }, - [59] = { - [sym_text_interpolation] = STATE(59), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(529), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [60] = { - [sym_text_interpolation] = STATE(60), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(63), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(529), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [61] = { - [sym_text_interpolation] = STATE(61), - [sym_empty_statement] = STATE(2035), - [sym_function_static_declaration] = STATE(2035), - [sym_global_declaration] = STATE(2035), - [sym_namespace_definition] = STATE(2035), - [sym_namespace_use_declaration] = STATE(2035), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2035), - [sym_interface_declaration] = STATE(2035), - [sym_enum_declaration] = STATE(2035), - [sym_class_declaration] = STATE(2035), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2035), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2035), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2035), - [sym_unset_statement] = STATE(2035), - [sym_declare_statement] = STATE(2035), - [sym_try_statement] = STATE(2035), - [sym_goto_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_return_statement] = STATE(2035), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2035), - [sym_do_statement] = STATE(2035), - [sym_for_statement] = STATE(2035), - [sym_foreach_statement] = STATE(2035), - [sym_if_statement] = STATE(2035), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2035), - [sym_compound_statement] = STATE(2035), - [sym_named_label_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(497), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(499), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(501), - }, - [62] = { - [sym_text_interpolation] = STATE(62), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(49), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [aux_sym_declare_statement_token2] = ACTIONS(531), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [63] = { - [sym_text_interpolation] = STATE(63), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(533), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [64] = { - [sym_text_interpolation] = STATE(64), - [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(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(425), - [sym_interface_declaration] = STATE(425), - [sym_enum_declaration] = STATE(425), - [sym_class_declaration] = STATE(425), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(425), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(425), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [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(1047), - [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_colon_block] = STATE(1559), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(425), - [sym_compound_statement] = STATE(425), - [sym_named_label_statement] = STATE(425), - [sym_expression_statement] = STATE(425), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(503), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [65] = { - [sym_text_interpolation] = STATE(65), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(42), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(535), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [66] = { - [sym_text_interpolation] = STATE(66), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(537), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [67] = { - [sym_text_interpolation] = STATE(67), - [sym_empty_statement] = STATE(503), - [sym_function_static_declaration] = STATE(503), - [sym_global_declaration] = STATE(503), - [sym_namespace_definition] = STATE(503), - [sym_namespace_use_declaration] = STATE(503), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(503), - [sym_interface_declaration] = STATE(503), - [sym_enum_declaration] = STATE(503), - [sym_class_declaration] = STATE(503), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(503), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(503), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(503), - [sym_unset_statement] = STATE(503), - [sym_declare_statement] = STATE(503), - [sym_try_statement] = STATE(503), - [sym_goto_statement] = STATE(503), - [sym_continue_statement] = STATE(503), - [sym_break_statement] = STATE(503), - [sym_return_statement] = STATE(503), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(503), - [sym_do_statement] = STATE(503), - [sym_for_statement] = STATE(503), - [sym_foreach_statement] = STATE(503), - [sym_if_statement] = STATE(503), - [sym_colon_block] = STATE(2364), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(503), - [sym_compound_statement] = STATE(503), - [sym_named_label_statement] = STATE(503), - [sym_expression_statement] = STATE(503), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [68] = { - [sym_text_interpolation] = STATE(68), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(539), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [69] = { - [sym_text_interpolation] = STATE(69), - [sym_empty_statement] = STATE(539), - [sym_function_static_declaration] = STATE(539), - [sym_global_declaration] = STATE(539), - [sym_namespace_definition] = STATE(539), - [sym_namespace_use_declaration] = STATE(539), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(539), - [sym_interface_declaration] = STATE(539), - [sym_enum_declaration] = STATE(539), - [sym_class_declaration] = STATE(539), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(539), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(539), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(539), - [sym_unset_statement] = STATE(539), - [sym_declare_statement] = STATE(539), - [sym_try_statement] = STATE(539), - [sym_goto_statement] = STATE(539), - [sym_continue_statement] = STATE(539), - [sym_break_statement] = STATE(539), - [sym_return_statement] = STATE(539), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(539), - [sym_do_statement] = STATE(539), - [sym_for_statement] = STATE(539), - [sym_foreach_statement] = STATE(539), - [sym_if_statement] = STATE(539), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(539), - [sym_compound_statement] = STATE(539), - [sym_named_label_statement] = STATE(539), - [sym_expression_statement] = STATE(539), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(505), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(507), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(509), - }, - [70] = { - [sym_text_interpolation] = STATE(70), - [sym_empty_statement] = STATE(2010), - [sym_function_static_declaration] = STATE(2010), - [sym_global_declaration] = STATE(2010), - [sym_namespace_definition] = STATE(2010), - [sym_namespace_use_declaration] = STATE(2010), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2010), - [sym_interface_declaration] = STATE(2010), - [sym_enum_declaration] = STATE(2010), - [sym_class_declaration] = STATE(2010), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2010), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2010), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2010), - [sym_unset_statement] = STATE(2010), - [sym_declare_statement] = STATE(2010), - [sym_try_statement] = STATE(2010), - [sym_goto_statement] = STATE(2010), - [sym_continue_statement] = STATE(2010), - [sym_break_statement] = STATE(2010), - [sym_return_statement] = STATE(2010), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2010), - [sym_do_statement] = STATE(2010), - [sym_for_statement] = STATE(2010), - [sym_foreach_statement] = STATE(2010), - [sym_if_statement] = STATE(2010), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2010), - [sym_compound_statement] = STATE(2010), - [sym_named_label_statement] = STATE(2010), - [sym_expression_statement] = STATE(2010), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(475), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(477), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(479), - }, - [71] = { - [sym_text_interpolation] = STATE(71), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(541), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [72] = { - [sym_text_interpolation] = STATE(72), - [sym_empty_statement] = STATE(1573), - [sym_function_static_declaration] = STATE(1573), - [sym_global_declaration] = STATE(1573), - [sym_namespace_definition] = STATE(1573), - [sym_namespace_use_declaration] = STATE(1573), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_class_declaration] = STATE(1573), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(1573), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(1573), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(1573), - [sym_unset_statement] = STATE(1573), - [sym_declare_statement] = STATE(1573), - [sym_try_statement] = STATE(1573), - [sym_goto_statement] = STATE(1573), - [sym_continue_statement] = STATE(1573), - [sym_break_statement] = STATE(1573), - [sym_return_statement] = STATE(1573), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(1573), - [sym_do_statement] = STATE(1573), - [sym_for_statement] = STATE(1573), - [sym_foreach_statement] = STATE(1573), - [sym_if_statement] = STATE(1573), - [sym_colon_block] = STATE(1601), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(1573), - [sym_compound_statement] = STATE(1573), - [sym_named_label_statement] = STATE(1573), - [sym_expression_statement] = STATE(1573), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(503), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [73] = { - [sym_text_interpolation] = STATE(73), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(543), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [74] = { - [sym_text_interpolation] = STATE(74), - [sym_empty_statement] = STATE(1968), - [sym_function_static_declaration] = STATE(1968), - [sym_global_declaration] = STATE(1968), - [sym_namespace_definition] = STATE(1968), - [sym_namespace_use_declaration] = STATE(1968), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(1968), - [sym_interface_declaration] = STATE(1968), - [sym_enum_declaration] = STATE(1968), - [sym_class_declaration] = STATE(1968), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(1968), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(1968), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(1968), - [sym_unset_statement] = STATE(1968), - [sym_declare_statement] = STATE(1968), - [sym_try_statement] = STATE(1968), - [sym_goto_statement] = STATE(1968), - [sym_continue_statement] = STATE(1968), - [sym_break_statement] = STATE(1968), - [sym_return_statement] = STATE(1968), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(1968), - [sym_do_statement] = STATE(1968), - [sym_for_statement] = STATE(1968), - [sym_foreach_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_colon_block] = STATE(2464), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(1968), - [sym_compound_statement] = STATE(1968), - [sym_named_label_statement] = STATE(1968), - [sym_expression_statement] = STATE(1968), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [75] = { - [sym_text_interpolation] = STATE(75), - [sym_empty_statement] = STATE(471), - [sym_function_static_declaration] = STATE(471), - [sym_global_declaration] = STATE(471), - [sym_namespace_definition] = STATE(471), - [sym_namespace_use_declaration] = STATE(471), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(471), - [sym_interface_declaration] = STATE(471), - [sym_enum_declaration] = STATE(471), - [sym_class_declaration] = STATE(471), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(471), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(471), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(471), - [sym_unset_statement] = STATE(471), - [sym_declare_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_goto_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_foreach_statement] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(471), - [sym_compound_statement] = STATE(471), - [sym_named_label_statement] = STATE(471), - [sym_expression_statement] = STATE(471), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(467), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(469), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(471), - }, - [76] = { - [sym_text_interpolation] = STATE(76), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(545), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [77] = { - [sym_text_interpolation] = STATE(77), - [sym_empty_statement] = STATE(460), - [sym_function_static_declaration] = STATE(460), - [sym_global_declaration] = STATE(460), - [sym_namespace_definition] = STATE(460), - [sym_namespace_use_declaration] = STATE(460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(460), - [sym_interface_declaration] = STATE(460), - [sym_enum_declaration] = STATE(460), - [sym_class_declaration] = STATE(460), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(460), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(460), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(460), - [sym_unset_statement] = STATE(460), - [sym_declare_statement] = STATE(460), - [sym_try_statement] = STATE(460), - [sym_goto_statement] = STATE(460), - [sym_continue_statement] = STATE(460), - [sym_break_statement] = STATE(460), - [sym_return_statement] = STATE(460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(460), - [sym_do_statement] = STATE(460), - [sym_for_statement] = STATE(460), - [sym_foreach_statement] = STATE(460), - [sym_if_statement] = STATE(460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(460), - [sym_compound_statement] = STATE(460), - [sym_named_label_statement] = STATE(460), - [sym_expression_statement] = STATE(460), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_program_repeat1] = STATE(50), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(543), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [78] = { - [sym_text_interpolation] = STATE(78), - [sym_empty_statement] = STATE(2074), - [sym_function_static_declaration] = STATE(2074), - [sym_global_declaration] = STATE(2074), - [sym_namespace_definition] = STATE(2074), - [sym_namespace_use_declaration] = STATE(2074), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2074), - [sym_interface_declaration] = STATE(2074), - [sym_enum_declaration] = STATE(2074), - [sym_class_declaration] = STATE(2074), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2074), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2074), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2074), - [sym_unset_statement] = STATE(2074), - [sym_declare_statement] = STATE(2074), - [sym_try_statement] = STATE(2074), - [sym_goto_statement] = STATE(2074), - [sym_continue_statement] = STATE(2074), - [sym_break_statement] = STATE(2074), - [sym_return_statement] = STATE(2074), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2074), - [sym_do_statement] = STATE(2074), - [sym_for_statement] = STATE(2074), - [sym_foreach_statement] = STATE(2074), - [sym_if_statement] = STATE(2074), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2074), - [sym_compound_statement] = STATE(2074), - [sym_named_label_statement] = STATE(2074), - [sym_expression_statement] = STATE(2074), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [79] = { - [sym_text_interpolation] = STATE(79), - [sym_empty_statement] = STATE(543), - [sym_function_static_declaration] = STATE(543), - [sym_global_declaration] = STATE(543), - [sym_namespace_definition] = STATE(543), - [sym_namespace_use_declaration] = STATE(543), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(543), - [sym_interface_declaration] = STATE(543), - [sym_enum_declaration] = STATE(543), - [sym_class_declaration] = STATE(543), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(543), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(543), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(543), - [sym_unset_statement] = STATE(543), - [sym_declare_statement] = STATE(543), - [sym_try_statement] = STATE(543), - [sym_goto_statement] = STATE(543), - [sym_continue_statement] = STATE(543), - [sym_break_statement] = STATE(543), - [sym_return_statement] = STATE(543), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(543), - [sym_do_statement] = STATE(543), - [sym_for_statement] = STATE(543), - [sym_foreach_statement] = STATE(543), - [sym_if_statement] = STATE(543), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(543), - [sym_compound_statement] = STATE(543), - [sym_named_label_statement] = STATE(543), - [sym_expression_statement] = STATE(543), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [80] = { - [sym_text_interpolation] = STATE(80), - [sym_empty_statement] = STATE(2489), - [sym_function_static_declaration] = STATE(2489), - [sym_global_declaration] = STATE(2489), - [sym_namespace_definition] = STATE(2489), - [sym_namespace_use_declaration] = STATE(2489), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2489), - [sym_interface_declaration] = STATE(2489), - [sym_enum_declaration] = STATE(2489), - [sym_class_declaration] = STATE(2489), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2489), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2489), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2489), - [sym_unset_statement] = STATE(2489), - [sym_declare_statement] = STATE(2489), - [sym_try_statement] = STATE(2489), - [sym_goto_statement] = STATE(2489), - [sym_continue_statement] = STATE(2489), - [sym_break_statement] = STATE(2489), - [sym_return_statement] = STATE(2489), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2489), - [sym_do_statement] = STATE(2489), - [sym_for_statement] = STATE(2489), - [sym_foreach_statement] = STATE(2489), - [sym_if_statement] = STATE(2489), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2489), - [sym_compound_statement] = STATE(2489), - [sym_named_label_statement] = STATE(2489), - [sym_expression_statement] = STATE(2489), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [81] = { - [sym_text_interpolation] = STATE(81), - [sym_empty_statement] = STATE(496), - [sym_function_static_declaration] = STATE(496), - [sym_global_declaration] = STATE(496), - [sym_namespace_definition] = STATE(496), - [sym_namespace_use_declaration] = STATE(496), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(496), - [sym_interface_declaration] = STATE(496), - [sym_enum_declaration] = STATE(496), - [sym_class_declaration] = STATE(496), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(496), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(496), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(496), - [sym_unset_statement] = STATE(496), - [sym_declare_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_foreach_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(496), - [sym_compound_statement] = STATE(496), - [sym_named_label_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [82] = { - [sym_text_interpolation] = STATE(82), - [sym_empty_statement] = STATE(2017), - [sym_function_static_declaration] = STATE(2017), - [sym_global_declaration] = STATE(2017), - [sym_namespace_definition] = STATE(2017), - [sym_namespace_use_declaration] = STATE(2017), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2017), - [sym_interface_declaration] = STATE(2017), - [sym_enum_declaration] = STATE(2017), - [sym_class_declaration] = STATE(2017), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2017), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2017), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2017), - [sym_unset_statement] = STATE(2017), - [sym_declare_statement] = STATE(2017), - [sym_try_statement] = STATE(2017), - [sym_goto_statement] = STATE(2017), - [sym_continue_statement] = STATE(2017), - [sym_break_statement] = STATE(2017), - [sym_return_statement] = STATE(2017), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2017), - [sym_do_statement] = STATE(2017), - [sym_for_statement] = STATE(2017), - [sym_foreach_statement] = STATE(2017), - [sym_if_statement] = STATE(2017), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2017), - [sym_compound_statement] = STATE(2017), - [sym_named_label_statement] = STATE(2017), - [sym_expression_statement] = STATE(2017), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [83] = { - [sym_text_interpolation] = STATE(83), - [sym_empty_statement] = STATE(2460), - [sym_function_static_declaration] = STATE(2460), - [sym_global_declaration] = STATE(2460), - [sym_namespace_definition] = STATE(2460), - [sym_namespace_use_declaration] = STATE(2460), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2460), - [sym_interface_declaration] = STATE(2460), - [sym_enum_declaration] = STATE(2460), - [sym_class_declaration] = STATE(2460), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2460), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2460), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2460), - [sym_unset_statement] = STATE(2460), - [sym_declare_statement] = STATE(2460), - [sym_try_statement] = STATE(2460), - [sym_goto_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_return_statement] = STATE(2460), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2460), - [sym_do_statement] = STATE(2460), - [sym_for_statement] = STATE(2460), - [sym_foreach_statement] = STATE(2460), - [sym_if_statement] = STATE(2460), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2460), - [sym_compound_statement] = STATE(2460), - [sym_named_label_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [84] = { - [sym_text_interpolation] = STATE(84), - [sym_empty_statement] = STATE(496), - [sym_function_static_declaration] = STATE(496), - [sym_global_declaration] = STATE(496), - [sym_namespace_definition] = STATE(496), - [sym_namespace_use_declaration] = STATE(496), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(496), - [sym_interface_declaration] = STATE(496), - [sym_enum_declaration] = STATE(496), - [sym_class_declaration] = STATE(496), - [sym_final_modifier] = STATE(2533), - [sym_abstract_modifier] = STATE(2533), - [sym_readonly_modifier] = STATE(2533), - [sym_const_declaration] = STATE(496), - [sym__const_declaration] = STATE(510), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2531), - [sym_function_definition] = STATE(496), - [sym__function_definition_header] = STATE(2156), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(496), - [sym_unset_statement] = STATE(496), - [sym_declare_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_foreach_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(496), - [sym_compound_statement] = STATE(496), - [sym_named_label_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1364), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(345), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(349), - [aux_sym_foreach_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token1] = ACTIONS(353), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [85] = { - [sym_text_interpolation] = STATE(85), - [sym_empty_statement] = STATE(2017), - [sym_function_static_declaration] = STATE(2017), - [sym_global_declaration] = STATE(2017), - [sym_namespace_definition] = STATE(2017), - [sym_namespace_use_declaration] = STATE(2017), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_trait_declaration] = STATE(2017), - [sym_interface_declaration] = STATE(2017), - [sym_enum_declaration] = STATE(2017), - [sym_class_declaration] = STATE(2017), - [sym_final_modifier] = STATE(2483), - [sym_abstract_modifier] = STATE(2483), - [sym_readonly_modifier] = STATE(2483), - [sym_const_declaration] = STATE(2017), - [sym__const_declaration] = STATE(1933), - [sym_static_modifier] = STATE(2532), - [sym_visibility_modifier] = STATE(2484), - [sym_function_definition] = STATE(2017), - [sym__function_definition_header] = STATE(2224), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_echo_statement] = STATE(2017), - [sym_unset_statement] = STATE(2017), - [sym_declare_statement] = STATE(2017), - [sym_try_statement] = STATE(2017), - [sym_goto_statement] = STATE(2017), - [sym_continue_statement] = STATE(2017), - [sym_break_statement] = STATE(2017), - [sym_return_statement] = STATE(2017), - [sym_throw_expression] = STATE(1047), - [sym_while_statement] = STATE(2017), - [sym_do_statement] = STATE(2017), - [sym_for_statement] = STATE(2017), - [sym_foreach_statement] = STATE(2017), - [sym_if_statement] = STATE(2017), - [sym_match_expression] = STATE(1113), - [sym_switch_statement] = STATE(2017), - [sym_compound_statement] = STATE(2017), - [sym_named_label_statement] = STATE(2017), - [sym_expression_statement] = STATE(2017), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1356), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [86] = { - [sym_text_interpolation] = STATE(86), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(963), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(942), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_COLON] = ACTIONS(549), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_EQ_GT] = ACTIONS(549), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR_STAR] = ACTIONS(549), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_yield_expression_token2] = ACTIONS(601), - [aux_sym_binary_expression_token1] = ACTIONS(559), - [anon_sym_QMARK_QMARK] = ACTIONS(549), - [aux_sym_binary_expression_token2] = ACTIONS(559), - [aux_sym_binary_expression_token3] = ACTIONS(559), - [aux_sym_binary_expression_token4] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ_GT] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(549), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [87] = { - [sym_text_interpolation] = STATE(87), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1015), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(942), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(549), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(549), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_EQ_GT] = ACTIONS(549), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_STAR_STAR] = ACTIONS(549), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(549), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_yield_expression_token2] = ACTIONS(631), - [aux_sym_binary_expression_token1] = ACTIONS(559), - [anon_sym_QMARK_QMARK] = ACTIONS(549), - [aux_sym_binary_expression_token2] = ACTIONS(559), - [aux_sym_binary_expression_token3] = ACTIONS(559), - [aux_sym_binary_expression_token4] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ_GT] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(549), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [88] = { - [sym_text_interpolation] = STATE(88), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1077), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_variadic_unpacking] = STATE(1028), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_by_ref] = STATE(1028), - [sym_yield_expression] = STATE(1117), - [sym_array_element_initializer] = STATE(1078), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(643), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [anon_sym_COMMA] = ACTIONS(549), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_EQ_GT] = ACTIONS(549), - [anon_sym_LPAREN] = ACTIONS(238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_STAR_STAR] = ACTIONS(549), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_yield_expression_token2] = ACTIONS(651), - [aux_sym_binary_expression_token1] = ACTIONS(559), - [anon_sym_QMARK_QMARK] = ACTIONS(549), - [aux_sym_binary_expression_token2] = ACTIONS(559), - [aux_sym_binary_expression_token3] = ACTIONS(559), - [aux_sym_binary_expression_token4] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ_GT] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(549), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(549), - }, - [89] = { - [sym_text_interpolation] = STATE(89), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1152), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(942), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(551), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(549), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_EQ_GT] = ACTIONS(549), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_STAR_STAR] = ACTIONS(549), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_yield_expression_token2] = ACTIONS(673), - [aux_sym_binary_expression_token1] = ACTIONS(559), - [anon_sym_QMARK_QMARK] = ACTIONS(549), - [aux_sym_binary_expression_token2] = ACTIONS(559), - [aux_sym_binary_expression_token3] = ACTIONS(559), - [aux_sym_binary_expression_token4] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ_GT] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(549), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [90] = { - [sym_text_interpolation] = STATE(90), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_cast_type] = STATE(2451), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [91] = { - [sym_text_interpolation] = STATE(91), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_cast_type] = STATE(2433), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [92] = { - [sym_text_interpolation] = STATE(92), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_cast_type] = STATE(2492), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [93] = { - [sym_text_interpolation] = STATE(93), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_cast_type] = STATE(2443), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [94] = { - [sym_text_interpolation] = STATE(94), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_cast_type] = STATE(2382), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [95] = { - [sym_text_interpolation] = STATE(95), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_cast_type] = STATE(2382), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [96] = { - [sym_text_interpolation] = STATE(96), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_cast_type] = STATE(2461), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [97] = { - [sym_text_interpolation] = STATE(97), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_cast_type] = STATE(2468), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [98] = { - [sym_text_interpolation] = STATE(98), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_cast_type] = STATE(2459), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [99] = { - [sym_text_interpolation] = STATE(99), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_cast_type] = STATE(2385), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [100] = { - [sym_text_interpolation] = STATE(100), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_cast_type] = STATE(2365), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [101] = { - [sym_text_interpolation] = STATE(101), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1157), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(625), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(625), - [sym_nullsafe_member_access_expression] = STATE(625), - [sym_scoped_property_access_expression] = STATE(625), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(1911), - [sym_function_call_expression] = STATE(617), - [sym_scoped_call_expression] = STATE(617), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(617), - [sym_nullsafe_member_call_expression] = STATE(617), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(617), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(617), - [sym_variable_name] = STATE(617), - [sym_by_ref] = STATE(2237), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(1893), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym__array_destructing_repeat1] = STATE(1908), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(689), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(691), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [102] = { - [sym_text_interpolation] = STATE(102), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1157), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(625), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(625), - [sym_nullsafe_member_access_expression] = STATE(625), - [sym_scoped_property_access_expression] = STATE(625), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(1911), - [sym_function_call_expression] = STATE(617), - [sym_scoped_call_expression] = STATE(617), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(617), - [sym_nullsafe_member_call_expression] = STATE(617), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(617), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(617), - [sym_variable_name] = STATE(617), - [sym_by_ref] = STATE(2237), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(1909), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym__array_destructing_repeat1] = STATE(1908), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(693), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [103] = { - [sym_text_interpolation] = STATE(103), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1157), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(625), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(625), - [sym_nullsafe_member_access_expression] = STATE(625), - [sym_scoped_property_access_expression] = STATE(625), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(1911), - [sym_function_call_expression] = STATE(617), - [sym_scoped_call_expression] = STATE(617), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(617), - [sym_nullsafe_member_call_expression] = STATE(617), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(617), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(617), - [sym_variable_name] = STATE(617), - [sym_by_ref] = STATE(2237), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(1893), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym__array_destructing_repeat1] = STATE(1908), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(689), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [104] = { - [sym_text_interpolation] = STATE(104), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1157), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(625), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(625), - [sym_nullsafe_member_access_expression] = STATE(625), - [sym_scoped_property_access_expression] = STATE(625), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(1911), - [sym_function_call_expression] = STATE(617), - [sym_scoped_call_expression] = STATE(617), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(617), - [sym_nullsafe_member_call_expression] = STATE(617), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(617), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(617), - [sym_variable_name] = STATE(617), - [sym_by_ref] = STATE(2237), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(1893), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym__array_destructing_repeat1] = STATE(1908), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(689), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(699), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [105] = { - [sym_text_interpolation] = STATE(105), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1157), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(625), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(625), - [sym_nullsafe_member_access_expression] = STATE(625), - [sym_scoped_property_access_expression] = STATE(625), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(1911), - [sym_function_call_expression] = STATE(617), - [sym_scoped_call_expression] = STATE(617), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(617), - [sym_nullsafe_member_call_expression] = STATE(617), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(617), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(617), - [sym_variable_name] = STATE(617), - [sym_by_ref] = STATE(2237), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(1893), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym__array_destructing_repeat1] = STATE(1908), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(689), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(701), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [106] = { - [sym_text_interpolation] = STATE(106), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_variadic_placeholder] = STATE(2576), - [sym_argument] = STATE(2099), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(707), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [107] = { - [sym_text_interpolation] = STATE(107), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_variadic_placeholder] = STATE(2553), - [sym_argument] = STATE(2073), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(713), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [108] = { - [sym_text_interpolation] = STATE(108), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_variadic_placeholder] = STATE(2398), - [sym_argument] = STATE(1898), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(717), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [109] = { - [sym_text_interpolation] = STATE(109), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_variadic_placeholder] = STATE(2518), - [sym_argument] = STATE(2032), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(721), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [110] = { - [sym_text_interpolation] = STATE(110), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_variadic_placeholder] = STATE(2537), - [sym_argument] = STATE(2047), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(725), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [111] = { - [sym_text_interpolation] = STATE(111), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_variadic_placeholder] = STATE(2573), - [sym_argument] = STATE(2088), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(729), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [112] = { - [sym_text_interpolation] = STATE(112), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_variadic_placeholder] = STATE(2558), - [sym_argument] = STATE(2071), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(733), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [113] = { - [sym_text_interpolation] = STATE(113), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_variadic_placeholder] = STATE(2379), - [sym_argument] = STATE(1866), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(737), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [114] = { - [sym_text_interpolation] = STATE(114), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(1909), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(741), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [115] = { - [sym_text_interpolation] = STATE(115), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(1871), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(745), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [116] = { - [sym_text_interpolation] = STATE(116), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(1872), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(749), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [117] = { - [sym_text_interpolation] = STATE(117), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(1893), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(753), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [118] = { - [sym_text_interpolation] = STATE(118), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [119] = { - [sym_text_interpolation] = STATE(119), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym_match_condition_list] = STATE(2479), - [sym_match_conditional_expression] = STATE(2005), - [sym_match_default_expression] = STATE(2005), - [sym__expression] = STATE(1159), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(759), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(761), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [120] = { - [sym_text_interpolation] = STATE(120), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(2050), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [121] = { - [sym_text_interpolation] = STATE(121), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [122] = { - [sym_text_interpolation] = STATE(122), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [123] = { - [sym_text_interpolation] = STATE(123), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [124] = { - [sym_text_interpolation] = STATE(124), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [125] = { - [sym_text_interpolation] = STATE(125), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [126] = { - [sym_text_interpolation] = STATE(126), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [127] = { - [sym_text_interpolation] = STATE(127), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [128] = { - [sym_text_interpolation] = STATE(128), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [129] = { - [sym_text_interpolation] = STATE(129), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym_match_condition_list] = STATE(2479), - [sym_match_conditional_expression] = STATE(1894), - [sym_match_default_expression] = STATE(1894), - [sym__expression] = STATE(1159), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(783), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(785), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [130] = { - [sym_text_interpolation] = STATE(130), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [131] = { - [sym_text_interpolation] = STATE(131), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [132] = { - [sym_text_interpolation] = STATE(132), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [133] = { - [sym_text_interpolation] = STATE(133), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(2050), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(793), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [134] = { - [sym_text_interpolation] = STATE(134), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(795), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [135] = { - [sym_text_interpolation] = STATE(135), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(2050), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [136] = { - [sym_text_interpolation] = STATE(136), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [137] = { - [sym_text_interpolation] = STATE(137), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(2050), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [138] = { - [sym_text_interpolation] = STATE(138), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [139] = { - [sym_text_interpolation] = STATE(139), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [140] = { - [sym_text_interpolation] = STATE(140), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(2050), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(807), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [141] = { - [sym_text_interpolation] = STATE(141), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(2050), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [142] = { - [sym_text_interpolation] = STATE(142), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(2050), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(811), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [143] = { - [sym_text_interpolation] = STATE(143), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(2050), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(813), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [144] = { - [sym_text_interpolation] = STATE(144), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym_match_condition_list] = STATE(2479), - [sym_match_conditional_expression] = STATE(2315), - [sym_match_default_expression] = STATE(2315), - [sym__expression] = STATE(1159), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(815), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [145] = { - [sym_text_interpolation] = STATE(145), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(2050), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [146] = { - [sym_text_interpolation] = STATE(146), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym_match_condition_list] = STATE(2479), - [sym_match_conditional_expression] = STATE(2315), - [sym_match_default_expression] = STATE(2315), - [sym__expression] = STATE(1159), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(817), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [147] = { - [sym_text_interpolation] = STATE(147), - [sym_reference_modifier] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_argument] = STATE(2204), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2321), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1458), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [148] = { - [sym_text_interpolation] = STATE(148), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym_match_condition_list] = STATE(2479), - [sym_match_conditional_expression] = STATE(2315), - [sym_match_default_expression] = STATE(2315), - [sym__expression] = STATE(1159), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(819), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [149] = { - [sym_text_interpolation] = STATE(149), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(919), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(919), - [sym_yield_expression] = STATE(890), - [sym_array_element_initializer] = STATE(2050), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [150] = { - [sym_text_interpolation] = STATE(150), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1259), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(629), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(629), - [sym_nullsafe_member_access_expression] = STATE(629), - [sym_scoped_property_access_expression] = STATE(629), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(2338), - [sym_function_call_expression] = STATE(596), - [sym_scoped_call_expression] = STATE(596), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(596), - [sym_nullsafe_member_call_expression] = STATE(596), - [sym_subscript_expression] = STATE(596), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(596), - [sym_variable_name] = STATE(596), - [sym_by_ref] = STATE(2337), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(821), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(823), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_RBRACK] = ACTIONS(821), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [151] = { - [sym_text_interpolation] = STATE(151), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym_match_condition_list] = STATE(2479), - [sym_match_conditional_expression] = STATE(2315), - [sym_match_default_expression] = STATE(2315), - [sym__expression] = STATE(1159), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(827), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [152] = { - [sym_text_interpolation] = STATE(152), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1259), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(629), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(629), - [sym_nullsafe_member_access_expression] = STATE(629), - [sym_scoped_property_access_expression] = STATE(629), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(2338), - [sym_function_call_expression] = STATE(596), - [sym_scoped_call_expression] = STATE(596), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(596), - [sym_nullsafe_member_call_expression] = STATE(596), - [sym_subscript_expression] = STATE(596), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(596), - [sym_variable_name] = STATE(596), - [sym_by_ref] = STATE(2337), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(821), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(823), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_RBRACK] = ACTIONS(829), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [153] = { - [sym_text_interpolation] = STATE(153), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1278), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(622), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(622), - [sym_nullsafe_member_access_expression] = STATE(622), - [sym_scoped_property_access_expression] = STATE(622), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(1814), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(589), - [sym_scoped_call_expression] = STATE(589), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(589), - [sym_nullsafe_member_call_expression] = STATE(589), - [sym_subscript_expression] = STATE(589), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(589), - [sym_variable_name] = STATE(589), - [sym_by_ref] = STATE(1884), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym__list_destructing_repeat1] = STATE(1885), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(832), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(834), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [154] = { - [sym_text_interpolation] = STATE(154), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1259), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(629), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(629), - [sym_nullsafe_member_access_expression] = STATE(629), - [sym_scoped_property_access_expression] = STATE(629), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(2338), - [sym_function_call_expression] = STATE(596), - [sym_scoped_call_expression] = STATE(596), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(596), - [sym_nullsafe_member_call_expression] = STATE(596), - [sym_subscript_expression] = STATE(596), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(596), - [sym_variable_name] = STATE(596), - [sym_by_ref] = STATE(2337), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(821), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(823), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_RBRACK] = ACTIONS(836), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [155] = { - [sym_text_interpolation] = STATE(155), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(628), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(628), - [sym_nullsafe_member_access_expression] = STATE(628), - [sym_scoped_property_access_expression] = STATE(628), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2031), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(2162), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(839), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(839), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [156] = { - [sym_text_interpolation] = STATE(156), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym_match_condition_list] = STATE(2479), - [sym_match_conditional_expression] = STATE(2315), - [sym_match_default_expression] = STATE(2315), - [sym__expression] = STATE(1159), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [157] = { - [sym_text_interpolation] = STATE(157), - [sym_reference_modifier] = STATE(188), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1183), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2172), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1459), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [158] = { - [sym_text_interpolation] = STATE(158), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2377), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(841), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [159] = { - [sym_text_interpolation] = STATE(159), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2503), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(843), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [160] = { - [sym_text_interpolation] = STATE(160), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2516), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(845), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [161] = { - [sym_text_interpolation] = STATE(161), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2577), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(847), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [162] = { - [sym_text_interpolation] = STATE(162), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2419), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(849), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [163] = { - [sym_text_interpolation] = STATE(163), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2572), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(851), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [164] = { - [sym_text_interpolation] = STATE(164), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2376), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(853), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [165] = { - [sym_text_interpolation] = STATE(165), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2374), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(855), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [166] = { - [sym_text_interpolation] = STATE(166), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_foreach_pair] = STATE(2371), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1190), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_by_ref] = STATE(2371), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [167] = { - [sym_text_interpolation] = STATE(167), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2369), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(857), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [168] = { - [sym_text_interpolation] = STATE(168), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2525), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(859), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [169] = { - [sym_text_interpolation] = STATE(169), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2522), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(861), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [170] = { - [sym_text_interpolation] = STATE(170), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_foreach_pair] = STATE(2521), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2161), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_by_ref] = STATE(2521), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [171] = { - [sym_text_interpolation] = STATE(171), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2417), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(863), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [172] = { - [sym_text_interpolation] = STATE(172), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2514), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(865), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [173] = { - [sym_text_interpolation] = STATE(173), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2466), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(867), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [174] = { - [sym_text_interpolation] = STATE(174), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_foreach_pair] = STATE(2437), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2256), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_by_ref] = STATE(2437), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [175] = { - [sym_text_interpolation] = STATE(175), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2510), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(869), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [176] = { - [sym_text_interpolation] = STATE(176), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2538), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(871), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [177] = { - [sym_text_interpolation] = STATE(177), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2444), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(873), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [178] = { - [sym_text_interpolation] = STATE(178), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2534), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(875), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [179] = { - [sym_text_interpolation] = STATE(179), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_foreach_pair] = STATE(2511), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2167), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_by_ref] = STATE(2511), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [180] = { - [sym_text_interpolation] = STATE(180), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2508), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(877), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [181] = { - [sym_text_interpolation] = STATE(181), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2569), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(879), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [182] = { - [sym_text_interpolation] = STATE(182), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2501), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(881), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [183] = { - [sym_text_interpolation] = STATE(183), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2564), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(883), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [184] = { - [sym_text_interpolation] = STATE(184), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2566), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(885), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [185] = { - [sym_text_interpolation] = STATE(185), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__expressions] = STATE(2401), - [sym_sequence_expression] = STATE(2125), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(887), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [186] = { - [sym_text_interpolation] = STATE(186), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_by_ref] = STATE(896), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [187] = { - [sym_text_interpolation] = STATE(187), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(889), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(889), - }, - [188] = { - [sym_text_interpolation] = STATE(188), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1201), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2254), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1468), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [189] = { - [sym_text_interpolation] = STATE(189), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_by_ref] = STATE(896), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(891), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [190] = { - [sym_text_interpolation] = STATE(190), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1141), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(896), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(891), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [191] = { - [sym_text_interpolation] = STATE(191), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(961), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_by_ref] = STATE(896), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(891), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [192] = { - [sym_text_interpolation] = STATE(192), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1209), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(2133), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1452), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [193] = { - [sym_text_interpolation] = STATE(193), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1208), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(893), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(893), - }, - [194] = { - [sym_text_interpolation] = STATE(194), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1089), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_by_ref] = STATE(1023), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(895), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [195] = { - [sym_text_interpolation] = STATE(195), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1141), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(896), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [196] = { - [sym_text_interpolation] = STATE(196), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(897), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(897), - }, - [197] = { - [sym_text_interpolation] = STATE(197), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1282), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2177), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_by_ref] = STATE(2506), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [198] = { - [sym_text_interpolation] = STATE(198), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(630), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(630), - [sym_nullsafe_member_access_expression] = STATE(630), - [sym_scoped_property_access_expression] = STATE(630), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2046), - [sym_function_call_expression] = STATE(620), - [sym_scoped_call_expression] = STATE(620), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(620), - [sym_nullsafe_member_call_expression] = STATE(620), - [sym_subscript_expression] = STATE(620), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(620), - [sym_variable_name] = STATE(620), - [sym_by_ref] = STATE(2150), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [199] = { - [sym_text_interpolation] = STATE(199), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(899), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(899), - }, - [200] = { - [sym_text_interpolation] = STATE(200), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(901), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(901), - }, - [201] = { - [sym_text_interpolation] = STATE(201), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1192), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(903), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(903), - }, - [202] = { - [sym_text_interpolation] = STATE(202), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym__expressions] = STATE(2261), - [sym_sequence_expression] = STATE(2215), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1165), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [203] = { - [sym_text_interpolation] = STATE(203), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym__expressions] = STATE(2214), - [sym_sequence_expression] = STATE(2215), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1165), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [204] = { - [sym_text_interpolation] = STATE(204), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1255), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(905), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [205] = { - [sym_text_interpolation] = STATE(205), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(907), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [206] = { - [sym_text_interpolation] = STATE(206), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [207] = { - [sym_text_interpolation] = STATE(207), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(958), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(911), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [208] = { - [sym_text_interpolation] = STATE(208), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1010), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(913), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [209] = { - [sym_text_interpolation] = STATE(209), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(915), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [210] = { - [sym_text_interpolation] = STATE(210), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_sequence_expression] = STATE(2231), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1160), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [211] = { - [sym_text_interpolation] = STATE(211), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [212] = { - [sym_text_interpolation] = STATE(212), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1283), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(919), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [213] = { - [sym_text_interpolation] = STATE(213), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1123), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(921), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [214] = { - [sym_text_interpolation] = STATE(214), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1130), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(923), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [215] = { - [sym_text_interpolation] = STATE(215), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_sequence_expression] = STATE(2223), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [216] = { - [sym_text_interpolation] = STATE(216), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_sequence_expression] = STATE(2223), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [217] = { - [sym_text_interpolation] = STATE(217), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1269), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [218] = { - [sym_text_interpolation] = STATE(218), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1245), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(927), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [219] = { - [sym_text_interpolation] = STATE(219), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1254), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(929), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [220] = { - [sym_text_interpolation] = STATE(220), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1065), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(931), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [221] = { - [sym_text_interpolation] = STATE(221), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1248), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(933), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [222] = { - [sym_text_interpolation] = STATE(222), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1086), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [223] = { - [sym_text_interpolation] = STATE(223), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1198), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [224] = { - [sym_text_interpolation] = STATE(224), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1215), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [225] = { - [sym_text_interpolation] = STATE(225), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [226] = { - [sym_text_interpolation] = STATE(226), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(962), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [227] = { - [sym_text_interpolation] = STATE(227), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(974), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [228] = { - [sym_text_interpolation] = STATE(228), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(958), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [229] = { - [sym_text_interpolation] = STATE(229), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1031), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [230] = { - [sym_text_interpolation] = STATE(230), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1127), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [231] = { - [sym_text_interpolation] = STATE(231), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1242), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [232] = { - [sym_text_interpolation] = STATE(232), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(970), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [233] = { - [sym_text_interpolation] = STATE(233), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1216), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [234] = { - [sym_text_interpolation] = STATE(234), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [235] = { - [sym_text_interpolation] = STATE(235), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(936), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [236] = { - [sym_text_interpolation] = STATE(236), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1230), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [237] = { - [sym_text_interpolation] = STATE(237), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1164), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [238] = { - [sym_text_interpolation] = STATE(238), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1276), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [239] = { - [sym_text_interpolation] = STATE(239), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(981), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [240] = { - [sym_text_interpolation] = STATE(240), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1100), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [241] = { - [sym_text_interpolation] = STATE(241), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1236), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [242] = { - [sym_text_interpolation] = STATE(242), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1239), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [243] = { - [sym_text_interpolation] = STATE(243), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1093), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [244] = { - [sym_text_interpolation] = STATE(244), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1092), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [245] = { - [sym_text_interpolation] = STATE(245), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1091), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [246] = { - [sym_text_interpolation] = STATE(246), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1087), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [247] = { - [sym_text_interpolation] = STATE(247), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(964), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [248] = { - [sym_text_interpolation] = STATE(248), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1085), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [249] = { - [sym_text_interpolation] = STATE(249), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1084), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [250] = { - [sym_text_interpolation] = STATE(250), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1083), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [251] = { - [sym_text_interpolation] = STATE(251), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1076), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [252] = { - [sym_text_interpolation] = STATE(252), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1074), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [253] = { - [sym_text_interpolation] = STATE(253), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1073), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [254] = { - [sym_text_interpolation] = STATE(254), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [255] = { - [sym_text_interpolation] = STATE(255), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1071), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [256] = { - [sym_text_interpolation] = STATE(256), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1070), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [257] = { - [sym_text_interpolation] = STATE(257), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1067), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [258] = { - [sym_text_interpolation] = STATE(258), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1252), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [259] = { - [sym_text_interpolation] = STATE(259), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1130), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [260] = { - [sym_text_interpolation] = STATE(260), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [261] = { - [sym_text_interpolation] = STATE(261), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1064), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [262] = { - [sym_text_interpolation] = STATE(262), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [263] = { - [sym_text_interpolation] = STATE(263), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1272), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [264] = { - [sym_text_interpolation] = STATE(264), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [265] = { - [sym_text_interpolation] = STATE(265), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1284), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [266] = { - [sym_text_interpolation] = STATE(266), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1271), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [267] = { - [sym_text_interpolation] = STATE(267), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [268] = { - [sym_text_interpolation] = STATE(268), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1232), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [269] = { - [sym_text_interpolation] = STATE(269), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [270] = { - [sym_text_interpolation] = STATE(270), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1055), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [271] = { - [sym_text_interpolation] = STATE(271), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [272] = { - [sym_text_interpolation] = STATE(272), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [273] = { - [sym_text_interpolation] = STATE(273), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1179), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [274] = { - [sym_text_interpolation] = STATE(274), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [275] = { - [sym_text_interpolation] = STATE(275), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1266), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [276] = { - [sym_text_interpolation] = STATE(276), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1019), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [277] = { - [sym_text_interpolation] = STATE(277), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1057), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [278] = { - [sym_text_interpolation] = STATE(278), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(957), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [279] = { - [sym_text_interpolation] = STATE(279), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1128), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [280] = { - [sym_text_interpolation] = STATE(280), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(972), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [281] = { - [sym_text_interpolation] = STATE(281), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [282] = { - [sym_text_interpolation] = STATE(282), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1058), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [283] = { - [sym_text_interpolation] = STATE(283), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1172), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [284] = { - [sym_text_interpolation] = STATE(284), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(915), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [285] = { - [sym_text_interpolation] = STATE(285), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(959), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [286] = { - [sym_text_interpolation] = STATE(286), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(916), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [287] = { - [sym_text_interpolation] = STATE(287), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1062), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [288] = { - [sym_text_interpolation] = STATE(288), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1020), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [289] = { - [sym_text_interpolation] = STATE(289), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(960), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [290] = { - [sym_text_interpolation] = STATE(290), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(968), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [291] = { - [sym_text_interpolation] = STATE(291), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(967), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [292] = { - [sym_text_interpolation] = STATE(292), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1065), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [293] = { - [sym_text_interpolation] = STATE(293), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1243), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [294] = { - [sym_text_interpolation] = STATE(294), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1129), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [295] = { - [sym_text_interpolation] = STATE(295), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1014), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [296] = { - [sym_text_interpolation] = STATE(296), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(936), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [297] = { - [sym_text_interpolation] = STATE(297), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1013), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [298] = { - [sym_text_interpolation] = STATE(298), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1016), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [299] = { - [sym_text_interpolation] = STATE(299), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1131), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [300] = { - [sym_text_interpolation] = STATE(300), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1132), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [301] = { - [sym_text_interpolation] = STATE(301), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1133), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [302] = { - [sym_text_interpolation] = STATE(302), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1134), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [303] = { - [sym_text_interpolation] = STATE(303), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1135), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [304] = { - [sym_text_interpolation] = STATE(304), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1136), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [305] = { - [sym_text_interpolation] = STATE(305), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1061), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [306] = { - [sym_text_interpolation] = STATE(306), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(978), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [307] = { - [sym_text_interpolation] = STATE(307), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1150), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [308] = { - [sym_text_interpolation] = STATE(308), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [309] = { - [sym_text_interpolation] = STATE(309), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(984), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [310] = { - [sym_text_interpolation] = STATE(310), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1146), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [311] = { - [sym_text_interpolation] = STATE(311), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1143), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [312] = { - [sym_text_interpolation] = STATE(312), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1138), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [313] = { - [sym_text_interpolation] = STATE(313), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1125), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [314] = { - [sym_text_interpolation] = STATE(314), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [315] = { - [sym_text_interpolation] = STATE(315), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1270), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [316] = { - [sym_text_interpolation] = STATE(316), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [317] = { - [sym_text_interpolation] = STATE(317), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1137), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [318] = { - [sym_text_interpolation] = STATE(318), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1279), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [319] = { - [sym_text_interpolation] = STATE(319), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1142), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [320] = { - [sym_text_interpolation] = STATE(320), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(916), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [321] = { - [sym_text_interpolation] = STATE(321), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [322] = { - [sym_text_interpolation] = STATE(322), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1148), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [323] = { - [sym_text_interpolation] = STATE(323), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(965), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [324] = { - [sym_text_interpolation] = STATE(324), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1124), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [325] = { - [sym_text_interpolation] = STATE(325), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [326] = { - [sym_text_interpolation] = STATE(326), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(991), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [327] = { - [sym_text_interpolation] = STATE(327), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1122), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [328] = { - [sym_text_interpolation] = STATE(328), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1154), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [329] = { - [sym_text_interpolation] = STATE(329), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(971), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [330] = { - [sym_text_interpolation] = STATE(330), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(992), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [331] = { - [sym_text_interpolation] = STATE(331), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(915), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [332] = { - [sym_text_interpolation] = STATE(332), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1244), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [333] = { - [sym_text_interpolation] = STATE(333), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1153), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [334] = { - [sym_text_interpolation] = STATE(334), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [335] = { - [sym_text_interpolation] = STATE(335), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [336] = { - [sym_text_interpolation] = STATE(336), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [337] = { - [sym_text_interpolation] = STATE(337), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1235), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [338] = { - [sym_text_interpolation] = STATE(338), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [339] = { - [sym_text_interpolation] = STATE(339), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [340] = { - [sym_text_interpolation] = STATE(340), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(997), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [341] = { - [sym_text_interpolation] = STATE(341), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(975), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [342] = { - [sym_text_interpolation] = STATE(342), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(916), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [343] = { - [sym_text_interpolation] = STATE(343), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(915), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [344] = { - [sym_text_interpolation] = STATE(344), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1149), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [345] = { - [sym_text_interpolation] = STATE(345), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1079), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [346] = { - [sym_text_interpolation] = STATE(346), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1234), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [347] = { - [sym_text_interpolation] = STATE(347), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1080), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [348] = { - [sym_text_interpolation] = STATE(348), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1081), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [349] = { - [sym_text_interpolation] = STATE(349), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1082), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [350] = { - [sym_text_interpolation] = STATE(350), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [351] = { - [sym_text_interpolation] = STATE(351), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(998), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [352] = { - [sym_text_interpolation] = STATE(352), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(999), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [353] = { - [sym_text_interpolation] = STATE(353), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [354] = { - [sym_text_interpolation] = STATE(354), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1000), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [355] = { - [sym_text_interpolation] = STATE(355), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1251), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [356] = { - [sym_text_interpolation] = STATE(356), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1181), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [357] = { - [sym_text_interpolation] = STATE(357), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1258), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [358] = { - [sym_text_interpolation] = STATE(358), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1257), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [359] = { - [sym_text_interpolation] = STATE(359), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [360] = { - [sym_text_interpolation] = STATE(360), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [361] = { - [sym_text_interpolation] = STATE(361), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1223), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [362] = { - [sym_text_interpolation] = STATE(362), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [363] = { - [sym_text_interpolation] = STATE(363), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(969), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [364] = { - [sym_text_interpolation] = STATE(364), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [365] = { - [sym_text_interpolation] = STATE(365), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1006), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [366] = { - [sym_text_interpolation] = STATE(366), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [367] = { - [sym_text_interpolation] = STATE(367), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [368] = { - [sym_text_interpolation] = STATE(368), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [369] = { - [sym_text_interpolation] = STATE(369), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1250), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [370] = { - [sym_text_interpolation] = STATE(370), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1182), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [371] = { - [sym_text_interpolation] = STATE(371), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1246), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [372] = { - [sym_text_interpolation] = STATE(372), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(986), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [373] = { - [sym_text_interpolation] = STATE(373), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [374] = { - [sym_text_interpolation] = STATE(374), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1123), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [375] = { - [sym_text_interpolation] = STATE(375), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1008), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [376] = { - [sym_text_interpolation] = STATE(376), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1009), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [377] = { - [sym_text_interpolation] = STATE(377), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(985), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [378] = { - [sym_text_interpolation] = STATE(378), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(936), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [379] = { - [sym_text_interpolation] = STATE(379), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1011), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [380] = { - [sym_text_interpolation] = STATE(380), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1012), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [381] = { - [sym_text_interpolation] = STATE(381), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1262), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [382] = { - [sym_text_interpolation] = STATE(382), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(956), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [383] = { - [sym_text_interpolation] = STATE(383), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [384] = { - [sym_text_interpolation] = STATE(384), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(983), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [385] = { - [sym_text_interpolation] = STATE(385), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(973), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [386] = { - [sym_text_interpolation] = STATE(386), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(979), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [387] = { - [sym_text_interpolation] = STATE(387), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1238), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [388] = { - [sym_text_interpolation] = STATE(388), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(977), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [389] = { - [sym_text_interpolation] = STATE(389), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1126), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [390] = { - [sym_text_interpolation] = STATE(390), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(988), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [391] = { - [sym_text_interpolation] = STATE(391), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [392] = { - [sym_text_interpolation] = STATE(392), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1247), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [393] = { - [sym_text_interpolation] = STATE(393), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [394] = { - [sym_text_interpolation] = STATE(394), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1260), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [395] = { - [sym_text_interpolation] = STATE(395), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1010), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [396] = { - [sym_text_interpolation] = STATE(396), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1274), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [397] = { - [sym_text_interpolation] = STATE(397), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [398] = { - [sym_text_interpolation] = STATE(398), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(987), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [399] = { - [sym_text_interpolation] = STATE(399), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [400] = { - [sym_text_interpolation] = STATE(400), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1102), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [401] = { - [sym_text_interpolation] = STATE(401), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1273), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [402] = { - [sym_text_interpolation] = STATE(402), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1113), - [sym__expression] = STATE(1034), - [sym__unary_expression] = STATE(1116), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(1117), - [sym_reference_assignment_expression] = STATE(1117), - [sym_conditional_expression] = STATE(1117), - [sym_augmented_assignment_expression] = STATE(1117), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2526), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(585), - [sym_scoped_call_expression] = STATE(585), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(585), - [sym_nullsafe_member_call_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(585), - [sym_variable_name] = STATE(585), - [sym_yield_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_include_expression] = STATE(1117), - [sym_include_once_expression] = STATE(1117), - [sym_require_expression] = STATE(1117), - [sym_require_once_expression] = STATE(1117), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [403] = { - [sym_text_interpolation] = STATE(403), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [404] = { - [sym_text_interpolation] = STATE(404), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1277), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [405] = { - [sym_text_interpolation] = STATE(405), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [406] = { - [sym_text_interpolation] = STATE(406), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [407] = { - [sym_text_interpolation] = STATE(407), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1018), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(616), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(616), - [sym_nullsafe_member_access_expression] = STATE(616), - [sym_scoped_property_access_expression] = STATE(616), - [sym_list_literal] = STATE(2387), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(582), - [sym_scoped_call_expression] = STATE(582), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(582), - [sym_nullsafe_member_call_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(582), - [sym_variable_name] = STATE(582), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [408] = { - [sym_text_interpolation] = STATE(408), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1281), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [409] = { - [sym_text_interpolation] = STATE(409), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [410] = { - [sym_text_interpolation] = STATE(410), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [411] = { - [sym_text_interpolation] = STATE(411), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [412] = { - [sym_text_interpolation] = STATE(412), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1145), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(627), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(627), - [sym_nullsafe_member_access_expression] = STATE(627), - [sym_scoped_property_access_expression] = STATE(627), - [sym_list_literal] = STATE(2441), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [413] = { - [sym_text_interpolation] = STATE(413), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1265), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [414] = { - [sym_text_interpolation] = STATE(414), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(1221), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [415] = { - [sym_text_interpolation] = STATE(415), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(980), - [sym__expression] = STATE(955), - [sym__unary_expression] = STATE(912), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(586), - [sym_assignment_expression] = STATE(890), - [sym_reference_assignment_expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_augmented_assignment_expression] = STATE(890), - [sym_member_access_expression] = STATE(586), - [sym_nullsafe_member_access_expression] = STATE(586), - [sym_scoped_property_access_expression] = STATE(586), - [sym_list_literal] = STATE(2391), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_yield_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_include_expression] = STATE(890), - [sym_include_once_expression] = STATE(890), - [sym_require_expression] = STATE(890), - [sym_require_once_expression] = STATE(890), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [416] = { - [sym_text_interpolation] = STATE(416), - [sym_catch_clause] = STATE(428), - [sym_finally_clause] = STATE(428), - [aux_sym_try_statement_repeat1] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(935), - [sym_name] = ACTIONS(937), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(935), - [aux_sym_function_static_declaration_token1] = ACTIONS(937), - [aux_sym_global_declaration_token1] = ACTIONS(937), - [aux_sym_namespace_definition_token1] = ACTIONS(937), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(937), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(937), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(937), - [anon_sym_BSLASH] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [aux_sym_trait_declaration_token1] = ACTIONS(937), - [aux_sym_interface_declaration_token1] = ACTIONS(937), - [aux_sym_enum_declaration_token1] = ACTIONS(937), - [aux_sym_enum_case_token1] = ACTIONS(937), - [aux_sym_class_declaration_token1] = ACTIONS(937), - [aux_sym_final_modifier_token1] = ACTIONS(937), - [aux_sym_abstract_modifier_token1] = ACTIONS(937), - [aux_sym_readonly_modifier_token1] = ACTIONS(937), - [aux_sym_visibility_modifier_token1] = ACTIONS(937), - [aux_sym_visibility_modifier_token2] = ACTIONS(937), - [aux_sym_visibility_modifier_token3] = ACTIONS(937), - [aux_sym__arrow_function_header_token1] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(935), - [aux_sym_cast_type_token1] = ACTIONS(937), - [aux_sym_echo_statement_token1] = ACTIONS(937), - [anon_sym_unset] = ACTIONS(937), - [aux_sym_declare_statement_token1] = ACTIONS(937), - [aux_sym_declare_statement_token2] = ACTIONS(937), - [sym_float] = ACTIONS(937), - [aux_sym_try_statement_token1] = ACTIONS(937), - [aux_sym_catch_clause_token1] = ACTIONS(939), - [aux_sym_finally_clause_token1] = ACTIONS(942), - [aux_sym_goto_statement_token1] = ACTIONS(937), - [aux_sym_continue_statement_token1] = ACTIONS(937), - [aux_sym_break_statement_token1] = ACTIONS(937), - [sym_integer] = ACTIONS(937), - [aux_sym_return_statement_token1] = ACTIONS(937), - [aux_sym_throw_expression_token1] = ACTIONS(937), - [aux_sym_while_statement_token1] = ACTIONS(937), - [aux_sym_while_statement_token2] = ACTIONS(937), - [aux_sym_do_statement_token1] = ACTIONS(937), - [aux_sym_for_statement_token1] = ACTIONS(937), - [aux_sym_for_statement_token2] = ACTIONS(937), - [aux_sym_foreach_statement_token1] = ACTIONS(937), - [aux_sym_foreach_statement_token2] = ACTIONS(937), - [aux_sym_if_statement_token1] = ACTIONS(937), - [aux_sym_if_statement_token2] = ACTIONS(937), - [aux_sym_else_if_clause_token1] = ACTIONS(937), - [aux_sym_else_clause_token1] = ACTIONS(937), - [aux_sym_match_expression_token1] = ACTIONS(937), - [aux_sym_match_default_expression_token1] = ACTIONS(937), - [aux_sym_switch_statement_token1] = ACTIONS(937), - [aux_sym_switch_block_token1] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [aux_sym_clone_expression_token1] = ACTIONS(937), - [aux_sym_print_intrinsic_token1] = ACTIONS(937), - [aux_sym_object_creation_expression_token1] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(935), - [aux_sym__list_destructing_token1] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_self] = ACTIONS(937), - [anon_sym_parent] = ACTIONS(937), - [anon_sym_POUND_LBRACK] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(935), - [aux_sym_encapsed_string_token1] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(935), - [aux_sym_string_token1] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(935), - [anon_sym_BQUOTE] = ACTIONS(935), - [sym_boolean] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [aux_sym_yield_expression_token1] = ACTIONS(937), - [aux_sym_include_expression_token1] = ACTIONS(937), - [aux_sym_include_once_expression_token1] = ACTIONS(937), - [aux_sym_require_expression_token1] = ACTIONS(937), - [aux_sym_require_once_expression_token1] = ACTIONS(937), - [sym_comment] = ACTIONS(5), - }, - [417] = { - [sym_text_interpolation] = STATE(417), - [sym_catch_clause] = STATE(428), - [sym_finally_clause] = STATE(428), - [aux_sym_try_statement_repeat1] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(945), - [sym_name] = ACTIONS(947), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(945), - [aux_sym_function_static_declaration_token1] = ACTIONS(947), - [aux_sym_global_declaration_token1] = ACTIONS(947), - [aux_sym_namespace_definition_token1] = ACTIONS(947), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(947), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(947), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(947), - [anon_sym_BSLASH] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [aux_sym_trait_declaration_token1] = ACTIONS(947), - [aux_sym_interface_declaration_token1] = ACTIONS(947), - [aux_sym_enum_declaration_token1] = ACTIONS(947), - [aux_sym_enum_case_token1] = ACTIONS(947), - [aux_sym_class_declaration_token1] = ACTIONS(947), - [aux_sym_final_modifier_token1] = ACTIONS(947), - [aux_sym_abstract_modifier_token1] = ACTIONS(947), - [aux_sym_readonly_modifier_token1] = ACTIONS(947), - [aux_sym_visibility_modifier_token1] = ACTIONS(947), - [aux_sym_visibility_modifier_token2] = ACTIONS(947), - [aux_sym_visibility_modifier_token3] = ACTIONS(947), - [aux_sym__arrow_function_header_token1] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(945), - [aux_sym_cast_type_token1] = ACTIONS(947), - [aux_sym_echo_statement_token1] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [aux_sym_declare_statement_token1] = ACTIONS(947), - [aux_sym_declare_statement_token2] = ACTIONS(947), - [sym_float] = ACTIONS(947), - [aux_sym_try_statement_token1] = ACTIONS(947), - [aux_sym_catch_clause_token1] = ACTIONS(949), - [aux_sym_finally_clause_token1] = ACTIONS(951), - [aux_sym_goto_statement_token1] = ACTIONS(947), - [aux_sym_continue_statement_token1] = ACTIONS(947), - [aux_sym_break_statement_token1] = ACTIONS(947), - [sym_integer] = ACTIONS(947), - [aux_sym_return_statement_token1] = ACTIONS(947), - [aux_sym_throw_expression_token1] = ACTIONS(947), - [aux_sym_while_statement_token1] = ACTIONS(947), - [aux_sym_while_statement_token2] = ACTIONS(947), - [aux_sym_do_statement_token1] = ACTIONS(947), - [aux_sym_for_statement_token1] = ACTIONS(947), - [aux_sym_for_statement_token2] = ACTIONS(947), - [aux_sym_foreach_statement_token1] = ACTIONS(947), - [aux_sym_foreach_statement_token2] = ACTIONS(947), - [aux_sym_if_statement_token1] = ACTIONS(947), - [aux_sym_if_statement_token2] = ACTIONS(947), - [aux_sym_else_if_clause_token1] = ACTIONS(947), - [aux_sym_else_clause_token1] = ACTIONS(947), - [aux_sym_match_expression_token1] = ACTIONS(947), - [aux_sym_match_default_expression_token1] = ACTIONS(947), - [aux_sym_switch_statement_token1] = ACTIONS(947), - [aux_sym_switch_block_token1] = ACTIONS(947), - [anon_sym_AT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(945), - [anon_sym_BANG] = ACTIONS(945), - [aux_sym_clone_expression_token1] = ACTIONS(947), - [aux_sym_print_intrinsic_token1] = ACTIONS(947), - [aux_sym_object_creation_expression_token1] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(945), - [anon_sym_DASH_DASH] = ACTIONS(945), - [aux_sym__list_destructing_token1] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_self] = ACTIONS(947), - [anon_sym_parent] = ACTIONS(947), - [anon_sym_POUND_LBRACK] = ACTIONS(945), - [anon_sym_SQUOTE] = ACTIONS(945), - [aux_sym_encapsed_string_token1] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [aux_sym_string_token1] = ACTIONS(945), - [anon_sym_LT_LT_LT] = ACTIONS(945), - [anon_sym_BQUOTE] = ACTIONS(945), - [sym_boolean] = ACTIONS(947), - [sym_null] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(945), - [aux_sym_yield_expression_token1] = ACTIONS(947), - [aux_sym_include_expression_token1] = ACTIONS(947), - [aux_sym_include_once_expression_token1] = ACTIONS(947), - [aux_sym_require_expression_token1] = ACTIONS(947), - [aux_sym_require_once_expression_token1] = ACTIONS(947), - [sym_comment] = ACTIONS(5), - }, - [418] = { - [sym_text_interpolation] = STATE(418), - [sym_else_if_clause] = STATE(478), - [sym_else_clause] = STATE(477), - [aux_sym_if_statement_repeat1] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(953), - [sym_name] = ACTIONS(955), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(953), - [aux_sym_function_static_declaration_token1] = ACTIONS(955), - [aux_sym_global_declaration_token1] = ACTIONS(955), - [aux_sym_namespace_definition_token1] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(955), - [anon_sym_BSLASH] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [aux_sym_trait_declaration_token1] = ACTIONS(955), - [aux_sym_interface_declaration_token1] = ACTIONS(955), - [aux_sym_enum_declaration_token1] = ACTIONS(955), - [aux_sym_enum_case_token1] = ACTIONS(955), - [aux_sym_class_declaration_token1] = ACTIONS(955), - [aux_sym_final_modifier_token1] = ACTIONS(955), - [aux_sym_abstract_modifier_token1] = ACTIONS(955), - [aux_sym_readonly_modifier_token1] = ACTIONS(955), - [aux_sym_visibility_modifier_token1] = ACTIONS(955), - [aux_sym_visibility_modifier_token2] = ACTIONS(955), - [aux_sym_visibility_modifier_token3] = ACTIONS(955), - [aux_sym__arrow_function_header_token1] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(953), - [aux_sym_cast_type_token1] = ACTIONS(955), - [aux_sym_echo_statement_token1] = ACTIONS(955), - [anon_sym_unset] = ACTIONS(955), - [aux_sym_declare_statement_token1] = ACTIONS(955), - [aux_sym_declare_statement_token2] = ACTIONS(955), - [sym_float] = ACTIONS(955), - [aux_sym_try_statement_token1] = ACTIONS(955), - [aux_sym_goto_statement_token1] = ACTIONS(955), - [aux_sym_continue_statement_token1] = ACTIONS(955), - [aux_sym_break_statement_token1] = ACTIONS(955), - [sym_integer] = ACTIONS(955), - [aux_sym_return_statement_token1] = ACTIONS(955), - [aux_sym_throw_expression_token1] = ACTIONS(955), - [aux_sym_while_statement_token1] = ACTIONS(955), - [aux_sym_while_statement_token2] = ACTIONS(955), - [aux_sym_do_statement_token1] = ACTIONS(955), - [aux_sym_for_statement_token1] = ACTIONS(955), - [aux_sym_for_statement_token2] = ACTIONS(955), - [aux_sym_foreach_statement_token1] = ACTIONS(955), - [aux_sym_foreach_statement_token2] = ACTIONS(955), - [aux_sym_if_statement_token1] = ACTIONS(955), - [aux_sym_if_statement_token2] = ACTIONS(955), - [aux_sym_else_if_clause_token1] = ACTIONS(957), - [aux_sym_else_clause_token1] = ACTIONS(959), - [aux_sym_match_expression_token1] = ACTIONS(955), - [aux_sym_match_default_expression_token1] = ACTIONS(955), - [aux_sym_switch_statement_token1] = ACTIONS(955), - [aux_sym_switch_block_token1] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_TILDE] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(953), - [aux_sym_clone_expression_token1] = ACTIONS(955), - [aux_sym_print_intrinsic_token1] = ACTIONS(955), - [aux_sym_object_creation_expression_token1] = ACTIONS(955), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(953), - [aux_sym__list_destructing_token1] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_self] = ACTIONS(955), - [anon_sym_parent] = ACTIONS(955), - [anon_sym_POUND_LBRACK] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(953), - [aux_sym_encapsed_string_token1] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [aux_sym_string_token1] = ACTIONS(953), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(953), - [sym_boolean] = ACTIONS(955), - [sym_null] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [aux_sym_yield_expression_token1] = ACTIONS(955), - [aux_sym_include_expression_token1] = ACTIONS(955), - [aux_sym_include_once_expression_token1] = ACTIONS(955), - [aux_sym_require_expression_token1] = ACTIONS(955), - [aux_sym_require_once_expression_token1] = ACTIONS(955), - [sym_comment] = ACTIONS(5), - }, - [419] = { - [sym_text_interpolation] = STATE(419), - [sym_else_if_clause] = STATE(478), - [sym_else_clause] = STATE(499), - [aux_sym_if_statement_repeat1] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(961), - [sym_name] = ACTIONS(963), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(961), - [aux_sym_function_static_declaration_token1] = ACTIONS(963), - [aux_sym_global_declaration_token1] = ACTIONS(963), - [aux_sym_namespace_definition_token1] = ACTIONS(963), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(963), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(963), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(963), - [anon_sym_BSLASH] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [aux_sym_trait_declaration_token1] = ACTIONS(963), - [aux_sym_interface_declaration_token1] = ACTIONS(963), - [aux_sym_enum_declaration_token1] = ACTIONS(963), - [aux_sym_enum_case_token1] = ACTIONS(963), - [aux_sym_class_declaration_token1] = ACTIONS(963), - [aux_sym_final_modifier_token1] = ACTIONS(963), - [aux_sym_abstract_modifier_token1] = ACTIONS(963), - [aux_sym_readonly_modifier_token1] = ACTIONS(963), - [aux_sym_visibility_modifier_token1] = ACTIONS(963), - [aux_sym_visibility_modifier_token2] = ACTIONS(963), - [aux_sym_visibility_modifier_token3] = ACTIONS(963), - [aux_sym__arrow_function_header_token1] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(961), - [aux_sym_cast_type_token1] = ACTIONS(963), - [aux_sym_echo_statement_token1] = ACTIONS(963), - [anon_sym_unset] = ACTIONS(963), - [aux_sym_declare_statement_token1] = ACTIONS(963), - [aux_sym_declare_statement_token2] = ACTIONS(963), - [sym_float] = ACTIONS(963), - [aux_sym_try_statement_token1] = ACTIONS(963), - [aux_sym_goto_statement_token1] = ACTIONS(963), - [aux_sym_continue_statement_token1] = ACTIONS(963), - [aux_sym_break_statement_token1] = ACTIONS(963), - [sym_integer] = ACTIONS(963), - [aux_sym_return_statement_token1] = ACTIONS(963), - [aux_sym_throw_expression_token1] = ACTIONS(963), - [aux_sym_while_statement_token1] = ACTIONS(963), - [aux_sym_while_statement_token2] = ACTIONS(963), - [aux_sym_do_statement_token1] = ACTIONS(963), - [aux_sym_for_statement_token1] = ACTIONS(963), - [aux_sym_for_statement_token2] = ACTIONS(963), - [aux_sym_foreach_statement_token1] = ACTIONS(963), - [aux_sym_foreach_statement_token2] = ACTIONS(963), - [aux_sym_if_statement_token1] = ACTIONS(963), - [aux_sym_if_statement_token2] = ACTIONS(963), - [aux_sym_else_if_clause_token1] = ACTIONS(965), - [aux_sym_else_clause_token1] = ACTIONS(968), - [aux_sym_match_expression_token1] = ACTIONS(963), - [aux_sym_match_default_expression_token1] = ACTIONS(963), - [aux_sym_switch_statement_token1] = ACTIONS(963), - [aux_sym_switch_block_token1] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [aux_sym_clone_expression_token1] = ACTIONS(963), - [aux_sym_print_intrinsic_token1] = ACTIONS(963), - [aux_sym_object_creation_expression_token1] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [aux_sym__list_destructing_token1] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_self] = ACTIONS(963), - [anon_sym_parent] = ACTIONS(963), - [anon_sym_POUND_LBRACK] = ACTIONS(961), - [anon_sym_SQUOTE] = ACTIONS(961), - [aux_sym_encapsed_string_token1] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [aux_sym_string_token1] = ACTIONS(961), - [anon_sym_LT_LT_LT] = ACTIONS(961), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_boolean] = ACTIONS(963), - [sym_null] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [aux_sym_yield_expression_token1] = ACTIONS(963), - [aux_sym_include_expression_token1] = ACTIONS(963), - [aux_sym_include_once_expression_token1] = ACTIONS(963), - [aux_sym_require_expression_token1] = ACTIONS(963), - [aux_sym_require_once_expression_token1] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - }, - [420] = { - [sym_text_interpolation] = STATE(420), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(1099), - [sym_unary_op_expression] = STATE(1099), - [sym_exponentiation_expression] = STATE(1096), - [sym_clone_expression] = STATE(1099), - [sym__primary_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1096), - [sym_cast_variable] = STATE(619), - [sym_assignment_expression] = STATE(1096), - [sym_augmented_assignment_expression] = STATE(1096), - [sym_member_access_expression] = STATE(619), - [sym_nullsafe_member_access_expression] = STATE(619), - [sym_scoped_property_access_expression] = STATE(619), - [sym_list_literal] = STATE(2405), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(587), - [sym_scoped_call_expression] = STATE(587), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(587), - [sym_nullsafe_member_call_expression] = STATE(587), - [sym_subscript_expression] = STATE(587), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(587), - [sym_variable_name] = STATE(587), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym_comment] = ACTIONS(5), - }, - [421] = { - [sym_text_interpolation] = STATE(421), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(966), - [sym_unary_op_expression] = STATE(966), - [sym_exponentiation_expression] = STATE(925), - [sym_clone_expression] = STATE(966), - [sym__primary_expression] = STATE(966), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(925), - [sym_cast_variable] = STATE(590), - [sym_assignment_expression] = STATE(925), - [sym_augmented_assignment_expression] = STATE(925), - [sym_member_access_expression] = STATE(590), - [sym_nullsafe_member_access_expression] = STATE(590), - [sym_scoped_property_access_expression] = STATE(590), - [sym_list_literal] = STATE(2380), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(578), - [sym_scoped_call_expression] = STATE(578), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(578), - [sym_nullsafe_member_call_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(578), - [sym_variable_name] = STATE(578), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [sym_comment] = ACTIONS(5), - }, - [422] = { - [sym_text_interpolation] = STATE(422), - [sym_else_if_clause] = STATE(478), - [sym_else_clause] = STATE(499), - [aux_sym_if_statement_repeat1] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(961), - [sym_name] = ACTIONS(963), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(961), - [aux_sym_function_static_declaration_token1] = ACTIONS(963), - [aux_sym_global_declaration_token1] = ACTIONS(963), - [aux_sym_namespace_definition_token1] = ACTIONS(963), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(963), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(963), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(963), - [anon_sym_BSLASH] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [aux_sym_trait_declaration_token1] = ACTIONS(963), - [aux_sym_interface_declaration_token1] = ACTIONS(963), - [aux_sym_enum_declaration_token1] = ACTIONS(963), - [aux_sym_enum_case_token1] = ACTIONS(963), - [aux_sym_class_declaration_token1] = ACTIONS(963), - [aux_sym_final_modifier_token1] = ACTIONS(963), - [aux_sym_abstract_modifier_token1] = ACTIONS(963), - [aux_sym_readonly_modifier_token1] = ACTIONS(963), - [aux_sym_visibility_modifier_token1] = ACTIONS(963), - [aux_sym_visibility_modifier_token2] = ACTIONS(963), - [aux_sym_visibility_modifier_token3] = ACTIONS(963), - [aux_sym__arrow_function_header_token1] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(961), - [aux_sym_cast_type_token1] = ACTIONS(963), - [aux_sym_echo_statement_token1] = ACTIONS(963), - [anon_sym_unset] = ACTIONS(963), - [aux_sym_declare_statement_token1] = ACTIONS(963), - [aux_sym_declare_statement_token2] = ACTIONS(963), - [sym_float] = ACTIONS(963), - [aux_sym_try_statement_token1] = ACTIONS(963), - [aux_sym_goto_statement_token1] = ACTIONS(963), - [aux_sym_continue_statement_token1] = ACTIONS(963), - [aux_sym_break_statement_token1] = ACTIONS(963), - [sym_integer] = ACTIONS(963), - [aux_sym_return_statement_token1] = ACTIONS(963), - [aux_sym_throw_expression_token1] = ACTIONS(963), - [aux_sym_while_statement_token1] = ACTIONS(963), - [aux_sym_while_statement_token2] = ACTIONS(963), - [aux_sym_do_statement_token1] = ACTIONS(963), - [aux_sym_for_statement_token1] = ACTIONS(963), - [aux_sym_for_statement_token2] = ACTIONS(963), - [aux_sym_foreach_statement_token1] = ACTIONS(963), - [aux_sym_foreach_statement_token2] = ACTIONS(963), - [aux_sym_if_statement_token1] = ACTIONS(963), - [aux_sym_if_statement_token2] = ACTIONS(963), - [aux_sym_else_if_clause_token1] = ACTIONS(957), - [aux_sym_else_clause_token1] = ACTIONS(959), - [aux_sym_match_expression_token1] = ACTIONS(963), - [aux_sym_match_default_expression_token1] = ACTIONS(963), - [aux_sym_switch_statement_token1] = ACTIONS(963), - [aux_sym_switch_block_token1] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [aux_sym_clone_expression_token1] = ACTIONS(963), - [aux_sym_print_intrinsic_token1] = ACTIONS(963), - [aux_sym_object_creation_expression_token1] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(961), - [aux_sym__list_destructing_token1] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_self] = ACTIONS(963), - [anon_sym_parent] = ACTIONS(963), - [anon_sym_POUND_LBRACK] = ACTIONS(961), - [anon_sym_SQUOTE] = ACTIONS(961), - [aux_sym_encapsed_string_token1] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [aux_sym_string_token1] = ACTIONS(961), - [anon_sym_LT_LT_LT] = ACTIONS(961), - [anon_sym_BQUOTE] = ACTIONS(961), - [sym_boolean] = ACTIONS(963), - [sym_null] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [aux_sym_yield_expression_token1] = ACTIONS(963), - [aux_sym_include_expression_token1] = ACTIONS(963), - [aux_sym_include_once_expression_token1] = ACTIONS(963), - [aux_sym_require_expression_token1] = ACTIONS(963), - [aux_sym_require_once_expression_token1] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - }, - [423] = { - [sym_text_interpolation] = STATE(423), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(1139), - [sym_unary_op_expression] = STATE(1139), - [sym_exponentiation_expression] = STATE(925), - [sym_clone_expression] = STATE(1139), - [sym__primary_expression] = STATE(1139), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(925), - [sym_cast_variable] = STATE(626), - [sym_assignment_expression] = STATE(925), - [sym_augmented_assignment_expression] = STATE(925), - [sym_member_access_expression] = STATE(626), - [sym_nullsafe_member_access_expression] = STATE(626), - [sym_scoped_property_access_expression] = STATE(626), - [sym_list_literal] = STATE(2445), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(615), - [sym_scoped_call_expression] = STATE(615), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(615), - [sym_nullsafe_member_call_expression] = STATE(615), - [sym_subscript_expression] = STATE(615), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(615), - [sym_variable_name] = STATE(615), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [sym_comment] = ACTIONS(5), - }, - [424] = { - [sym_text_interpolation] = STATE(424), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(993), - [sym_unary_op_expression] = STATE(993), - [sym_exponentiation_expression] = STATE(925), - [sym_clone_expression] = STATE(993), - [sym__primary_expression] = STATE(993), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(925), - [sym_cast_variable] = STATE(604), - [sym_assignment_expression] = STATE(925), - [sym_augmented_assignment_expression] = STATE(925), - [sym_member_access_expression] = STATE(604), - [sym_nullsafe_member_access_expression] = STATE(604), - [sym_scoped_property_access_expression] = STATE(604), - [sym_list_literal] = STATE(2384), - [sym__list_destructing] = STATE(2157), - [sym__array_destructing] = STATE(2157), - [sym_function_call_expression] = STATE(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [sym_comment] = ACTIONS(5), - }, - [425] = { - [sym_text_interpolation] = STATE(425), - [sym_else_if_clause] = STATE(478), - [sym_else_clause] = STATE(477), - [aux_sym_if_statement_repeat1] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(953), - [sym_name] = ACTIONS(955), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(953), - [aux_sym_function_static_declaration_token1] = ACTIONS(955), - [aux_sym_global_declaration_token1] = ACTIONS(955), - [aux_sym_namespace_definition_token1] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(955), - [anon_sym_BSLASH] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [aux_sym_trait_declaration_token1] = ACTIONS(955), - [aux_sym_interface_declaration_token1] = ACTIONS(955), - [aux_sym_enum_declaration_token1] = ACTIONS(955), - [aux_sym_enum_case_token1] = ACTIONS(955), - [aux_sym_class_declaration_token1] = ACTIONS(955), - [aux_sym_final_modifier_token1] = ACTIONS(955), - [aux_sym_abstract_modifier_token1] = ACTIONS(955), - [aux_sym_readonly_modifier_token1] = ACTIONS(955), - [aux_sym_visibility_modifier_token1] = ACTIONS(955), - [aux_sym_visibility_modifier_token2] = ACTIONS(955), - [aux_sym_visibility_modifier_token3] = ACTIONS(955), - [aux_sym__arrow_function_header_token1] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(953), - [aux_sym_cast_type_token1] = ACTIONS(955), - [aux_sym_echo_statement_token1] = ACTIONS(955), - [anon_sym_unset] = ACTIONS(955), - [aux_sym_declare_statement_token1] = ACTIONS(955), - [aux_sym_declare_statement_token2] = ACTIONS(955), - [sym_float] = ACTIONS(955), - [aux_sym_try_statement_token1] = ACTIONS(955), - [aux_sym_goto_statement_token1] = ACTIONS(955), - [aux_sym_continue_statement_token1] = ACTIONS(955), - [aux_sym_break_statement_token1] = ACTIONS(955), - [sym_integer] = ACTIONS(955), - [aux_sym_return_statement_token1] = ACTIONS(955), - [aux_sym_throw_expression_token1] = ACTIONS(955), - [aux_sym_while_statement_token1] = ACTIONS(955), - [aux_sym_while_statement_token2] = ACTIONS(955), - [aux_sym_do_statement_token1] = ACTIONS(955), - [aux_sym_for_statement_token1] = ACTIONS(955), - [aux_sym_for_statement_token2] = ACTIONS(955), - [aux_sym_foreach_statement_token1] = ACTIONS(955), - [aux_sym_foreach_statement_token2] = ACTIONS(955), - [aux_sym_if_statement_token1] = ACTIONS(955), - [aux_sym_if_statement_token2] = ACTIONS(955), - [aux_sym_else_if_clause_token1] = ACTIONS(971), - [aux_sym_else_clause_token1] = ACTIONS(974), - [aux_sym_match_expression_token1] = ACTIONS(955), - [aux_sym_match_default_expression_token1] = ACTIONS(955), - [aux_sym_switch_statement_token1] = ACTIONS(955), - [aux_sym_switch_block_token1] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_TILDE] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(953), - [aux_sym_clone_expression_token1] = ACTIONS(955), - [aux_sym_print_intrinsic_token1] = ACTIONS(955), - [aux_sym_object_creation_expression_token1] = ACTIONS(955), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(953), - [aux_sym__list_destructing_token1] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_self] = ACTIONS(955), - [anon_sym_parent] = ACTIONS(955), - [anon_sym_POUND_LBRACK] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(953), - [aux_sym_encapsed_string_token1] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [aux_sym_string_token1] = ACTIONS(953), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(953), - [sym_boolean] = ACTIONS(955), - [sym_null] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [aux_sym_yield_expression_token1] = ACTIONS(955), - [aux_sym_include_expression_token1] = ACTIONS(955), - [aux_sym_include_once_expression_token1] = ACTIONS(955), - [aux_sym_require_expression_token1] = ACTIONS(955), - [aux_sym_require_once_expression_token1] = ACTIONS(955), - [sym_comment] = ACTIONS(5), - }, - [426] = { - [sym_text_interpolation] = STATE(426), - [sym_else_if_clause] = STATE(478), - [aux_sym_if_statement_repeat1] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(977), - [sym_name] = ACTIONS(979), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(977), - [aux_sym_function_static_declaration_token1] = ACTIONS(979), - [aux_sym_global_declaration_token1] = ACTIONS(979), - [aux_sym_namespace_definition_token1] = ACTIONS(979), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(979), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(979), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(979), - [anon_sym_BSLASH] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [aux_sym_trait_declaration_token1] = ACTIONS(979), - [aux_sym_interface_declaration_token1] = ACTIONS(979), - [aux_sym_enum_declaration_token1] = ACTIONS(979), - [aux_sym_enum_case_token1] = ACTIONS(979), - [aux_sym_class_declaration_token1] = ACTIONS(979), - [aux_sym_final_modifier_token1] = ACTIONS(979), - [aux_sym_abstract_modifier_token1] = ACTIONS(979), - [aux_sym_readonly_modifier_token1] = ACTIONS(979), - [aux_sym_visibility_modifier_token1] = ACTIONS(979), - [aux_sym_visibility_modifier_token2] = ACTIONS(979), - [aux_sym_visibility_modifier_token3] = ACTIONS(979), - [aux_sym__arrow_function_header_token1] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(977), - [aux_sym_cast_type_token1] = ACTIONS(979), - [aux_sym_echo_statement_token1] = ACTIONS(979), - [anon_sym_unset] = ACTIONS(979), - [aux_sym_declare_statement_token1] = ACTIONS(979), - [aux_sym_declare_statement_token2] = ACTIONS(979), - [sym_float] = ACTIONS(979), - [aux_sym_try_statement_token1] = ACTIONS(979), - [aux_sym_goto_statement_token1] = ACTIONS(979), - [aux_sym_continue_statement_token1] = ACTIONS(979), - [aux_sym_break_statement_token1] = ACTIONS(979), - [sym_integer] = ACTIONS(979), - [aux_sym_return_statement_token1] = ACTIONS(979), - [aux_sym_throw_expression_token1] = ACTIONS(979), - [aux_sym_while_statement_token1] = ACTIONS(979), - [aux_sym_while_statement_token2] = ACTIONS(979), - [aux_sym_do_statement_token1] = ACTIONS(979), - [aux_sym_for_statement_token1] = ACTIONS(979), - [aux_sym_for_statement_token2] = ACTIONS(979), - [aux_sym_foreach_statement_token1] = ACTIONS(979), - [aux_sym_foreach_statement_token2] = ACTIONS(979), - [aux_sym_if_statement_token1] = ACTIONS(979), - [aux_sym_if_statement_token2] = ACTIONS(979), - [aux_sym_else_if_clause_token1] = ACTIONS(981), - [aux_sym_else_clause_token1] = ACTIONS(979), - [aux_sym_match_expression_token1] = ACTIONS(979), - [aux_sym_match_default_expression_token1] = ACTIONS(979), - [aux_sym_switch_statement_token1] = ACTIONS(979), - [aux_sym_switch_block_token1] = ACTIONS(979), - [anon_sym_AT] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [aux_sym_clone_expression_token1] = ACTIONS(979), - [aux_sym_print_intrinsic_token1] = ACTIONS(979), - [aux_sym_object_creation_expression_token1] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [aux_sym__list_destructing_token1] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_self] = ACTIONS(979), - [anon_sym_parent] = ACTIONS(979), - [anon_sym_POUND_LBRACK] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(977), - [aux_sym_encapsed_string_token1] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(977), - [aux_sym_string_token1] = ACTIONS(977), - [anon_sym_LT_LT_LT] = ACTIONS(977), - [anon_sym_BQUOTE] = ACTIONS(977), - [sym_boolean] = ACTIONS(979), - [sym_null] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(977), - [aux_sym_yield_expression_token1] = ACTIONS(979), - [aux_sym_include_expression_token1] = ACTIONS(979), - [aux_sym_include_once_expression_token1] = ACTIONS(979), - [aux_sym_require_expression_token1] = ACTIONS(979), - [aux_sym_require_once_expression_token1] = ACTIONS(979), - [sym_comment] = ACTIONS(5), - }, - [427] = { - [sym_text_interpolation] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(984), - [sym_name] = ACTIONS(986), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(986), - [aux_sym_enum_case_token1] = ACTIONS(986), - [aux_sym_class_declaration_token1] = ACTIONS(986), - [aux_sym_final_modifier_token1] = ACTIONS(986), - [aux_sym_abstract_modifier_token1] = ACTIONS(986), - [aux_sym_readonly_modifier_token1] = ACTIONS(986), - [aux_sym_visibility_modifier_token1] = ACTIONS(986), - [aux_sym_visibility_modifier_token2] = ACTIONS(986), - [aux_sym_visibility_modifier_token3] = ACTIONS(986), - [aux_sym__arrow_function_header_token1] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(984), - [aux_sym_cast_type_token1] = ACTIONS(986), - [aux_sym_echo_statement_token1] = ACTIONS(986), - [anon_sym_unset] = ACTIONS(986), - [aux_sym_declare_statement_token1] = ACTIONS(986), - [aux_sym_declare_statement_token2] = ACTIONS(986), - [sym_float] = ACTIONS(986), - [aux_sym_try_statement_token1] = ACTIONS(986), - [aux_sym_catch_clause_token1] = ACTIONS(986), - [aux_sym_finally_clause_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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(986), - [aux_sym_print_intrinsic_token1] = ACTIONS(986), - [aux_sym_object_creation_expression_token1] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(984), - [aux_sym__list_destructing_token1] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_self] = ACTIONS(986), - [anon_sym_parent] = ACTIONS(986), - [anon_sym_POUND_LBRACK] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [aux_sym_encapsed_string_token1] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [aux_sym_string_token1] = ACTIONS(984), - [anon_sym_LT_LT_LT] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [sym_boolean] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [aux_sym_yield_expression_token1] = ACTIONS(986), - [aux_sym_include_expression_token1] = ACTIONS(986), - [aux_sym_include_once_expression_token1] = ACTIONS(986), - [aux_sym_require_expression_token1] = ACTIONS(986), - [aux_sym_require_once_expression_token1] = ACTIONS(986), - [sym_comment] = ACTIONS(5), - }, - [428] = { - [sym_text_interpolation] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(988), - [sym_name] = ACTIONS(990), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(990), - [aux_sym_enum_case_token1] = ACTIONS(990), - [aux_sym_class_declaration_token1] = ACTIONS(990), - [aux_sym_final_modifier_token1] = ACTIONS(990), - [aux_sym_abstract_modifier_token1] = ACTIONS(990), - [aux_sym_readonly_modifier_token1] = 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_header_token1] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(988), - [aux_sym_cast_type_token1] = ACTIONS(990), - [aux_sym_echo_statement_token1] = ACTIONS(990), - [anon_sym_unset] = ACTIONS(990), - [aux_sym_declare_statement_token1] = ACTIONS(990), - [aux_sym_declare_statement_token2] = ACTIONS(990), - [sym_float] = ACTIONS(990), - [aux_sym_try_statement_token1] = ACTIONS(990), - [aux_sym_catch_clause_token1] = ACTIONS(990), - [aux_sym_finally_clause_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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(990), - [aux_sym_print_intrinsic_token1] = ACTIONS(990), - [aux_sym_object_creation_expression_token1] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(988), - [aux_sym__list_destructing_token1] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_self] = ACTIONS(990), - [anon_sym_parent] = ACTIONS(990), - [anon_sym_POUND_LBRACK] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [aux_sym_encapsed_string_token1] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [aux_sym_string_token1] = ACTIONS(988), - [anon_sym_LT_LT_LT] = ACTIONS(988), - [anon_sym_BQUOTE] = ACTIONS(988), - [sym_boolean] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(988), - [aux_sym_yield_expression_token1] = 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), - [sym_comment] = ACTIONS(5), - }, - [429] = { - [sym_text_interpolation] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(992), - [sym_name] = ACTIONS(994), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(994), - [aux_sym_enum_case_token1] = ACTIONS(994), - [aux_sym_class_declaration_token1] = ACTIONS(994), - [aux_sym_final_modifier_token1] = ACTIONS(994), - [aux_sym_abstract_modifier_token1] = ACTIONS(994), - [aux_sym_readonly_modifier_token1] = 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_header_token1] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(992), - [aux_sym_cast_type_token1] = ACTIONS(994), - [aux_sym_echo_statement_token1] = ACTIONS(994), - [anon_sym_unset] = ACTIONS(994), - [aux_sym_declare_statement_token1] = ACTIONS(994), - [aux_sym_declare_statement_token2] = ACTIONS(994), - [sym_float] = ACTIONS(994), - [aux_sym_try_statement_token1] = ACTIONS(994), - [aux_sym_catch_clause_token1] = ACTIONS(994), - [aux_sym_finally_clause_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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(994), - [aux_sym_print_intrinsic_token1] = ACTIONS(994), - [aux_sym_object_creation_expression_token1] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym__list_destructing_token1] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_self] = ACTIONS(994), - [anon_sym_parent] = ACTIONS(994), - [anon_sym_POUND_LBRACK] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [aux_sym_encapsed_string_token1] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [aux_sym_string_token1] = ACTIONS(992), - [anon_sym_LT_LT_LT] = ACTIONS(992), - [anon_sym_BQUOTE] = ACTIONS(992), - [sym_boolean] = ACTIONS(994), - [sym_null] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(992), - [aux_sym_yield_expression_token1] = 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), - [sym_comment] = ACTIONS(5), - }, - [430] = { - [sym_text_interpolation] = STATE(430), - [sym_qualified_name] = STATE(830), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym_match_expression] = STATE(2450), - [sym__unary_expression] = STATE(1030), - [sym_unary_op_expression] = STATE(1120), - [sym_exponentiation_expression] = STATE(1119), - [sym_clone_expression] = STATE(1120), - [sym__primary_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(822), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_expression] = STATE(1119), - [sym_cast_variable] = STATE(624), - [sym_member_access_expression] = STATE(624), - [sym_nullsafe_member_access_expression] = STATE(624), - [sym_scoped_property_access_expression] = STATE(624), - [sym_function_call_expression] = STATE(583), - [sym_scoped_call_expression] = STATE(583), - [sym__scope_resolution_qualifier] = STATE(2524), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(583), - [sym_nullsafe_member_call_expression] = STATE(583), - [sym_subscript_expression] = STATE(583), - [sym__dereferencable_expression] = STATE(1712), - [sym_array_creation_expression] = STATE(822), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(822), - [sym_dynamic_variable_name] = STATE(583), - [sym_variable_name] = STATE(583), - [sym_include_expression] = STATE(1030), - [sym_include_once_expression] = STATE(1030), - [sym__reserved_identifier] = STATE(1508), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [sym_comment] = ACTIONS(5), - }, - [431] = { - [sym_text_interpolation] = STATE(431), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(2583), - [sym__unary_expression] = STATE(930), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(579), - [sym_member_access_expression] = STATE(579), - [sym_nullsafe_member_access_expression] = STATE(579), - [sym_scoped_property_access_expression] = STATE(579), - [sym_function_call_expression] = STATE(564), - [sym_scoped_call_expression] = STATE(564), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(564), - [sym_nullsafe_member_call_expression] = STATE(564), - [sym_subscript_expression] = STATE(564), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(564), - [sym_variable_name] = STATE(564), - [sym_include_expression] = STATE(930), - [sym_include_once_expression] = STATE(930), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [sym_comment] = ACTIONS(5), - }, - [432] = { - [sym_text_interpolation] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(1000), - [sym_name] = ACTIONS(1002), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1000), - [aux_sym_function_static_declaration_token1] = ACTIONS(1002), - [aux_sym_global_declaration_token1] = ACTIONS(1002), - [aux_sym_namespace_definition_token1] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1002), - [anon_sym_BSLASH] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [aux_sym_trait_declaration_token1] = ACTIONS(1002), - [aux_sym_interface_declaration_token1] = ACTIONS(1002), - [aux_sym_enum_declaration_token1] = ACTIONS(1002), - [aux_sym_enum_case_token1] = ACTIONS(1002), - [aux_sym_class_declaration_token1] = ACTIONS(1002), - [aux_sym_final_modifier_token1] = ACTIONS(1002), - [aux_sym_abstract_modifier_token1] = ACTIONS(1002), - [aux_sym_readonly_modifier_token1] = ACTIONS(1002), - [aux_sym_visibility_modifier_token1] = ACTIONS(1002), - [aux_sym_visibility_modifier_token2] = ACTIONS(1002), - [aux_sym_visibility_modifier_token3] = ACTIONS(1002), - [aux_sym__arrow_function_header_token1] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1000), - [aux_sym_cast_type_token1] = ACTIONS(1002), - [aux_sym_echo_statement_token1] = ACTIONS(1002), - [anon_sym_unset] = ACTIONS(1002), - [aux_sym_declare_statement_token1] = ACTIONS(1002), - [aux_sym_declare_statement_token2] = ACTIONS(1002), - [sym_float] = ACTIONS(1002), - [aux_sym_try_statement_token1] = ACTIONS(1002), - [aux_sym_catch_clause_token1] = ACTIONS(1002), - [aux_sym_finally_clause_token1] = ACTIONS(1002), - [aux_sym_goto_statement_token1] = ACTIONS(1002), - [aux_sym_continue_statement_token1] = ACTIONS(1002), - [aux_sym_break_statement_token1] = ACTIONS(1002), - [sym_integer] = ACTIONS(1002), - [aux_sym_return_statement_token1] = ACTIONS(1002), - [aux_sym_throw_expression_token1] = ACTIONS(1002), - [aux_sym_while_statement_token1] = ACTIONS(1002), - [aux_sym_while_statement_token2] = ACTIONS(1002), - [aux_sym_do_statement_token1] = ACTIONS(1002), - [aux_sym_for_statement_token1] = ACTIONS(1002), - [aux_sym_for_statement_token2] = ACTIONS(1002), - [aux_sym_foreach_statement_token1] = ACTIONS(1002), - [aux_sym_foreach_statement_token2] = ACTIONS(1002), - [aux_sym_if_statement_token1] = ACTIONS(1002), - [aux_sym_if_statement_token2] = ACTIONS(1002), - [aux_sym_else_if_clause_token1] = ACTIONS(1002), - [aux_sym_else_clause_token1] = ACTIONS(1002), - [aux_sym_match_expression_token1] = ACTIONS(1002), - [aux_sym_match_default_expression_token1] = ACTIONS(1002), - [aux_sym_switch_statement_token1] = ACTIONS(1002), - [aux_sym_switch_block_token1] = ACTIONS(1002), - [anon_sym_AT] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [aux_sym_clone_expression_token1] = ACTIONS(1002), - [aux_sym_print_intrinsic_token1] = ACTIONS(1002), - [aux_sym_object_creation_expression_token1] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [aux_sym__list_destructing_token1] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_self] = ACTIONS(1002), - [anon_sym_parent] = ACTIONS(1002), - [anon_sym_POUND_LBRACK] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [aux_sym_encapsed_string_token1] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [aux_sym_string_token1] = ACTIONS(1000), - [anon_sym_LT_LT_LT] = ACTIONS(1000), - [anon_sym_BQUOTE] = ACTIONS(1000), - [sym_boolean] = ACTIONS(1002), - [sym_null] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [aux_sym_yield_expression_token1] = ACTIONS(1002), - [aux_sym_include_expression_token1] = ACTIONS(1002), - [aux_sym_include_once_expression_token1] = ACTIONS(1002), - [aux_sym_require_expression_token1] = ACTIONS(1002), - [aux_sym_require_once_expression_token1] = ACTIONS(1002), - [sym_comment] = ACTIONS(5), - }, - [433] = { - [sym_text_interpolation] = STATE(433), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(2390), - [sym__unary_expression] = STATE(930), - [sym_unary_op_expression] = STATE(989), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(989), - [sym__primary_expression] = STATE(989), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(579), - [sym_member_access_expression] = STATE(579), - [sym_nullsafe_member_access_expression] = STATE(579), - [sym_scoped_property_access_expression] = STATE(579), - [sym_function_call_expression] = STATE(564), - [sym_scoped_call_expression] = STATE(564), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(564), - [sym_nullsafe_member_call_expression] = STATE(564), - [sym_subscript_expression] = STATE(564), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(564), - [sym_variable_name] = STATE(564), - [sym_include_expression] = STATE(930), - [sym_include_once_expression] = STATE(930), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [sym_comment] = ACTIONS(5), - }, - [434] = { - [sym_text_interpolation] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(1004), - [sym_name] = ACTIONS(1006), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1004), - [aux_sym_function_static_declaration_token1] = ACTIONS(1006), - [aux_sym_global_declaration_token1] = ACTIONS(1006), - [aux_sym_namespace_definition_token1] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1006), - [anon_sym_BSLASH] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [aux_sym_trait_declaration_token1] = ACTIONS(1006), - [aux_sym_interface_declaration_token1] = ACTIONS(1006), - [aux_sym_enum_declaration_token1] = ACTIONS(1006), - [aux_sym_enum_case_token1] = ACTIONS(1006), - [aux_sym_class_declaration_token1] = ACTIONS(1006), - [aux_sym_final_modifier_token1] = ACTIONS(1006), - [aux_sym_abstract_modifier_token1] = ACTIONS(1006), - [aux_sym_readonly_modifier_token1] = ACTIONS(1006), - [aux_sym_visibility_modifier_token1] = ACTIONS(1006), - [aux_sym_visibility_modifier_token2] = ACTIONS(1006), - [aux_sym_visibility_modifier_token3] = ACTIONS(1006), - [aux_sym__arrow_function_header_token1] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1004), - [aux_sym_cast_type_token1] = ACTIONS(1006), - [aux_sym_echo_statement_token1] = ACTIONS(1006), - [anon_sym_unset] = ACTIONS(1006), - [aux_sym_declare_statement_token1] = ACTIONS(1006), - [aux_sym_declare_statement_token2] = ACTIONS(1006), - [sym_float] = ACTIONS(1006), - [aux_sym_try_statement_token1] = ACTIONS(1006), - [aux_sym_catch_clause_token1] = ACTIONS(1006), - [aux_sym_finally_clause_token1] = ACTIONS(1006), - [aux_sym_goto_statement_token1] = ACTIONS(1006), - [aux_sym_continue_statement_token1] = ACTIONS(1006), - [aux_sym_break_statement_token1] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [aux_sym_return_statement_token1] = ACTIONS(1006), - [aux_sym_throw_expression_token1] = ACTIONS(1006), - [aux_sym_while_statement_token1] = ACTIONS(1006), - [aux_sym_while_statement_token2] = ACTIONS(1006), - [aux_sym_do_statement_token1] = ACTIONS(1006), - [aux_sym_for_statement_token1] = ACTIONS(1006), - [aux_sym_for_statement_token2] = ACTIONS(1006), - [aux_sym_foreach_statement_token1] = ACTIONS(1006), - [aux_sym_foreach_statement_token2] = ACTIONS(1006), - [aux_sym_if_statement_token1] = ACTIONS(1006), - [aux_sym_if_statement_token2] = ACTIONS(1006), - [aux_sym_else_if_clause_token1] = ACTIONS(1006), - [aux_sym_else_clause_token1] = ACTIONS(1006), - [aux_sym_match_expression_token1] = ACTIONS(1006), - [aux_sym_match_default_expression_token1] = ACTIONS(1006), - [aux_sym_switch_statement_token1] = ACTIONS(1006), - [aux_sym_switch_block_token1] = ACTIONS(1006), - [anon_sym_AT] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [aux_sym_clone_expression_token1] = ACTIONS(1006), - [aux_sym_print_intrinsic_token1] = ACTIONS(1006), - [aux_sym_object_creation_expression_token1] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [aux_sym__list_destructing_token1] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_self] = ACTIONS(1006), - [anon_sym_parent] = ACTIONS(1006), - [anon_sym_POUND_LBRACK] = ACTIONS(1004), - [anon_sym_SQUOTE] = ACTIONS(1004), - [aux_sym_encapsed_string_token1] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [aux_sym_string_token1] = ACTIONS(1004), - [anon_sym_LT_LT_LT] = ACTIONS(1004), - [anon_sym_BQUOTE] = ACTIONS(1004), - [sym_boolean] = ACTIONS(1006), - [sym_null] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1004), - [aux_sym_yield_expression_token1] = ACTIONS(1006), - [aux_sym_include_expression_token1] = ACTIONS(1006), - [aux_sym_include_once_expression_token1] = ACTIONS(1006), - [aux_sym_require_expression_token1] = ACTIONS(1006), - [aux_sym_require_once_expression_token1] = ACTIONS(1006), - [sym_comment] = ACTIONS(5), - }, - [435] = { - [sym_text_interpolation] = STATE(435), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(2434), - [sym__unary_expression] = STATE(930), - [sym_unary_op_expression] = STATE(1147), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(1147), - [sym__primary_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(579), - [sym_member_access_expression] = STATE(579), - [sym_nullsafe_member_access_expression] = STATE(579), - [sym_scoped_property_access_expression] = STATE(579), - [sym_function_call_expression] = STATE(564), - [sym_scoped_call_expression] = STATE(564), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(564), - [sym_nullsafe_member_call_expression] = STATE(564), - [sym_subscript_expression] = STATE(564), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(564), - [sym_variable_name] = STATE(564), - [sym_include_expression] = STATE(930), - [sym_include_once_expression] = STATE(930), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [sym_comment] = ACTIONS(5), - }, - [436] = { - [sym_text_interpolation] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(1008), - [sym_name] = ACTIONS(1010), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1008), - [aux_sym_function_static_declaration_token1] = ACTIONS(1010), - [aux_sym_global_declaration_token1] = ACTIONS(1010), - [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_enum_declaration_token1] = ACTIONS(1010), - [aux_sym_enum_case_token1] = ACTIONS(1010), - [aux_sym_class_declaration_token1] = ACTIONS(1010), - [aux_sym_final_modifier_token1] = ACTIONS(1010), - [aux_sym_abstract_modifier_token1] = ACTIONS(1010), - [aux_sym_readonly_modifier_token1] = 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_header_token1] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1008), - [aux_sym_cast_type_token1] = ACTIONS(1010), - [aux_sym_echo_statement_token1] = ACTIONS(1010), - [anon_sym_unset] = ACTIONS(1010), - [aux_sym_declare_statement_token1] = ACTIONS(1010), - [aux_sym_declare_statement_token2] = ACTIONS(1010), - [sym_float] = ACTIONS(1010), - [aux_sym_try_statement_token1] = ACTIONS(1010), - [aux_sym_catch_clause_token1] = ACTIONS(1010), - [aux_sym_finally_clause_token1] = ACTIONS(1010), - [aux_sym_goto_statement_token1] = ACTIONS(1010), - [aux_sym_continue_statement_token1] = ACTIONS(1010), - [aux_sym_break_statement_token1] = ACTIONS(1010), - [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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(1010), - [aux_sym_print_intrinsic_token1] = ACTIONS(1010), - [aux_sym_object_creation_expression_token1] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [aux_sym__list_destructing_token1] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_self] = ACTIONS(1010), - [anon_sym_parent] = ACTIONS(1010), - [anon_sym_POUND_LBRACK] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(1008), - [aux_sym_encapsed_string_token1] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [aux_sym_string_token1] = ACTIONS(1008), - [anon_sym_LT_LT_LT] = ACTIONS(1008), - [anon_sym_BQUOTE] = ACTIONS(1008), - [sym_boolean] = ACTIONS(1010), - [sym_null] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1008), - [aux_sym_yield_expression_token1] = 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), - [sym_comment] = ACTIONS(5), - }, - [437] = { - [sym_text_interpolation] = STATE(437), - [sym_qualified_name] = STATE(695), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym_match_expression] = STATE(2583), - [sym__unary_expression] = STATE(930), - [sym_unary_op_expression] = STATE(982), - [sym_exponentiation_expression] = STATE(895), - [sym_clone_expression] = STATE(982), - [sym__primary_expression] = STATE(982), - [sym_parenthesized_expression] = STATE(685), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_expression] = STATE(895), - [sym_cast_variable] = STATE(623), - [sym_member_access_expression] = STATE(623), - [sym_nullsafe_member_access_expression] = STATE(623), - [sym_scoped_property_access_expression] = STATE(623), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2449), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1624), - [sym_array_creation_expression] = STATE(685), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(685), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_include_expression] = STATE(930), - [sym_include_once_expression] = STATE(930), - [sym__reserved_identifier] = STATE(1518), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(823), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [sym_comment] = ACTIONS(5), - }, - [438] = { - [sym_text_interpolation] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(1012), - [sym_name] = ACTIONS(1014), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1016), - [aux_sym_function_static_declaration_token1] = ACTIONS(1014), - [aux_sym_global_declaration_token1] = ACTIONS(1014), - [aux_sym_namespace_definition_token1] = ACTIONS(1014), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1014), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1014), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1014), - [anon_sym_BSLASH] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [aux_sym_trait_declaration_token1] = ACTIONS(1014), - [aux_sym_interface_declaration_token1] = ACTIONS(1014), - [aux_sym_enum_declaration_token1] = ACTIONS(1014), - [aux_sym_enum_case_token1] = ACTIONS(1014), - [aux_sym_class_declaration_token1] = ACTIONS(1014), - [aux_sym_final_modifier_token1] = ACTIONS(1014), - [aux_sym_abstract_modifier_token1] = ACTIONS(1014), - [aux_sym_readonly_modifier_token1] = ACTIONS(1014), - [aux_sym_visibility_modifier_token1] = ACTIONS(1014), - [aux_sym_visibility_modifier_token2] = ACTIONS(1014), - [aux_sym_visibility_modifier_token3] = ACTIONS(1014), - [aux_sym__arrow_function_header_token1] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1012), - [aux_sym_cast_type_token1] = ACTIONS(1014), - [aux_sym_echo_statement_token1] = ACTIONS(1014), - [anon_sym_unset] = ACTIONS(1014), - [aux_sym_declare_statement_token1] = ACTIONS(1014), - [aux_sym_declare_statement_token2] = ACTIONS(1014), - [sym_float] = ACTIONS(1014), - [aux_sym_try_statement_token1] = ACTIONS(1014), - [aux_sym_goto_statement_token1] = ACTIONS(1014), - [aux_sym_continue_statement_token1] = ACTIONS(1014), - [aux_sym_break_statement_token1] = ACTIONS(1014), - [sym_integer] = ACTIONS(1014), - [aux_sym_return_statement_token1] = ACTIONS(1014), - [aux_sym_throw_expression_token1] = ACTIONS(1014), - [aux_sym_while_statement_token1] = ACTIONS(1014), - [aux_sym_while_statement_token2] = ACTIONS(1014), - [aux_sym_do_statement_token1] = ACTIONS(1014), - [aux_sym_for_statement_token1] = ACTIONS(1014), - [aux_sym_for_statement_token2] = ACTIONS(1014), - [aux_sym_foreach_statement_token1] = ACTIONS(1014), - [aux_sym_foreach_statement_token2] = ACTIONS(1014), - [aux_sym_if_statement_token1] = ACTIONS(1014), - [aux_sym_if_statement_token2] = ACTIONS(1014), - [aux_sym_else_if_clause_token1] = ACTIONS(1014), - [aux_sym_else_clause_token1] = ACTIONS(1014), - [aux_sym_match_expression_token1] = ACTIONS(1014), - [aux_sym_match_default_expression_token1] = ACTIONS(1014), - [aux_sym_switch_statement_token1] = ACTIONS(1014), - [aux_sym_switch_block_token1] = ACTIONS(1014), - [anon_sym_AT] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(1012), - [aux_sym_clone_expression_token1] = ACTIONS(1014), - [aux_sym_print_intrinsic_token1] = ACTIONS(1014), - [aux_sym_object_creation_expression_token1] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [aux_sym__list_destructing_token1] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_self] = ACTIONS(1014), - [anon_sym_parent] = ACTIONS(1014), - [anon_sym_POUND_LBRACK] = ACTIONS(1012), - [anon_sym_SQUOTE] = ACTIONS(1012), - [aux_sym_encapsed_string_token1] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [aux_sym_string_token1] = ACTIONS(1012), - [anon_sym_LT_LT_LT] = ACTIONS(1012), - [anon_sym_BQUOTE] = ACTIONS(1012), - [sym_boolean] = ACTIONS(1014), - [sym_null] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1012), - [aux_sym_yield_expression_token1] = ACTIONS(1014), - [aux_sym_include_expression_token1] = ACTIONS(1014), - [aux_sym_include_once_expression_token1] = ACTIONS(1014), - [aux_sym_require_expression_token1] = ACTIONS(1014), - [aux_sym_require_once_expression_token1] = ACTIONS(1014), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1016), - }, - [439] = { - [sym_text_interpolation] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(1018), - [sym_name] = ACTIONS(1020), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1022), - [aux_sym_function_static_declaration_token1] = ACTIONS(1020), - [aux_sym_global_declaration_token1] = ACTIONS(1020), - [aux_sym_namespace_definition_token1] = ACTIONS(1020), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1020), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1020), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1020), - [anon_sym_BSLASH] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [aux_sym_trait_declaration_token1] = ACTIONS(1020), - [aux_sym_interface_declaration_token1] = ACTIONS(1020), - [aux_sym_enum_declaration_token1] = ACTIONS(1020), - [aux_sym_enum_case_token1] = ACTIONS(1020), - [aux_sym_class_declaration_token1] = ACTIONS(1020), - [aux_sym_final_modifier_token1] = ACTIONS(1020), - [aux_sym_abstract_modifier_token1] = ACTIONS(1020), - [aux_sym_readonly_modifier_token1] = ACTIONS(1020), - [aux_sym_visibility_modifier_token1] = ACTIONS(1020), - [aux_sym_visibility_modifier_token2] = ACTIONS(1020), - [aux_sym_visibility_modifier_token3] = ACTIONS(1020), - [aux_sym__arrow_function_header_token1] = ACTIONS(1020), - [anon_sym_LPAREN] = ACTIONS(1018), - [aux_sym_cast_type_token1] = ACTIONS(1020), - [aux_sym_echo_statement_token1] = ACTIONS(1020), - [anon_sym_unset] = ACTIONS(1020), - [aux_sym_declare_statement_token1] = ACTIONS(1020), - [aux_sym_declare_statement_token2] = ACTIONS(1020), - [sym_float] = ACTIONS(1020), - [aux_sym_try_statement_token1] = ACTIONS(1020), - [aux_sym_goto_statement_token1] = ACTIONS(1020), - [aux_sym_continue_statement_token1] = ACTIONS(1020), - [aux_sym_break_statement_token1] = ACTIONS(1020), - [sym_integer] = ACTIONS(1020), - [aux_sym_return_statement_token1] = ACTIONS(1020), - [aux_sym_throw_expression_token1] = ACTIONS(1020), - [aux_sym_while_statement_token1] = ACTIONS(1020), - [aux_sym_while_statement_token2] = ACTIONS(1020), - [aux_sym_do_statement_token1] = ACTIONS(1020), - [aux_sym_for_statement_token1] = ACTIONS(1020), - [aux_sym_for_statement_token2] = ACTIONS(1020), - [aux_sym_foreach_statement_token1] = ACTIONS(1020), - [aux_sym_foreach_statement_token2] = ACTIONS(1020), - [aux_sym_if_statement_token1] = ACTIONS(1020), - [aux_sym_if_statement_token2] = ACTIONS(1020), - [aux_sym_else_if_clause_token1] = ACTIONS(1020), - [aux_sym_else_clause_token1] = ACTIONS(1020), - [aux_sym_match_expression_token1] = ACTIONS(1020), - [aux_sym_match_default_expression_token1] = ACTIONS(1020), - [aux_sym_switch_statement_token1] = ACTIONS(1020), - [aux_sym_switch_block_token1] = ACTIONS(1020), - [anon_sym_AT] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [aux_sym_clone_expression_token1] = ACTIONS(1020), - [aux_sym_print_intrinsic_token1] = ACTIONS(1020), - [aux_sym_object_creation_expression_token1] = ACTIONS(1020), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [aux_sym__list_destructing_token1] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_self] = ACTIONS(1020), - [anon_sym_parent] = ACTIONS(1020), - [anon_sym_POUND_LBRACK] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [aux_sym_encapsed_string_token1] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [aux_sym_string_token1] = ACTIONS(1018), - [anon_sym_LT_LT_LT] = ACTIONS(1018), - [anon_sym_BQUOTE] = ACTIONS(1018), - [sym_boolean] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1018), - [aux_sym_yield_expression_token1] = ACTIONS(1020), - [aux_sym_include_expression_token1] = ACTIONS(1020), - [aux_sym_include_once_expression_token1] = ACTIONS(1020), - [aux_sym_require_expression_token1] = ACTIONS(1020), - [aux_sym_require_once_expression_token1] = ACTIONS(1020), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1022), - }, - [440] = { - [sym_text_interpolation] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(1024), - [sym_name] = ACTIONS(1026), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(1026), - [aux_sym_enum_case_token1] = ACTIONS(1026), - [aux_sym_class_declaration_token1] = ACTIONS(1026), - [aux_sym_final_modifier_token1] = ACTIONS(1026), - [aux_sym_abstract_modifier_token1] = ACTIONS(1026), - [aux_sym_readonly_modifier_token1] = ACTIONS(1026), - [aux_sym_visibility_modifier_token1] = ACTIONS(1026), - [aux_sym_visibility_modifier_token2] = ACTIONS(1026), - [aux_sym_visibility_modifier_token3] = ACTIONS(1026), - [aux_sym__arrow_function_header_token1] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1024), - [aux_sym_cast_type_token1] = ACTIONS(1026), - [aux_sym_echo_statement_token1] = ACTIONS(1026), - [anon_sym_unset] = ACTIONS(1026), - [aux_sym_declare_statement_token1] = ACTIONS(1026), - [aux_sym_declare_statement_token2] = ACTIONS(1026), - [sym_float] = ACTIONS(1026), - [aux_sym_try_statement_token1] = ACTIONS(1026), - [aux_sym_goto_statement_token1] = ACTIONS(1026), - [aux_sym_continue_statement_token1] = ACTIONS(1026), - [aux_sym_break_statement_token1] = ACTIONS(1026), - [sym_integer] = ACTIONS(1026), - [aux_sym_return_statement_token1] = ACTIONS(1026), - [aux_sym_throw_expression_token1] = ACTIONS(1026), - [aux_sym_while_statement_token1] = ACTIONS(1026), - [aux_sym_while_statement_token2] = ACTIONS(1026), - [aux_sym_do_statement_token1] = ACTIONS(1026), - [aux_sym_for_statement_token1] = ACTIONS(1026), - [aux_sym_for_statement_token2] = ACTIONS(1026), - [aux_sym_foreach_statement_token1] = ACTIONS(1026), - [aux_sym_foreach_statement_token2] = ACTIONS(1026), - [aux_sym_if_statement_token1] = ACTIONS(1026), - [aux_sym_if_statement_token2] = ACTIONS(1026), - [aux_sym_else_if_clause_token1] = ACTIONS(1026), - [aux_sym_else_clause_token1] = ACTIONS(1026), - [aux_sym_match_expression_token1] = ACTIONS(1026), - [aux_sym_match_default_expression_token1] = ACTIONS(1026), - [aux_sym_switch_statement_token1] = ACTIONS(1026), - [aux_sym_switch_block_token1] = ACTIONS(1026), - [anon_sym_AT] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [aux_sym_clone_expression_token1] = ACTIONS(1026), - [aux_sym_print_intrinsic_token1] = ACTIONS(1026), - [aux_sym_object_creation_expression_token1] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [aux_sym__list_destructing_token1] = ACTIONS(1026), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_self] = ACTIONS(1026), - [anon_sym_parent] = ACTIONS(1026), - [anon_sym_POUND_LBRACK] = ACTIONS(1024), - [anon_sym_SQUOTE] = ACTIONS(1024), - [aux_sym_encapsed_string_token1] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [aux_sym_string_token1] = ACTIONS(1024), - [anon_sym_LT_LT_LT] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(1024), - [sym_boolean] = ACTIONS(1026), - [sym_null] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1024), - [aux_sym_yield_expression_token1] = ACTIONS(1026), - [aux_sym_include_expression_token1] = ACTIONS(1026), - [aux_sym_include_once_expression_token1] = ACTIONS(1026), - [aux_sym_require_expression_token1] = ACTIONS(1026), - [aux_sym_require_once_expression_token1] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1024), - }, - [441] = { - [sym_text_interpolation] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(1028), - [sym_name] = ACTIONS(1030), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1032), - [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_enum_declaration_token1] = ACTIONS(1030), - [aux_sym_enum_case_token1] = ACTIONS(1030), - [aux_sym_class_declaration_token1] = ACTIONS(1030), - [aux_sym_final_modifier_token1] = ACTIONS(1030), - [aux_sym_abstract_modifier_token1] = ACTIONS(1030), - [aux_sym_readonly_modifier_token1] = ACTIONS(1030), - [aux_sym_visibility_modifier_token1] = ACTIONS(1030), - [aux_sym_visibility_modifier_token2] = ACTIONS(1030), - [aux_sym_visibility_modifier_token3] = ACTIONS(1030), - [aux_sym__arrow_function_header_token1] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1028), - [aux_sym_cast_type_token1] = ACTIONS(1030), - [aux_sym_echo_statement_token1] = ACTIONS(1030), - [anon_sym_unset] = ACTIONS(1030), - [aux_sym_declare_statement_token1] = ACTIONS(1030), - [aux_sym_declare_statement_token2] = 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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(1030), - [aux_sym_print_intrinsic_token1] = ACTIONS(1030), - [aux_sym_object_creation_expression_token1] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [aux_sym__list_destructing_token1] = ACTIONS(1030), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_self] = ACTIONS(1030), - [anon_sym_parent] = ACTIONS(1030), - [anon_sym_POUND_LBRACK] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1028), - [aux_sym_encapsed_string_token1] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [aux_sym_string_token1] = ACTIONS(1028), - [anon_sym_LT_LT_LT] = ACTIONS(1028), - [anon_sym_BQUOTE] = ACTIONS(1028), - [sym_boolean] = ACTIONS(1030), - [sym_null] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1028), - [aux_sym_yield_expression_token1] = ACTIONS(1030), - [aux_sym_include_expression_token1] = ACTIONS(1030), - [aux_sym_include_once_expression_token1] = ACTIONS(1030), - [aux_sym_require_expression_token1] = ACTIONS(1030), - [aux_sym_require_once_expression_token1] = ACTIONS(1030), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1032), - }, - [442] = { - [sym_text_interpolation] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_name] = ACTIONS(1036), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1038), - [aux_sym_function_static_declaration_token1] = ACTIONS(1036), - [aux_sym_global_declaration_token1] = ACTIONS(1036), - [aux_sym_namespace_definition_token1] = ACTIONS(1036), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1036), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1036), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1036), - [anon_sym_BSLASH] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [aux_sym_trait_declaration_token1] = ACTIONS(1036), - [aux_sym_interface_declaration_token1] = ACTIONS(1036), - [aux_sym_enum_declaration_token1] = ACTIONS(1036), - [aux_sym_enum_case_token1] = ACTIONS(1036), - [aux_sym_class_declaration_token1] = ACTIONS(1036), - [aux_sym_final_modifier_token1] = ACTIONS(1036), - [aux_sym_abstract_modifier_token1] = ACTIONS(1036), - [aux_sym_readonly_modifier_token1] = ACTIONS(1036), - [aux_sym_visibility_modifier_token1] = ACTIONS(1036), - [aux_sym_visibility_modifier_token2] = ACTIONS(1036), - [aux_sym_visibility_modifier_token3] = ACTIONS(1036), - [aux_sym__arrow_function_header_token1] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1034), - [aux_sym_cast_type_token1] = ACTIONS(1036), - [aux_sym_echo_statement_token1] = ACTIONS(1036), - [anon_sym_unset] = ACTIONS(1036), - [aux_sym_declare_statement_token1] = ACTIONS(1036), - [aux_sym_declare_statement_token2] = ACTIONS(1036), - [sym_float] = ACTIONS(1036), - [aux_sym_try_statement_token1] = ACTIONS(1036), - [aux_sym_goto_statement_token1] = ACTIONS(1036), - [aux_sym_continue_statement_token1] = ACTIONS(1036), - [aux_sym_break_statement_token1] = ACTIONS(1036), - [sym_integer] = ACTIONS(1036), - [aux_sym_return_statement_token1] = ACTIONS(1036), - [aux_sym_throw_expression_token1] = ACTIONS(1036), - [aux_sym_while_statement_token1] = ACTIONS(1036), - [aux_sym_while_statement_token2] = ACTIONS(1036), - [aux_sym_do_statement_token1] = ACTIONS(1036), - [aux_sym_for_statement_token1] = ACTIONS(1036), - [aux_sym_for_statement_token2] = ACTIONS(1036), - [aux_sym_foreach_statement_token1] = ACTIONS(1036), - [aux_sym_foreach_statement_token2] = ACTIONS(1036), - [aux_sym_if_statement_token1] = ACTIONS(1036), - [aux_sym_if_statement_token2] = ACTIONS(1036), - [aux_sym_else_if_clause_token1] = ACTIONS(1036), - [aux_sym_else_clause_token1] = ACTIONS(1036), - [aux_sym_match_expression_token1] = ACTIONS(1036), - [aux_sym_match_default_expression_token1] = ACTIONS(1036), - [aux_sym_switch_statement_token1] = ACTIONS(1036), - [aux_sym_switch_block_token1] = ACTIONS(1036), - [anon_sym_AT] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [aux_sym_clone_expression_token1] = ACTIONS(1036), - [aux_sym_print_intrinsic_token1] = ACTIONS(1036), - [aux_sym_object_creation_expression_token1] = ACTIONS(1036), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [aux_sym__list_destructing_token1] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1034), - [anon_sym_self] = ACTIONS(1036), - [anon_sym_parent] = ACTIONS(1036), - [anon_sym_POUND_LBRACK] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [aux_sym_encapsed_string_token1] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [aux_sym_string_token1] = ACTIONS(1034), - [anon_sym_LT_LT_LT] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1034), - [sym_boolean] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1034), - [aux_sym_yield_expression_token1] = ACTIONS(1036), - [aux_sym_include_expression_token1] = ACTIONS(1036), - [aux_sym_include_once_expression_token1] = ACTIONS(1036), - [aux_sym_require_expression_token1] = ACTIONS(1036), - [aux_sym_require_once_expression_token1] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1038), - }, - [443] = { - [sym_text_interpolation] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(1040), - [sym_name] = ACTIONS(1042), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1044), - [aux_sym_function_static_declaration_token1] = ACTIONS(1042), - [aux_sym_global_declaration_token1] = ACTIONS(1042), - [aux_sym_namespace_definition_token1] = ACTIONS(1042), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1042), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1042), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1042), - [anon_sym_BSLASH] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [aux_sym_trait_declaration_token1] = ACTIONS(1042), - [aux_sym_interface_declaration_token1] = ACTIONS(1042), - [aux_sym_enum_declaration_token1] = ACTIONS(1042), - [aux_sym_enum_case_token1] = ACTIONS(1042), - [aux_sym_class_declaration_token1] = ACTIONS(1042), - [aux_sym_final_modifier_token1] = ACTIONS(1042), - [aux_sym_abstract_modifier_token1] = ACTIONS(1042), - [aux_sym_readonly_modifier_token1] = ACTIONS(1042), - [aux_sym_visibility_modifier_token1] = ACTIONS(1042), - [aux_sym_visibility_modifier_token2] = ACTIONS(1042), - [aux_sym_visibility_modifier_token3] = ACTIONS(1042), - [aux_sym__arrow_function_header_token1] = ACTIONS(1042), - [anon_sym_LPAREN] = ACTIONS(1040), - [aux_sym_cast_type_token1] = ACTIONS(1042), - [aux_sym_echo_statement_token1] = ACTIONS(1042), - [anon_sym_unset] = ACTIONS(1042), - [aux_sym_declare_statement_token1] = ACTIONS(1042), - [aux_sym_declare_statement_token2] = ACTIONS(1042), - [sym_float] = ACTIONS(1042), - [aux_sym_try_statement_token1] = ACTIONS(1042), - [aux_sym_goto_statement_token1] = ACTIONS(1042), - [aux_sym_continue_statement_token1] = ACTIONS(1042), - [aux_sym_break_statement_token1] = ACTIONS(1042), - [sym_integer] = ACTIONS(1042), - [aux_sym_return_statement_token1] = ACTIONS(1042), - [aux_sym_throw_expression_token1] = ACTIONS(1042), - [aux_sym_while_statement_token1] = ACTIONS(1042), - [aux_sym_while_statement_token2] = ACTIONS(1042), - [aux_sym_do_statement_token1] = ACTIONS(1042), - [aux_sym_for_statement_token1] = ACTIONS(1042), - [aux_sym_for_statement_token2] = ACTIONS(1042), - [aux_sym_foreach_statement_token1] = ACTIONS(1042), - [aux_sym_foreach_statement_token2] = ACTIONS(1042), - [aux_sym_if_statement_token1] = ACTIONS(1042), - [aux_sym_if_statement_token2] = ACTIONS(1042), - [aux_sym_else_if_clause_token1] = ACTIONS(1042), - [aux_sym_else_clause_token1] = ACTIONS(1042), - [aux_sym_match_expression_token1] = ACTIONS(1042), - [aux_sym_match_default_expression_token1] = ACTIONS(1042), - [aux_sym_switch_statement_token1] = ACTIONS(1042), - [aux_sym_switch_block_token1] = ACTIONS(1042), - [anon_sym_AT] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_BANG] = ACTIONS(1040), - [aux_sym_clone_expression_token1] = ACTIONS(1042), - [aux_sym_print_intrinsic_token1] = ACTIONS(1042), - [aux_sym_object_creation_expression_token1] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1040), - [aux_sym__list_destructing_token1] = ACTIONS(1042), - [anon_sym_LBRACK] = ACTIONS(1040), - [anon_sym_self] = ACTIONS(1042), - [anon_sym_parent] = ACTIONS(1042), - [anon_sym_POUND_LBRACK] = ACTIONS(1040), - [anon_sym_SQUOTE] = ACTIONS(1040), - [aux_sym_encapsed_string_token1] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [aux_sym_string_token1] = ACTIONS(1040), - [anon_sym_LT_LT_LT] = ACTIONS(1040), - [anon_sym_BQUOTE] = ACTIONS(1040), - [sym_boolean] = ACTIONS(1042), - [sym_null] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1040), - [aux_sym_yield_expression_token1] = ACTIONS(1042), - [aux_sym_include_expression_token1] = ACTIONS(1042), - [aux_sym_include_once_expression_token1] = ACTIONS(1042), - [aux_sym_require_expression_token1] = ACTIONS(1042), - [aux_sym_require_once_expression_token1] = ACTIONS(1042), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1044), - }, - [444] = { - [sym_text_interpolation] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_name] = ACTIONS(1048), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1050), - [aux_sym_function_static_declaration_token1] = ACTIONS(1048), - [aux_sym_global_declaration_token1] = ACTIONS(1048), - [aux_sym_namespace_definition_token1] = ACTIONS(1048), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1048), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1048), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1048), - [anon_sym_BSLASH] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [aux_sym_trait_declaration_token1] = ACTIONS(1048), - [aux_sym_interface_declaration_token1] = ACTIONS(1048), - [aux_sym_enum_declaration_token1] = ACTIONS(1048), - [aux_sym_enum_case_token1] = ACTIONS(1048), - [aux_sym_class_declaration_token1] = ACTIONS(1048), - [aux_sym_final_modifier_token1] = ACTIONS(1048), - [aux_sym_abstract_modifier_token1] = ACTIONS(1048), - [aux_sym_readonly_modifier_token1] = ACTIONS(1048), - [aux_sym_visibility_modifier_token1] = ACTIONS(1048), - [aux_sym_visibility_modifier_token2] = ACTIONS(1048), - [aux_sym_visibility_modifier_token3] = ACTIONS(1048), - [aux_sym__arrow_function_header_token1] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1046), - [aux_sym_cast_type_token1] = ACTIONS(1048), - [aux_sym_echo_statement_token1] = ACTIONS(1048), - [anon_sym_unset] = ACTIONS(1048), - [aux_sym_declare_statement_token1] = ACTIONS(1048), - [aux_sym_declare_statement_token2] = ACTIONS(1048), - [sym_float] = ACTIONS(1048), - [aux_sym_try_statement_token1] = ACTIONS(1048), - [aux_sym_goto_statement_token1] = ACTIONS(1048), - [aux_sym_continue_statement_token1] = ACTIONS(1048), - [aux_sym_break_statement_token1] = ACTIONS(1048), - [sym_integer] = ACTIONS(1048), - [aux_sym_return_statement_token1] = ACTIONS(1048), - [aux_sym_throw_expression_token1] = ACTIONS(1048), - [aux_sym_while_statement_token1] = ACTIONS(1048), - [aux_sym_while_statement_token2] = ACTIONS(1048), - [aux_sym_do_statement_token1] = ACTIONS(1048), - [aux_sym_for_statement_token1] = ACTIONS(1048), - [aux_sym_for_statement_token2] = ACTIONS(1048), - [aux_sym_foreach_statement_token1] = ACTIONS(1048), - [aux_sym_foreach_statement_token2] = ACTIONS(1048), - [aux_sym_if_statement_token1] = ACTIONS(1048), - [aux_sym_if_statement_token2] = ACTIONS(1048), - [aux_sym_else_if_clause_token1] = ACTIONS(1048), - [aux_sym_else_clause_token1] = ACTIONS(1048), - [aux_sym_match_expression_token1] = ACTIONS(1048), - [aux_sym_match_default_expression_token1] = ACTIONS(1048), - [aux_sym_switch_statement_token1] = ACTIONS(1048), - [aux_sym_switch_block_token1] = ACTIONS(1048), - [anon_sym_AT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [aux_sym_clone_expression_token1] = ACTIONS(1048), - [aux_sym_print_intrinsic_token1] = ACTIONS(1048), - [aux_sym_object_creation_expression_token1] = ACTIONS(1048), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [aux_sym__list_destructing_token1] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_self] = ACTIONS(1048), - [anon_sym_parent] = ACTIONS(1048), - [anon_sym_POUND_LBRACK] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [aux_sym_encapsed_string_token1] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [aux_sym_string_token1] = ACTIONS(1046), - [anon_sym_LT_LT_LT] = ACTIONS(1046), - [anon_sym_BQUOTE] = ACTIONS(1046), - [sym_boolean] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1046), - [aux_sym_yield_expression_token1] = ACTIONS(1048), - [aux_sym_include_expression_token1] = ACTIONS(1048), - [aux_sym_include_once_expression_token1] = ACTIONS(1048), - [aux_sym_require_expression_token1] = ACTIONS(1048), - [aux_sym_require_once_expression_token1] = ACTIONS(1048), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1050), - }, - [445] = { - [sym_text_interpolation] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1052), - [sym_name] = ACTIONS(1054), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1056), - [aux_sym_function_static_declaration_token1] = ACTIONS(1054), - [aux_sym_global_declaration_token1] = ACTIONS(1054), - [aux_sym_namespace_definition_token1] = ACTIONS(1054), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1054), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1054), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1054), - [anon_sym_BSLASH] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [aux_sym_trait_declaration_token1] = ACTIONS(1054), - [aux_sym_interface_declaration_token1] = ACTIONS(1054), - [aux_sym_enum_declaration_token1] = ACTIONS(1054), - [aux_sym_enum_case_token1] = ACTIONS(1054), - [aux_sym_class_declaration_token1] = ACTIONS(1054), - [aux_sym_final_modifier_token1] = ACTIONS(1054), - [aux_sym_abstract_modifier_token1] = ACTIONS(1054), - [aux_sym_readonly_modifier_token1] = ACTIONS(1054), - [aux_sym_visibility_modifier_token1] = ACTIONS(1054), - [aux_sym_visibility_modifier_token2] = ACTIONS(1054), - [aux_sym_visibility_modifier_token3] = ACTIONS(1054), - [aux_sym__arrow_function_header_token1] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1052), - [aux_sym_cast_type_token1] = ACTIONS(1054), - [aux_sym_echo_statement_token1] = ACTIONS(1054), - [anon_sym_unset] = ACTIONS(1054), - [aux_sym_declare_statement_token1] = ACTIONS(1054), - [aux_sym_declare_statement_token2] = ACTIONS(1054), - [sym_float] = ACTIONS(1054), - [aux_sym_try_statement_token1] = ACTIONS(1054), - [aux_sym_goto_statement_token1] = ACTIONS(1054), - [aux_sym_continue_statement_token1] = ACTIONS(1054), - [aux_sym_break_statement_token1] = ACTIONS(1054), - [sym_integer] = ACTIONS(1054), - [aux_sym_return_statement_token1] = ACTIONS(1054), - [aux_sym_throw_expression_token1] = ACTIONS(1054), - [aux_sym_while_statement_token1] = ACTIONS(1054), - [aux_sym_while_statement_token2] = ACTIONS(1054), - [aux_sym_do_statement_token1] = ACTIONS(1054), - [aux_sym_for_statement_token1] = ACTIONS(1054), - [aux_sym_for_statement_token2] = ACTIONS(1054), - [aux_sym_foreach_statement_token1] = ACTIONS(1054), - [aux_sym_foreach_statement_token2] = ACTIONS(1054), - [aux_sym_if_statement_token1] = ACTIONS(1054), - [aux_sym_if_statement_token2] = ACTIONS(1054), - [aux_sym_else_if_clause_token1] = ACTIONS(1054), - [aux_sym_else_clause_token1] = ACTIONS(1054), - [aux_sym_match_expression_token1] = ACTIONS(1054), - [aux_sym_match_default_expression_token1] = ACTIONS(1054), - [aux_sym_switch_statement_token1] = ACTIONS(1054), - [aux_sym_switch_block_token1] = ACTIONS(1054), - [anon_sym_AT] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1052), - [aux_sym_clone_expression_token1] = ACTIONS(1054), - [aux_sym_print_intrinsic_token1] = ACTIONS(1054), - [aux_sym_object_creation_expression_token1] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [aux_sym__list_destructing_token1] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1052), - [anon_sym_self] = ACTIONS(1054), - [anon_sym_parent] = ACTIONS(1054), - [anon_sym_POUND_LBRACK] = ACTIONS(1052), - [anon_sym_SQUOTE] = ACTIONS(1052), - [aux_sym_encapsed_string_token1] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [aux_sym_string_token1] = ACTIONS(1052), - [anon_sym_LT_LT_LT] = ACTIONS(1052), - [anon_sym_BQUOTE] = ACTIONS(1052), - [sym_boolean] = ACTIONS(1054), - [sym_null] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1052), - [aux_sym_yield_expression_token1] = ACTIONS(1054), - [aux_sym_include_expression_token1] = ACTIONS(1054), - [aux_sym_include_once_expression_token1] = ACTIONS(1054), - [aux_sym_require_expression_token1] = ACTIONS(1054), - [aux_sym_require_once_expression_token1] = ACTIONS(1054), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1056), - }, - [446] = { - [sym_text_interpolation] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_name] = ACTIONS(1060), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1062), - [aux_sym_function_static_declaration_token1] = ACTIONS(1060), - [aux_sym_global_declaration_token1] = ACTIONS(1060), - [aux_sym_namespace_definition_token1] = ACTIONS(1060), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1060), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1060), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1060), - [anon_sym_BSLASH] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [aux_sym_trait_declaration_token1] = ACTIONS(1060), - [aux_sym_interface_declaration_token1] = ACTIONS(1060), - [aux_sym_enum_declaration_token1] = ACTIONS(1060), - [aux_sym_enum_case_token1] = ACTIONS(1060), - [aux_sym_class_declaration_token1] = ACTIONS(1060), - [aux_sym_final_modifier_token1] = ACTIONS(1060), - [aux_sym_abstract_modifier_token1] = ACTIONS(1060), - [aux_sym_readonly_modifier_token1] = ACTIONS(1060), - [aux_sym_visibility_modifier_token1] = ACTIONS(1060), - [aux_sym_visibility_modifier_token2] = ACTIONS(1060), - [aux_sym_visibility_modifier_token3] = ACTIONS(1060), - [aux_sym__arrow_function_header_token1] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [aux_sym_cast_type_token1] = ACTIONS(1060), - [aux_sym_echo_statement_token1] = ACTIONS(1060), - [anon_sym_unset] = ACTIONS(1060), - [aux_sym_declare_statement_token1] = ACTIONS(1060), - [aux_sym_declare_statement_token2] = ACTIONS(1060), - [sym_float] = ACTIONS(1060), - [aux_sym_try_statement_token1] = ACTIONS(1060), - [aux_sym_goto_statement_token1] = ACTIONS(1060), - [aux_sym_continue_statement_token1] = ACTIONS(1060), - [aux_sym_break_statement_token1] = ACTIONS(1060), - [sym_integer] = ACTIONS(1060), - [aux_sym_return_statement_token1] = ACTIONS(1060), - [aux_sym_throw_expression_token1] = ACTIONS(1060), - [aux_sym_while_statement_token1] = ACTIONS(1060), - [aux_sym_while_statement_token2] = ACTIONS(1060), - [aux_sym_do_statement_token1] = ACTIONS(1060), - [aux_sym_for_statement_token1] = ACTIONS(1060), - [aux_sym_for_statement_token2] = ACTIONS(1060), - [aux_sym_foreach_statement_token1] = ACTIONS(1060), - [aux_sym_foreach_statement_token2] = ACTIONS(1060), - [aux_sym_if_statement_token1] = ACTIONS(1060), - [aux_sym_if_statement_token2] = ACTIONS(1060), - [aux_sym_else_if_clause_token1] = ACTIONS(1060), - [aux_sym_else_clause_token1] = ACTIONS(1060), - [aux_sym_match_expression_token1] = ACTIONS(1060), - [aux_sym_match_default_expression_token1] = ACTIONS(1060), - [aux_sym_switch_statement_token1] = ACTIONS(1060), - [aux_sym_switch_block_token1] = ACTIONS(1060), - [anon_sym_AT] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [aux_sym_clone_expression_token1] = ACTIONS(1060), - [aux_sym_print_intrinsic_token1] = ACTIONS(1060), - [aux_sym_object_creation_expression_token1] = ACTIONS(1060), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [aux_sym__list_destructing_token1] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_self] = ACTIONS(1060), - [anon_sym_parent] = ACTIONS(1060), - [anon_sym_POUND_LBRACK] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [aux_sym_encapsed_string_token1] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [aux_sym_string_token1] = ACTIONS(1058), - [anon_sym_LT_LT_LT] = ACTIONS(1058), - [anon_sym_BQUOTE] = ACTIONS(1058), - [sym_boolean] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [anon_sym_DOLLAR] = ACTIONS(1058), - [aux_sym_yield_expression_token1] = ACTIONS(1060), - [aux_sym_include_expression_token1] = ACTIONS(1060), - [aux_sym_include_once_expression_token1] = ACTIONS(1060), - [aux_sym_require_expression_token1] = ACTIONS(1060), - [aux_sym_require_once_expression_token1] = ACTIONS(1060), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1062), - }, - [447] = { - [sym_text_interpolation] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(1064), - [sym_name] = ACTIONS(1066), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1068), - [aux_sym_function_static_declaration_token1] = ACTIONS(1066), - [aux_sym_global_declaration_token1] = ACTIONS(1066), - [aux_sym_namespace_definition_token1] = ACTIONS(1066), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1066), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1066), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1066), - [anon_sym_BSLASH] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [aux_sym_trait_declaration_token1] = ACTIONS(1066), - [aux_sym_interface_declaration_token1] = ACTIONS(1066), - [aux_sym_enum_declaration_token1] = ACTIONS(1066), - [aux_sym_enum_case_token1] = ACTIONS(1066), - [aux_sym_class_declaration_token1] = ACTIONS(1066), - [aux_sym_final_modifier_token1] = ACTIONS(1066), - [aux_sym_abstract_modifier_token1] = ACTIONS(1066), - [aux_sym_readonly_modifier_token1] = ACTIONS(1066), - [aux_sym_visibility_modifier_token1] = ACTIONS(1066), - [aux_sym_visibility_modifier_token2] = ACTIONS(1066), - [aux_sym_visibility_modifier_token3] = ACTIONS(1066), - [aux_sym__arrow_function_header_token1] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1064), - [aux_sym_cast_type_token1] = ACTIONS(1066), - [aux_sym_echo_statement_token1] = ACTIONS(1066), - [anon_sym_unset] = ACTIONS(1066), - [aux_sym_declare_statement_token1] = ACTIONS(1066), - [aux_sym_declare_statement_token2] = ACTIONS(1066), - [sym_float] = ACTIONS(1066), - [aux_sym_try_statement_token1] = ACTIONS(1066), - [aux_sym_goto_statement_token1] = ACTIONS(1066), - [aux_sym_continue_statement_token1] = ACTIONS(1066), - [aux_sym_break_statement_token1] = ACTIONS(1066), - [sym_integer] = ACTIONS(1066), - [aux_sym_return_statement_token1] = ACTIONS(1066), - [aux_sym_throw_expression_token1] = ACTIONS(1066), - [aux_sym_while_statement_token1] = ACTIONS(1066), - [aux_sym_while_statement_token2] = ACTIONS(1066), - [aux_sym_do_statement_token1] = ACTIONS(1066), - [aux_sym_for_statement_token1] = ACTIONS(1066), - [aux_sym_for_statement_token2] = ACTIONS(1066), - [aux_sym_foreach_statement_token1] = ACTIONS(1066), - [aux_sym_foreach_statement_token2] = ACTIONS(1066), - [aux_sym_if_statement_token1] = ACTIONS(1066), - [aux_sym_if_statement_token2] = ACTIONS(1066), - [aux_sym_else_if_clause_token1] = ACTIONS(1066), - [aux_sym_else_clause_token1] = ACTIONS(1066), - [aux_sym_match_expression_token1] = ACTIONS(1066), - [aux_sym_match_default_expression_token1] = ACTIONS(1066), - [aux_sym_switch_statement_token1] = ACTIONS(1066), - [aux_sym_switch_block_token1] = ACTIONS(1066), - [anon_sym_AT] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_BANG] = ACTIONS(1064), - [aux_sym_clone_expression_token1] = ACTIONS(1066), - [aux_sym_print_intrinsic_token1] = ACTIONS(1066), - [aux_sym_object_creation_expression_token1] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [aux_sym__list_destructing_token1] = ACTIONS(1066), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_self] = ACTIONS(1066), - [anon_sym_parent] = ACTIONS(1066), - [anon_sym_POUND_LBRACK] = ACTIONS(1064), - [anon_sym_SQUOTE] = ACTIONS(1064), - [aux_sym_encapsed_string_token1] = ACTIONS(1064), - [anon_sym_DQUOTE] = ACTIONS(1064), - [aux_sym_string_token1] = ACTIONS(1064), - [anon_sym_LT_LT_LT] = ACTIONS(1064), - [anon_sym_BQUOTE] = ACTIONS(1064), - [sym_boolean] = ACTIONS(1066), - [sym_null] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1064), - [aux_sym_yield_expression_token1] = ACTIONS(1066), - [aux_sym_include_expression_token1] = ACTIONS(1066), - [aux_sym_include_once_expression_token1] = ACTIONS(1066), - [aux_sym_require_expression_token1] = ACTIONS(1066), - [aux_sym_require_once_expression_token1] = ACTIONS(1066), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1068), - }, - [448] = { - [sym_text_interpolation] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1070), - [sym_name] = ACTIONS(1072), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1070), - [aux_sym_function_static_declaration_token1] = ACTIONS(1072), - [aux_sym_global_declaration_token1] = ACTIONS(1072), - [aux_sym_namespace_definition_token1] = ACTIONS(1072), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1072), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1072), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1072), - [anon_sym_BSLASH] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [aux_sym_trait_declaration_token1] = ACTIONS(1072), - [aux_sym_interface_declaration_token1] = ACTIONS(1072), - [aux_sym_enum_declaration_token1] = ACTIONS(1072), - [aux_sym_enum_case_token1] = ACTIONS(1072), - [aux_sym_class_declaration_token1] = ACTIONS(1072), - [aux_sym_final_modifier_token1] = ACTIONS(1072), - [aux_sym_abstract_modifier_token1] = ACTIONS(1072), - [aux_sym_readonly_modifier_token1] = ACTIONS(1072), - [aux_sym_visibility_modifier_token1] = ACTIONS(1072), - [aux_sym_visibility_modifier_token2] = ACTIONS(1072), - [aux_sym_visibility_modifier_token3] = ACTIONS(1072), - [aux_sym__arrow_function_header_token1] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1070), - [aux_sym_cast_type_token1] = ACTIONS(1072), - [aux_sym_echo_statement_token1] = ACTIONS(1072), - [anon_sym_unset] = ACTIONS(1072), - [aux_sym_declare_statement_token1] = ACTIONS(1072), - [aux_sym_declare_statement_token2] = ACTIONS(1072), - [sym_float] = ACTIONS(1072), - [aux_sym_try_statement_token1] = ACTIONS(1072), - [aux_sym_goto_statement_token1] = ACTIONS(1072), - [aux_sym_continue_statement_token1] = ACTIONS(1072), - [aux_sym_break_statement_token1] = ACTIONS(1072), - [sym_integer] = ACTIONS(1072), - [aux_sym_return_statement_token1] = ACTIONS(1072), - [aux_sym_throw_expression_token1] = ACTIONS(1072), - [aux_sym_while_statement_token1] = ACTIONS(1072), - [aux_sym_while_statement_token2] = ACTIONS(1072), - [aux_sym_do_statement_token1] = ACTIONS(1072), - [aux_sym_for_statement_token1] = ACTIONS(1072), - [aux_sym_for_statement_token2] = ACTIONS(1072), - [aux_sym_foreach_statement_token1] = ACTIONS(1072), - [aux_sym_foreach_statement_token2] = ACTIONS(1072), - [aux_sym_if_statement_token1] = ACTIONS(1072), - [aux_sym_if_statement_token2] = ACTIONS(1072), - [aux_sym_else_if_clause_token1] = ACTIONS(1072), - [aux_sym_else_clause_token1] = ACTIONS(1072), - [aux_sym_match_expression_token1] = ACTIONS(1072), - [aux_sym_match_default_expression_token1] = ACTIONS(1072), - [aux_sym_switch_statement_token1] = ACTIONS(1072), - [aux_sym_switch_block_token1] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [aux_sym_clone_expression_token1] = ACTIONS(1072), - [aux_sym_print_intrinsic_token1] = ACTIONS(1072), - [aux_sym_object_creation_expression_token1] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [aux_sym__list_destructing_token1] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_self] = ACTIONS(1072), - [anon_sym_parent] = ACTIONS(1072), - [anon_sym_POUND_LBRACK] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [aux_sym_encapsed_string_token1] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [aux_sym_string_token1] = ACTIONS(1070), - [anon_sym_LT_LT_LT] = ACTIONS(1070), - [anon_sym_BQUOTE] = ACTIONS(1070), - [sym_boolean] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1070), - [aux_sym_yield_expression_token1] = ACTIONS(1072), - [aux_sym_include_expression_token1] = ACTIONS(1072), - [aux_sym_include_once_expression_token1] = ACTIONS(1072), - [aux_sym_require_expression_token1] = ACTIONS(1072), - [aux_sym_require_once_expression_token1] = ACTIONS(1072), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1070), - }, - [449] = { - [sym_text_interpolation] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1074), - [sym_name] = ACTIONS(1076), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1078), - [aux_sym_function_static_declaration_token1] = ACTIONS(1076), - [aux_sym_global_declaration_token1] = ACTIONS(1076), - [aux_sym_namespace_definition_token1] = ACTIONS(1076), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1076), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1076), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1076), - [anon_sym_BSLASH] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1074), - [aux_sym_trait_declaration_token1] = ACTIONS(1076), - [aux_sym_interface_declaration_token1] = ACTIONS(1076), - [aux_sym_enum_declaration_token1] = ACTIONS(1076), - [aux_sym_enum_case_token1] = ACTIONS(1076), - [aux_sym_class_declaration_token1] = ACTIONS(1076), - [aux_sym_final_modifier_token1] = ACTIONS(1076), - [aux_sym_abstract_modifier_token1] = ACTIONS(1076), - [aux_sym_readonly_modifier_token1] = ACTIONS(1076), - [aux_sym_visibility_modifier_token1] = ACTIONS(1076), - [aux_sym_visibility_modifier_token2] = ACTIONS(1076), - [aux_sym_visibility_modifier_token3] = ACTIONS(1076), - [aux_sym__arrow_function_header_token1] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1074), - [aux_sym_cast_type_token1] = ACTIONS(1076), - [aux_sym_echo_statement_token1] = ACTIONS(1076), - [anon_sym_unset] = ACTIONS(1076), - [aux_sym_declare_statement_token1] = ACTIONS(1076), - [aux_sym_declare_statement_token2] = ACTIONS(1076), - [sym_float] = ACTIONS(1076), - [aux_sym_try_statement_token1] = ACTIONS(1076), - [aux_sym_goto_statement_token1] = ACTIONS(1076), - [aux_sym_continue_statement_token1] = ACTIONS(1076), - [aux_sym_break_statement_token1] = ACTIONS(1076), - [sym_integer] = ACTIONS(1076), - [aux_sym_return_statement_token1] = ACTIONS(1076), - [aux_sym_throw_expression_token1] = ACTIONS(1076), - [aux_sym_while_statement_token1] = ACTIONS(1076), - [aux_sym_while_statement_token2] = ACTIONS(1076), - [aux_sym_do_statement_token1] = ACTIONS(1076), - [aux_sym_for_statement_token1] = ACTIONS(1076), - [aux_sym_for_statement_token2] = ACTIONS(1076), - [aux_sym_foreach_statement_token1] = ACTIONS(1076), - [aux_sym_foreach_statement_token2] = ACTIONS(1076), - [aux_sym_if_statement_token1] = ACTIONS(1076), - [aux_sym_if_statement_token2] = ACTIONS(1076), - [aux_sym_else_if_clause_token1] = ACTIONS(1076), - [aux_sym_else_clause_token1] = ACTIONS(1076), - [aux_sym_match_expression_token1] = ACTIONS(1076), - [aux_sym_match_default_expression_token1] = ACTIONS(1076), - [aux_sym_switch_statement_token1] = ACTIONS(1076), - [aux_sym_switch_block_token1] = ACTIONS(1076), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [aux_sym_clone_expression_token1] = ACTIONS(1076), - [aux_sym_print_intrinsic_token1] = ACTIONS(1076), - [aux_sym_object_creation_expression_token1] = ACTIONS(1076), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [aux_sym__list_destructing_token1] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1074), - [anon_sym_self] = ACTIONS(1076), - [anon_sym_parent] = ACTIONS(1076), - [anon_sym_POUND_LBRACK] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [aux_sym_encapsed_string_token1] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [aux_sym_string_token1] = ACTIONS(1074), - [anon_sym_LT_LT_LT] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_boolean] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1074), - [aux_sym_yield_expression_token1] = ACTIONS(1076), - [aux_sym_include_expression_token1] = ACTIONS(1076), - [aux_sym_include_once_expression_token1] = ACTIONS(1076), - [aux_sym_require_expression_token1] = ACTIONS(1076), - [aux_sym_require_once_expression_token1] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1078), - }, - [450] = { - [sym_text_interpolation] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1080), - [sym_name] = ACTIONS(1082), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1084), - [aux_sym_function_static_declaration_token1] = ACTIONS(1082), - [aux_sym_global_declaration_token1] = ACTIONS(1082), - [aux_sym_namespace_definition_token1] = ACTIONS(1082), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1082), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1082), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1082), - [anon_sym_BSLASH] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1080), - [aux_sym_trait_declaration_token1] = ACTIONS(1082), - [aux_sym_interface_declaration_token1] = ACTIONS(1082), - [aux_sym_enum_declaration_token1] = ACTIONS(1082), - [aux_sym_enum_case_token1] = ACTIONS(1082), - [aux_sym_class_declaration_token1] = ACTIONS(1082), - [aux_sym_final_modifier_token1] = ACTIONS(1082), - [aux_sym_abstract_modifier_token1] = ACTIONS(1082), - [aux_sym_readonly_modifier_token1] = ACTIONS(1082), - [aux_sym_visibility_modifier_token1] = ACTIONS(1082), - [aux_sym_visibility_modifier_token2] = ACTIONS(1082), - [aux_sym_visibility_modifier_token3] = ACTIONS(1082), - [aux_sym__arrow_function_header_token1] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(1080), - [aux_sym_cast_type_token1] = ACTIONS(1082), - [aux_sym_echo_statement_token1] = ACTIONS(1082), - [anon_sym_unset] = ACTIONS(1082), - [aux_sym_declare_statement_token1] = ACTIONS(1082), - [aux_sym_declare_statement_token2] = ACTIONS(1082), - [sym_float] = ACTIONS(1082), - [aux_sym_try_statement_token1] = ACTIONS(1082), - [aux_sym_goto_statement_token1] = ACTIONS(1082), - [aux_sym_continue_statement_token1] = ACTIONS(1082), - [aux_sym_break_statement_token1] = ACTIONS(1082), - [sym_integer] = ACTIONS(1082), - [aux_sym_return_statement_token1] = ACTIONS(1082), - [aux_sym_throw_expression_token1] = ACTIONS(1082), - [aux_sym_while_statement_token1] = ACTIONS(1082), - [aux_sym_while_statement_token2] = ACTIONS(1082), - [aux_sym_do_statement_token1] = ACTIONS(1082), - [aux_sym_for_statement_token1] = ACTIONS(1082), - [aux_sym_for_statement_token2] = ACTIONS(1082), - [aux_sym_foreach_statement_token1] = ACTIONS(1082), - [aux_sym_foreach_statement_token2] = ACTIONS(1082), - [aux_sym_if_statement_token1] = ACTIONS(1082), - [aux_sym_if_statement_token2] = ACTIONS(1082), - [aux_sym_else_if_clause_token1] = ACTIONS(1082), - [aux_sym_else_clause_token1] = ACTIONS(1082), - [aux_sym_match_expression_token1] = ACTIONS(1082), - [aux_sym_match_default_expression_token1] = ACTIONS(1082), - [aux_sym_switch_statement_token1] = ACTIONS(1082), - [aux_sym_switch_block_token1] = ACTIONS(1082), - [anon_sym_AT] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [aux_sym_clone_expression_token1] = ACTIONS(1082), - [aux_sym_print_intrinsic_token1] = ACTIONS(1082), - [aux_sym_object_creation_expression_token1] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1080), - [aux_sym__list_destructing_token1] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_self] = ACTIONS(1082), - [anon_sym_parent] = ACTIONS(1082), - [anon_sym_POUND_LBRACK] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [aux_sym_encapsed_string_token1] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [aux_sym_string_token1] = ACTIONS(1080), - [anon_sym_LT_LT_LT] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [sym_boolean] = ACTIONS(1082), - [sym_null] = ACTIONS(1082), - [anon_sym_DOLLAR] = ACTIONS(1080), - [aux_sym_yield_expression_token1] = ACTIONS(1082), - [aux_sym_include_expression_token1] = ACTIONS(1082), - [aux_sym_include_once_expression_token1] = ACTIONS(1082), - [aux_sym_require_expression_token1] = ACTIONS(1082), - [aux_sym_require_once_expression_token1] = ACTIONS(1082), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1084), - }, - [451] = { - [sym_text_interpolation] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1086), - [sym_name] = ACTIONS(1088), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1090), - [aux_sym_function_static_declaration_token1] = ACTIONS(1088), - [aux_sym_global_declaration_token1] = ACTIONS(1088), - [aux_sym_namespace_definition_token1] = ACTIONS(1088), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1088), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1088), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1088), - [anon_sym_BSLASH] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_RBRACE] = ACTIONS(1086), - [aux_sym_trait_declaration_token1] = ACTIONS(1088), - [aux_sym_interface_declaration_token1] = ACTIONS(1088), - [aux_sym_enum_declaration_token1] = ACTIONS(1088), - [aux_sym_enum_case_token1] = ACTIONS(1088), - [aux_sym_class_declaration_token1] = ACTIONS(1088), - [aux_sym_final_modifier_token1] = ACTIONS(1088), - [aux_sym_abstract_modifier_token1] = ACTIONS(1088), - [aux_sym_readonly_modifier_token1] = ACTIONS(1088), - [aux_sym_visibility_modifier_token1] = ACTIONS(1088), - [aux_sym_visibility_modifier_token2] = ACTIONS(1088), - [aux_sym_visibility_modifier_token3] = ACTIONS(1088), - [aux_sym__arrow_function_header_token1] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1086), - [aux_sym_cast_type_token1] = ACTIONS(1088), - [aux_sym_echo_statement_token1] = ACTIONS(1088), - [anon_sym_unset] = ACTIONS(1088), - [aux_sym_declare_statement_token1] = ACTIONS(1088), - [aux_sym_declare_statement_token2] = ACTIONS(1088), - [sym_float] = ACTIONS(1088), - [aux_sym_try_statement_token1] = ACTIONS(1088), - [aux_sym_goto_statement_token1] = ACTIONS(1088), - [aux_sym_continue_statement_token1] = ACTIONS(1088), - [aux_sym_break_statement_token1] = ACTIONS(1088), - [sym_integer] = ACTIONS(1088), - [aux_sym_return_statement_token1] = ACTIONS(1088), - [aux_sym_throw_expression_token1] = ACTIONS(1088), - [aux_sym_while_statement_token1] = ACTIONS(1088), - [aux_sym_while_statement_token2] = ACTIONS(1088), - [aux_sym_do_statement_token1] = ACTIONS(1088), - [aux_sym_for_statement_token1] = ACTIONS(1088), - [aux_sym_for_statement_token2] = ACTIONS(1088), - [aux_sym_foreach_statement_token1] = ACTIONS(1088), - [aux_sym_foreach_statement_token2] = ACTIONS(1088), - [aux_sym_if_statement_token1] = ACTIONS(1088), - [aux_sym_if_statement_token2] = ACTIONS(1088), - [aux_sym_else_if_clause_token1] = ACTIONS(1088), - [aux_sym_else_clause_token1] = ACTIONS(1088), - [aux_sym_match_expression_token1] = ACTIONS(1088), - [aux_sym_match_default_expression_token1] = ACTIONS(1088), - [aux_sym_switch_statement_token1] = ACTIONS(1088), - [aux_sym_switch_block_token1] = ACTIONS(1088), - [anon_sym_AT] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [aux_sym_clone_expression_token1] = ACTIONS(1088), - [aux_sym_print_intrinsic_token1] = ACTIONS(1088), - [aux_sym_object_creation_expression_token1] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [aux_sym__list_destructing_token1] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1086), - [anon_sym_self] = ACTIONS(1088), - [anon_sym_parent] = ACTIONS(1088), - [anon_sym_POUND_LBRACK] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [aux_sym_encapsed_string_token1] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [aux_sym_string_token1] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(1086), - [sym_boolean] = ACTIONS(1088), - [sym_null] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(1086), - [aux_sym_yield_expression_token1] = ACTIONS(1088), - [aux_sym_include_expression_token1] = ACTIONS(1088), - [aux_sym_include_once_expression_token1] = ACTIONS(1088), - [aux_sym_require_expression_token1] = ACTIONS(1088), - [aux_sym_require_once_expression_token1] = ACTIONS(1088), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1090), - }, - [452] = { - [sym_text_interpolation] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_name] = ACTIONS(1094), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(1094), - [aux_sym_enum_case_token1] = ACTIONS(1094), - [aux_sym_class_declaration_token1] = ACTIONS(1094), - [aux_sym_final_modifier_token1] = ACTIONS(1094), - [aux_sym_abstract_modifier_token1] = ACTIONS(1094), - [aux_sym_readonly_modifier_token1] = ACTIONS(1094), - [aux_sym_visibility_modifier_token1] = ACTIONS(1094), - [aux_sym_visibility_modifier_token2] = ACTIONS(1094), - [aux_sym_visibility_modifier_token3] = ACTIONS(1094), - [aux_sym__arrow_function_header_token1] = ACTIONS(1094), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_cast_type_token1] = ACTIONS(1094), - [aux_sym_echo_statement_token1] = ACTIONS(1094), - [anon_sym_unset] = ACTIONS(1094), - [aux_sym_declare_statement_token1] = ACTIONS(1094), - [aux_sym_declare_statement_token2] = ACTIONS(1094), - [sym_float] = ACTIONS(1094), - [aux_sym_try_statement_token1] = ACTIONS(1094), - [aux_sym_goto_statement_token1] = ACTIONS(1094), - [aux_sym_continue_statement_token1] = ACTIONS(1094), - [aux_sym_break_statement_token1] = ACTIONS(1094), - [sym_integer] = ACTIONS(1094), - [aux_sym_return_statement_token1] = ACTIONS(1094), - [aux_sym_throw_expression_token1] = ACTIONS(1094), - [aux_sym_while_statement_token1] = ACTIONS(1094), - [aux_sym_while_statement_token2] = ACTIONS(1094), - [aux_sym_do_statement_token1] = ACTIONS(1094), - [aux_sym_for_statement_token1] = ACTIONS(1094), - [aux_sym_for_statement_token2] = ACTIONS(1094), - [aux_sym_foreach_statement_token1] = ACTIONS(1094), - [aux_sym_foreach_statement_token2] = ACTIONS(1094), - [aux_sym_if_statement_token1] = ACTIONS(1094), - [aux_sym_if_statement_token2] = ACTIONS(1094), - [aux_sym_else_if_clause_token1] = ACTIONS(1094), - [aux_sym_else_clause_token1] = ACTIONS(1094), - [aux_sym_match_expression_token1] = ACTIONS(1094), - [aux_sym_match_default_expression_token1] = ACTIONS(1094), - [aux_sym_switch_statement_token1] = ACTIONS(1094), - [aux_sym_switch_block_token1] = ACTIONS(1094), - [anon_sym_AT] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_BANG] = ACTIONS(1092), - [aux_sym_clone_expression_token1] = ACTIONS(1094), - [aux_sym_print_intrinsic_token1] = ACTIONS(1094), - [aux_sym_object_creation_expression_token1] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1092), - [aux_sym__list_destructing_token1] = ACTIONS(1094), - [anon_sym_LBRACK] = ACTIONS(1092), - [anon_sym_self] = ACTIONS(1094), - [anon_sym_parent] = ACTIONS(1094), - [anon_sym_POUND_LBRACK] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1092), - [aux_sym_encapsed_string_token1] = ACTIONS(1092), - [anon_sym_DQUOTE] = ACTIONS(1092), - [aux_sym_string_token1] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [anon_sym_BQUOTE] = ACTIONS(1092), - [sym_boolean] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), - [anon_sym_DOLLAR] = ACTIONS(1092), - [aux_sym_yield_expression_token1] = ACTIONS(1094), - [aux_sym_include_expression_token1] = ACTIONS(1094), - [aux_sym_include_once_expression_token1] = ACTIONS(1094), - [aux_sym_require_expression_token1] = ACTIONS(1094), - [aux_sym_require_once_expression_token1] = ACTIONS(1094), - [sym_comment] = ACTIONS(5), - }, - [453] = { - [sym_text_interpolation] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1096), - [sym_name] = ACTIONS(1098), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(1098), - [aux_sym_enum_case_token1] = ACTIONS(1098), - [aux_sym_class_declaration_token1] = ACTIONS(1098), - [aux_sym_final_modifier_token1] = ACTIONS(1098), - [aux_sym_abstract_modifier_token1] = ACTIONS(1098), - [aux_sym_readonly_modifier_token1] = ACTIONS(1098), - [aux_sym_visibility_modifier_token1] = ACTIONS(1098), - [aux_sym_visibility_modifier_token2] = ACTIONS(1098), - [aux_sym_visibility_modifier_token3] = ACTIONS(1098), - [aux_sym__arrow_function_header_token1] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1096), - [aux_sym_cast_type_token1] = ACTIONS(1098), - [aux_sym_echo_statement_token1] = ACTIONS(1098), - [anon_sym_unset] = ACTIONS(1098), - [aux_sym_declare_statement_token1] = ACTIONS(1098), - [aux_sym_declare_statement_token2] = 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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(1098), - [aux_sym_print_intrinsic_token1] = ACTIONS(1098), - [aux_sym_object_creation_expression_token1] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [aux_sym__list_destructing_token1] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1096), - [anon_sym_self] = ACTIONS(1098), - [anon_sym_parent] = ACTIONS(1098), - [anon_sym_POUND_LBRACK] = ACTIONS(1096), - [anon_sym_SQUOTE] = ACTIONS(1096), - [aux_sym_encapsed_string_token1] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(1096), - [aux_sym_string_token1] = ACTIONS(1096), - [anon_sym_LT_LT_LT] = ACTIONS(1096), - [anon_sym_BQUOTE] = ACTIONS(1096), - [sym_boolean] = ACTIONS(1098), - [sym_null] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1096), - [aux_sym_yield_expression_token1] = ACTIONS(1098), - [aux_sym_include_expression_token1] = ACTIONS(1098), - [aux_sym_include_once_expression_token1] = ACTIONS(1098), - [aux_sym_require_expression_token1] = ACTIONS(1098), - [aux_sym_require_once_expression_token1] = ACTIONS(1098), - [sym_comment] = ACTIONS(5), - }, - [454] = { - [sym_text_interpolation] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(1100), - [sym_name] = ACTIONS(1102), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(1102), - [aux_sym_enum_case_token1] = ACTIONS(1102), - [aux_sym_class_declaration_token1] = ACTIONS(1102), - [aux_sym_final_modifier_token1] = ACTIONS(1102), - [aux_sym_abstract_modifier_token1] = ACTIONS(1102), - [aux_sym_readonly_modifier_token1] = ACTIONS(1102), - [aux_sym_visibility_modifier_token1] = ACTIONS(1102), - [aux_sym_visibility_modifier_token2] = ACTIONS(1102), - [aux_sym_visibility_modifier_token3] = ACTIONS(1102), - [aux_sym__arrow_function_header_token1] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [aux_sym_cast_type_token1] = ACTIONS(1102), - [aux_sym_echo_statement_token1] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [aux_sym_declare_statement_token1] = ACTIONS(1102), - [aux_sym_declare_statement_token2] = 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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(1102), - [aux_sym_print_intrinsic_token1] = ACTIONS(1102), - [aux_sym_object_creation_expression_token1] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1100), - [aux_sym__list_destructing_token1] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_self] = ACTIONS(1102), - [anon_sym_parent] = ACTIONS(1102), - [anon_sym_POUND_LBRACK] = ACTIONS(1100), - [anon_sym_SQUOTE] = ACTIONS(1100), - [aux_sym_encapsed_string_token1] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1100), - [aux_sym_string_token1] = ACTIONS(1100), - [anon_sym_LT_LT_LT] = ACTIONS(1100), - [anon_sym_BQUOTE] = ACTIONS(1100), - [sym_boolean] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1100), - [aux_sym_yield_expression_token1] = ACTIONS(1102), - [aux_sym_include_expression_token1] = ACTIONS(1102), - [aux_sym_include_once_expression_token1] = ACTIONS(1102), - [aux_sym_require_expression_token1] = ACTIONS(1102), - [aux_sym_require_once_expression_token1] = ACTIONS(1102), - [sym_comment] = ACTIONS(5), - }, - [455] = { - [sym_text_interpolation] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(1104), - [sym_name] = ACTIONS(1106), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(1106), - [aux_sym_enum_case_token1] = ACTIONS(1106), - [aux_sym_class_declaration_token1] = ACTIONS(1106), - [aux_sym_final_modifier_token1] = ACTIONS(1106), - [aux_sym_abstract_modifier_token1] = ACTIONS(1106), - [aux_sym_readonly_modifier_token1] = ACTIONS(1106), - [aux_sym_visibility_modifier_token1] = ACTIONS(1106), - [aux_sym_visibility_modifier_token2] = ACTIONS(1106), - [aux_sym_visibility_modifier_token3] = ACTIONS(1106), - [aux_sym__arrow_function_header_token1] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1104), - [aux_sym_cast_type_token1] = ACTIONS(1106), - [aux_sym_echo_statement_token1] = ACTIONS(1106), - [anon_sym_unset] = ACTIONS(1106), - [aux_sym_declare_statement_token1] = ACTIONS(1106), - [aux_sym_declare_statement_token2] = ACTIONS(1106), - [sym_float] = ACTIONS(1106), - [aux_sym_try_statement_token1] = ACTIONS(1106), - [aux_sym_goto_statement_token1] = ACTIONS(1106), - [aux_sym_continue_statement_token1] = ACTIONS(1106), - [aux_sym_break_statement_token1] = ACTIONS(1106), - [sym_integer] = ACTIONS(1106), - [aux_sym_return_statement_token1] = ACTIONS(1106), - [aux_sym_throw_expression_token1] = ACTIONS(1106), - [aux_sym_while_statement_token1] = ACTIONS(1106), - [aux_sym_while_statement_token2] = ACTIONS(1106), - [aux_sym_do_statement_token1] = ACTIONS(1106), - [aux_sym_for_statement_token1] = ACTIONS(1106), - [aux_sym_for_statement_token2] = ACTIONS(1106), - [aux_sym_foreach_statement_token1] = ACTIONS(1106), - [aux_sym_foreach_statement_token2] = ACTIONS(1106), - [aux_sym_if_statement_token1] = ACTIONS(1106), - [aux_sym_if_statement_token2] = ACTIONS(1106), - [aux_sym_else_if_clause_token1] = ACTIONS(1106), - [aux_sym_else_clause_token1] = ACTIONS(1106), - [aux_sym_match_expression_token1] = ACTIONS(1106), - [aux_sym_match_default_expression_token1] = ACTIONS(1106), - [aux_sym_switch_statement_token1] = ACTIONS(1106), - [aux_sym_switch_block_token1] = ACTIONS(1106), - [anon_sym_AT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [aux_sym_clone_expression_token1] = ACTIONS(1106), - [aux_sym_print_intrinsic_token1] = ACTIONS(1106), - [aux_sym_object_creation_expression_token1] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [aux_sym__list_destructing_token1] = ACTIONS(1106), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_self] = ACTIONS(1106), - [anon_sym_parent] = ACTIONS(1106), - [anon_sym_POUND_LBRACK] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [aux_sym_encapsed_string_token1] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [aux_sym_string_token1] = ACTIONS(1104), - [anon_sym_LT_LT_LT] = ACTIONS(1104), - [anon_sym_BQUOTE] = ACTIONS(1104), - [sym_boolean] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1104), - [aux_sym_yield_expression_token1] = ACTIONS(1106), - [aux_sym_include_expression_token1] = ACTIONS(1106), - [aux_sym_include_once_expression_token1] = ACTIONS(1106), - [aux_sym_require_expression_token1] = ACTIONS(1106), - [aux_sym_require_once_expression_token1] = ACTIONS(1106), - [sym_comment] = ACTIONS(5), - }, - [456] = { - [sym_text_interpolation] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(1108), - [sym_name] = ACTIONS(1110), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(1110), - [aux_sym_enum_case_token1] = ACTIONS(1110), - [aux_sym_class_declaration_token1] = ACTIONS(1110), - [aux_sym_final_modifier_token1] = ACTIONS(1110), - [aux_sym_abstract_modifier_token1] = ACTIONS(1110), - [aux_sym_readonly_modifier_token1] = ACTIONS(1110), - [aux_sym_visibility_modifier_token1] = ACTIONS(1110), - [aux_sym_visibility_modifier_token2] = ACTIONS(1110), - [aux_sym_visibility_modifier_token3] = ACTIONS(1110), - [aux_sym__arrow_function_header_token1] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1108), - [aux_sym_cast_type_token1] = ACTIONS(1110), - [aux_sym_echo_statement_token1] = ACTIONS(1110), - [anon_sym_unset] = ACTIONS(1110), - [aux_sym_declare_statement_token1] = ACTIONS(1110), - [aux_sym_declare_statement_token2] = 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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(1110), - [aux_sym_print_intrinsic_token1] = ACTIONS(1110), - [aux_sym_object_creation_expression_token1] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [aux_sym__list_destructing_token1] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1108), - [anon_sym_self] = ACTIONS(1110), - [anon_sym_parent] = ACTIONS(1110), - [anon_sym_POUND_LBRACK] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [aux_sym_encapsed_string_token1] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [aux_sym_string_token1] = ACTIONS(1108), - [anon_sym_LT_LT_LT] = ACTIONS(1108), - [anon_sym_BQUOTE] = ACTIONS(1108), - [sym_boolean] = ACTIONS(1110), - [sym_null] = ACTIONS(1110), - [anon_sym_DOLLAR] = ACTIONS(1108), - [aux_sym_yield_expression_token1] = ACTIONS(1110), - [aux_sym_include_expression_token1] = ACTIONS(1110), - [aux_sym_include_once_expression_token1] = ACTIONS(1110), - [aux_sym_require_expression_token1] = ACTIONS(1110), - [aux_sym_require_once_expression_token1] = ACTIONS(1110), - [sym_comment] = ACTIONS(5), - }, - [457] = { - [sym_text_interpolation] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(1112), - [sym_name] = ACTIONS(1114), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(1114), - [aux_sym_enum_case_token1] = ACTIONS(1114), - [aux_sym_class_declaration_token1] = ACTIONS(1114), - [aux_sym_final_modifier_token1] = ACTIONS(1114), - [aux_sym_abstract_modifier_token1] = ACTIONS(1114), - [aux_sym_readonly_modifier_token1] = ACTIONS(1114), - [aux_sym_visibility_modifier_token1] = ACTIONS(1114), - [aux_sym_visibility_modifier_token2] = ACTIONS(1114), - [aux_sym_visibility_modifier_token3] = ACTIONS(1114), - [aux_sym__arrow_function_header_token1] = ACTIONS(1114), - [anon_sym_LPAREN] = ACTIONS(1112), - [aux_sym_cast_type_token1] = ACTIONS(1114), - [aux_sym_echo_statement_token1] = ACTIONS(1114), - [anon_sym_unset] = ACTIONS(1114), - [aux_sym_declare_statement_token1] = ACTIONS(1114), - [aux_sym_declare_statement_token2] = 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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(1114), - [aux_sym_print_intrinsic_token1] = ACTIONS(1114), - [aux_sym_object_creation_expression_token1] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [aux_sym__list_destructing_token1] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1112), - [anon_sym_self] = ACTIONS(1114), - [anon_sym_parent] = ACTIONS(1114), - [anon_sym_POUND_LBRACK] = ACTIONS(1112), - [anon_sym_SQUOTE] = ACTIONS(1112), - [aux_sym_encapsed_string_token1] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1112), - [aux_sym_string_token1] = ACTIONS(1112), - [anon_sym_LT_LT_LT] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1112), - [sym_boolean] = ACTIONS(1114), - [sym_null] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1112), - [aux_sym_yield_expression_token1] = ACTIONS(1114), - [aux_sym_include_expression_token1] = ACTIONS(1114), - [aux_sym_include_once_expression_token1] = ACTIONS(1114), - [aux_sym_require_expression_token1] = ACTIONS(1114), - [aux_sym_require_once_expression_token1] = ACTIONS(1114), - [sym_comment] = ACTIONS(5), - }, - [458] = { - [sym_text_interpolation] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(1116), - [sym_name] = ACTIONS(1118), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(1118), - [aux_sym_enum_case_token1] = ACTIONS(1118), - [aux_sym_class_declaration_token1] = ACTIONS(1118), - [aux_sym_final_modifier_token1] = ACTIONS(1118), - [aux_sym_abstract_modifier_token1] = ACTIONS(1118), - [aux_sym_readonly_modifier_token1] = ACTIONS(1118), - [aux_sym_visibility_modifier_token1] = ACTIONS(1118), - [aux_sym_visibility_modifier_token2] = ACTIONS(1118), - [aux_sym_visibility_modifier_token3] = ACTIONS(1118), - [aux_sym__arrow_function_header_token1] = ACTIONS(1118), - [anon_sym_LPAREN] = ACTIONS(1116), - [aux_sym_cast_type_token1] = ACTIONS(1118), - [aux_sym_echo_statement_token1] = ACTIONS(1118), - [anon_sym_unset] = ACTIONS(1118), - [aux_sym_declare_statement_token1] = ACTIONS(1118), - [aux_sym_declare_statement_token2] = ACTIONS(1118), - [sym_float] = ACTIONS(1118), - [aux_sym_try_statement_token1] = ACTIONS(1118), - [aux_sym_goto_statement_token1] = ACTIONS(1118), - [aux_sym_continue_statement_token1] = ACTIONS(1118), - [aux_sym_break_statement_token1] = ACTIONS(1118), - [sym_integer] = ACTIONS(1118), - [aux_sym_return_statement_token1] = ACTIONS(1118), - [aux_sym_throw_expression_token1] = ACTIONS(1118), - [aux_sym_while_statement_token1] = ACTIONS(1118), - [aux_sym_while_statement_token2] = ACTIONS(1118), - [aux_sym_do_statement_token1] = ACTIONS(1118), - [aux_sym_for_statement_token1] = ACTIONS(1118), - [aux_sym_for_statement_token2] = ACTIONS(1118), - [aux_sym_foreach_statement_token1] = ACTIONS(1118), - [aux_sym_foreach_statement_token2] = ACTIONS(1118), - [aux_sym_if_statement_token1] = ACTIONS(1118), - [aux_sym_if_statement_token2] = ACTIONS(1118), - [aux_sym_else_if_clause_token1] = ACTIONS(1118), - [aux_sym_else_clause_token1] = ACTIONS(1118), - [aux_sym_match_expression_token1] = ACTIONS(1118), - [aux_sym_match_default_expression_token1] = ACTIONS(1118), - [aux_sym_switch_statement_token1] = ACTIONS(1118), - [aux_sym_switch_block_token1] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1116), - [anon_sym_BANG] = ACTIONS(1116), - [aux_sym_clone_expression_token1] = ACTIONS(1118), - [aux_sym_print_intrinsic_token1] = ACTIONS(1118), - [aux_sym_object_creation_expression_token1] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1116), - [aux_sym__list_destructing_token1] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_self] = ACTIONS(1118), - [anon_sym_parent] = ACTIONS(1118), - [anon_sym_POUND_LBRACK] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1116), - [aux_sym_encapsed_string_token1] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1116), - [aux_sym_string_token1] = ACTIONS(1116), - [anon_sym_LT_LT_LT] = ACTIONS(1116), - [anon_sym_BQUOTE] = ACTIONS(1116), - [sym_boolean] = ACTIONS(1118), - [sym_null] = ACTIONS(1118), - [anon_sym_DOLLAR] = ACTIONS(1116), - [aux_sym_yield_expression_token1] = ACTIONS(1118), - [aux_sym_include_expression_token1] = ACTIONS(1118), - [aux_sym_include_once_expression_token1] = ACTIONS(1118), - [aux_sym_require_expression_token1] = ACTIONS(1118), - [aux_sym_require_once_expression_token1] = ACTIONS(1118), - [sym_comment] = ACTIONS(5), - }, - [459] = { - [sym_text_interpolation] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(1120), - [sym_name] = ACTIONS(1122), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(1122), - [aux_sym_enum_case_token1] = ACTIONS(1122), - [aux_sym_class_declaration_token1] = ACTIONS(1122), - [aux_sym_final_modifier_token1] = ACTIONS(1122), - [aux_sym_abstract_modifier_token1] = ACTIONS(1122), - [aux_sym_readonly_modifier_token1] = ACTIONS(1122), - [aux_sym_visibility_modifier_token1] = ACTIONS(1122), - [aux_sym_visibility_modifier_token2] = ACTIONS(1122), - [aux_sym_visibility_modifier_token3] = ACTIONS(1122), - [aux_sym__arrow_function_header_token1] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(1120), - [aux_sym_cast_type_token1] = ACTIONS(1122), - [aux_sym_echo_statement_token1] = ACTIONS(1122), - [anon_sym_unset] = ACTIONS(1122), - [aux_sym_declare_statement_token1] = ACTIONS(1122), - [aux_sym_declare_statement_token2] = 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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(1122), - [aux_sym_print_intrinsic_token1] = ACTIONS(1122), - [aux_sym_object_creation_expression_token1] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1120), - [aux_sym__list_destructing_token1] = ACTIONS(1122), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_self] = ACTIONS(1122), - [anon_sym_parent] = ACTIONS(1122), - [anon_sym_POUND_LBRACK] = ACTIONS(1120), - [anon_sym_SQUOTE] = ACTIONS(1120), - [aux_sym_encapsed_string_token1] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1120), - [aux_sym_string_token1] = ACTIONS(1120), - [anon_sym_LT_LT_LT] = ACTIONS(1120), - [anon_sym_BQUOTE] = ACTIONS(1120), - [sym_boolean] = ACTIONS(1122), - [sym_null] = ACTIONS(1122), - [anon_sym_DOLLAR] = ACTIONS(1120), - [aux_sym_yield_expression_token1] = ACTIONS(1122), - [aux_sym_include_expression_token1] = ACTIONS(1122), - [aux_sym_include_once_expression_token1] = ACTIONS(1122), - [aux_sym_require_expression_token1] = ACTIONS(1122), - [aux_sym_require_once_expression_token1] = ACTIONS(1122), - [sym_comment] = ACTIONS(5), - }, - [460] = { - [sym_text_interpolation] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(1124), - [sym_name] = ACTIONS(1126), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(1126), - [aux_sym_enum_case_token1] = ACTIONS(1126), - [aux_sym_class_declaration_token1] = ACTIONS(1126), - [aux_sym_final_modifier_token1] = ACTIONS(1126), - [aux_sym_abstract_modifier_token1] = ACTIONS(1126), - [aux_sym_readonly_modifier_token1] = ACTIONS(1126), - [aux_sym_visibility_modifier_token1] = ACTIONS(1126), - [aux_sym_visibility_modifier_token2] = ACTIONS(1126), - [aux_sym_visibility_modifier_token3] = ACTIONS(1126), - [aux_sym__arrow_function_header_token1] = ACTIONS(1126), - [anon_sym_LPAREN] = ACTIONS(1124), - [aux_sym_cast_type_token1] = ACTIONS(1126), - [aux_sym_echo_statement_token1] = ACTIONS(1126), - [anon_sym_unset] = ACTIONS(1126), - [aux_sym_declare_statement_token1] = ACTIONS(1126), - [aux_sym_declare_statement_token2] = 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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(1126), - [aux_sym_print_intrinsic_token1] = ACTIONS(1126), - [aux_sym_object_creation_expression_token1] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [aux_sym__list_destructing_token1] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1124), - [anon_sym_self] = ACTIONS(1126), - [anon_sym_parent] = ACTIONS(1126), - [anon_sym_POUND_LBRACK] = ACTIONS(1124), - [anon_sym_SQUOTE] = ACTIONS(1124), - [aux_sym_encapsed_string_token1] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [aux_sym_string_token1] = ACTIONS(1124), - [anon_sym_LT_LT_LT] = ACTIONS(1124), - [anon_sym_BQUOTE] = ACTIONS(1124), - [sym_boolean] = ACTIONS(1126), - [sym_null] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(1124), - [aux_sym_yield_expression_token1] = ACTIONS(1126), - [aux_sym_include_expression_token1] = ACTIONS(1126), - [aux_sym_include_once_expression_token1] = ACTIONS(1126), - [aux_sym_require_expression_token1] = ACTIONS(1126), - [aux_sym_require_once_expression_token1] = ACTIONS(1126), - [sym_comment] = ACTIONS(5), - }, - [461] = { - [sym_text_interpolation] = STATE(461), - [ts_builtin_sym_end] = ACTIONS(1128), - [sym_name] = ACTIONS(1130), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1128), - [aux_sym_function_static_declaration_token1] = ACTIONS(1130), - [aux_sym_global_declaration_token1] = ACTIONS(1130), - [aux_sym_namespace_definition_token1] = ACTIONS(1130), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1130), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1130), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1130), - [anon_sym_BSLASH] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1128), - [aux_sym_trait_declaration_token1] = ACTIONS(1130), - [aux_sym_interface_declaration_token1] = ACTIONS(1130), - [aux_sym_enum_declaration_token1] = ACTIONS(1130), - [aux_sym_enum_case_token1] = ACTIONS(1130), - [aux_sym_class_declaration_token1] = ACTIONS(1130), - [aux_sym_final_modifier_token1] = ACTIONS(1130), - [aux_sym_abstract_modifier_token1] = ACTIONS(1130), - [aux_sym_readonly_modifier_token1] = ACTIONS(1130), - [aux_sym_visibility_modifier_token1] = ACTIONS(1130), - [aux_sym_visibility_modifier_token2] = ACTIONS(1130), - [aux_sym_visibility_modifier_token3] = ACTIONS(1130), - [aux_sym__arrow_function_header_token1] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1128), - [aux_sym_cast_type_token1] = ACTIONS(1130), - [aux_sym_echo_statement_token1] = ACTIONS(1130), - [anon_sym_unset] = ACTIONS(1130), - [aux_sym_declare_statement_token1] = ACTIONS(1130), - [aux_sym_declare_statement_token2] = ACTIONS(1130), - [sym_float] = ACTIONS(1130), - [aux_sym_try_statement_token1] = ACTIONS(1130), - [aux_sym_goto_statement_token1] = ACTIONS(1130), - [aux_sym_continue_statement_token1] = ACTIONS(1130), - [aux_sym_break_statement_token1] = ACTIONS(1130), - [sym_integer] = ACTIONS(1130), - [aux_sym_return_statement_token1] = ACTIONS(1130), - [aux_sym_throw_expression_token1] = ACTIONS(1130), - [aux_sym_while_statement_token1] = ACTIONS(1130), - [aux_sym_while_statement_token2] = ACTIONS(1130), - [aux_sym_do_statement_token1] = ACTIONS(1130), - [aux_sym_for_statement_token1] = ACTIONS(1130), - [aux_sym_for_statement_token2] = ACTIONS(1130), - [aux_sym_foreach_statement_token1] = ACTIONS(1130), - [aux_sym_foreach_statement_token2] = ACTIONS(1130), - [aux_sym_if_statement_token1] = ACTIONS(1130), - [aux_sym_if_statement_token2] = ACTIONS(1130), - [aux_sym_else_if_clause_token1] = ACTIONS(1130), - [aux_sym_else_clause_token1] = ACTIONS(1130), - [aux_sym_match_expression_token1] = ACTIONS(1130), - [aux_sym_match_default_expression_token1] = ACTIONS(1130), - [aux_sym_switch_statement_token1] = ACTIONS(1130), - [aux_sym_switch_block_token1] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [aux_sym_clone_expression_token1] = ACTIONS(1130), - [aux_sym_print_intrinsic_token1] = ACTIONS(1130), - [aux_sym_object_creation_expression_token1] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [aux_sym__list_destructing_token1] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1128), - [anon_sym_self] = ACTIONS(1130), - [anon_sym_parent] = ACTIONS(1130), - [anon_sym_POUND_LBRACK] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [aux_sym_encapsed_string_token1] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [aux_sym_string_token1] = ACTIONS(1128), - [anon_sym_LT_LT_LT] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [sym_boolean] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), - [anon_sym_DOLLAR] = ACTIONS(1128), - [aux_sym_yield_expression_token1] = ACTIONS(1130), - [aux_sym_include_expression_token1] = ACTIONS(1130), - [aux_sym_include_once_expression_token1] = ACTIONS(1130), - [aux_sym_require_expression_token1] = ACTIONS(1130), - [aux_sym_require_once_expression_token1] = ACTIONS(1130), - [sym_comment] = ACTIONS(5), - }, - [462] = { - [sym_text_interpolation] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(1132), - [sym_name] = ACTIONS(1134), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1132), - [aux_sym_function_static_declaration_token1] = ACTIONS(1134), - [aux_sym_global_declaration_token1] = ACTIONS(1134), - [aux_sym_namespace_definition_token1] = ACTIONS(1134), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1134), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1134), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1134), - [anon_sym_BSLASH] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1132), - [anon_sym_RBRACE] = ACTIONS(1132), - [aux_sym_trait_declaration_token1] = ACTIONS(1134), - [aux_sym_interface_declaration_token1] = ACTIONS(1134), - [aux_sym_enum_declaration_token1] = ACTIONS(1134), - [aux_sym_enum_case_token1] = ACTIONS(1134), - [aux_sym_class_declaration_token1] = ACTIONS(1134), - [aux_sym_final_modifier_token1] = ACTIONS(1134), - [aux_sym_abstract_modifier_token1] = ACTIONS(1134), - [aux_sym_readonly_modifier_token1] = ACTIONS(1134), - [aux_sym_visibility_modifier_token1] = ACTIONS(1134), - [aux_sym_visibility_modifier_token2] = ACTIONS(1134), - [aux_sym_visibility_modifier_token3] = ACTIONS(1134), - [aux_sym__arrow_function_header_token1] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1132), - [aux_sym_cast_type_token1] = ACTIONS(1134), - [aux_sym_echo_statement_token1] = ACTIONS(1134), - [anon_sym_unset] = ACTIONS(1134), - [aux_sym_declare_statement_token1] = ACTIONS(1134), - [aux_sym_declare_statement_token2] = ACTIONS(1134), - [sym_float] = ACTIONS(1134), - [aux_sym_try_statement_token1] = ACTIONS(1134), - [aux_sym_goto_statement_token1] = ACTIONS(1134), - [aux_sym_continue_statement_token1] = ACTIONS(1134), - [aux_sym_break_statement_token1] = ACTIONS(1134), - [sym_integer] = ACTIONS(1134), - [aux_sym_return_statement_token1] = ACTIONS(1134), - [aux_sym_throw_expression_token1] = ACTIONS(1134), - [aux_sym_while_statement_token1] = ACTIONS(1134), - [aux_sym_while_statement_token2] = ACTIONS(1134), - [aux_sym_do_statement_token1] = ACTIONS(1134), - [aux_sym_for_statement_token1] = ACTIONS(1134), - [aux_sym_for_statement_token2] = ACTIONS(1134), - [aux_sym_foreach_statement_token1] = ACTIONS(1134), - [aux_sym_foreach_statement_token2] = ACTIONS(1134), - [aux_sym_if_statement_token1] = ACTIONS(1134), - [aux_sym_if_statement_token2] = ACTIONS(1134), - [aux_sym_else_if_clause_token1] = ACTIONS(1134), - [aux_sym_else_clause_token1] = ACTIONS(1134), - [aux_sym_match_expression_token1] = ACTIONS(1134), - [aux_sym_match_default_expression_token1] = ACTIONS(1134), - [aux_sym_switch_statement_token1] = ACTIONS(1134), - [aux_sym_switch_block_token1] = ACTIONS(1134), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_TILDE] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1132), - [aux_sym_clone_expression_token1] = ACTIONS(1134), - [aux_sym_print_intrinsic_token1] = ACTIONS(1134), - [aux_sym_object_creation_expression_token1] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1132), - [anon_sym_DASH_DASH] = ACTIONS(1132), - [aux_sym__list_destructing_token1] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1132), - [anon_sym_self] = ACTIONS(1134), - [anon_sym_parent] = ACTIONS(1134), - [anon_sym_POUND_LBRACK] = ACTIONS(1132), - [anon_sym_SQUOTE] = ACTIONS(1132), - [aux_sym_encapsed_string_token1] = ACTIONS(1132), - [anon_sym_DQUOTE] = ACTIONS(1132), - [aux_sym_string_token1] = ACTIONS(1132), - [anon_sym_LT_LT_LT] = ACTIONS(1132), - [anon_sym_BQUOTE] = ACTIONS(1132), - [sym_boolean] = ACTIONS(1134), - [sym_null] = ACTIONS(1134), - [anon_sym_DOLLAR] = ACTIONS(1132), - [aux_sym_yield_expression_token1] = ACTIONS(1134), - [aux_sym_include_expression_token1] = ACTIONS(1134), - [aux_sym_include_once_expression_token1] = ACTIONS(1134), - [aux_sym_require_expression_token1] = ACTIONS(1134), - [aux_sym_require_once_expression_token1] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - }, - [463] = { - [sym_text_interpolation] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(1136), - [sym_name] = ACTIONS(1138), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1136), - [aux_sym_function_static_declaration_token1] = ACTIONS(1138), - [aux_sym_global_declaration_token1] = ACTIONS(1138), - [aux_sym_namespace_definition_token1] = ACTIONS(1138), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1138), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1138), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1138), - [anon_sym_BSLASH] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [aux_sym_trait_declaration_token1] = ACTIONS(1138), - [aux_sym_interface_declaration_token1] = ACTIONS(1138), - [aux_sym_enum_declaration_token1] = ACTIONS(1138), - [aux_sym_enum_case_token1] = ACTIONS(1138), - [aux_sym_class_declaration_token1] = ACTIONS(1138), - [aux_sym_final_modifier_token1] = ACTIONS(1138), - [aux_sym_abstract_modifier_token1] = ACTIONS(1138), - [aux_sym_readonly_modifier_token1] = ACTIONS(1138), - [aux_sym_visibility_modifier_token1] = ACTIONS(1138), - [aux_sym_visibility_modifier_token2] = ACTIONS(1138), - [aux_sym_visibility_modifier_token3] = ACTIONS(1138), - [aux_sym__arrow_function_header_token1] = ACTIONS(1138), - [anon_sym_LPAREN] = ACTIONS(1136), - [aux_sym_cast_type_token1] = ACTIONS(1138), - [aux_sym_echo_statement_token1] = ACTIONS(1138), - [anon_sym_unset] = ACTIONS(1138), - [aux_sym_declare_statement_token1] = ACTIONS(1138), - [aux_sym_declare_statement_token2] = ACTIONS(1138), - [sym_float] = ACTIONS(1138), - [aux_sym_try_statement_token1] = ACTIONS(1138), - [aux_sym_goto_statement_token1] = ACTIONS(1138), - [aux_sym_continue_statement_token1] = ACTIONS(1138), - [aux_sym_break_statement_token1] = ACTIONS(1138), - [sym_integer] = ACTIONS(1138), - [aux_sym_return_statement_token1] = ACTIONS(1138), - [aux_sym_throw_expression_token1] = ACTIONS(1138), - [aux_sym_while_statement_token1] = ACTIONS(1138), - [aux_sym_while_statement_token2] = ACTIONS(1138), - [aux_sym_do_statement_token1] = ACTIONS(1138), - [aux_sym_for_statement_token1] = ACTIONS(1138), - [aux_sym_for_statement_token2] = ACTIONS(1138), - [aux_sym_foreach_statement_token1] = ACTIONS(1138), - [aux_sym_foreach_statement_token2] = ACTIONS(1138), - [aux_sym_if_statement_token1] = ACTIONS(1138), - [aux_sym_if_statement_token2] = ACTIONS(1138), - [aux_sym_else_if_clause_token1] = ACTIONS(1138), - [aux_sym_else_clause_token1] = ACTIONS(1138), - [aux_sym_match_expression_token1] = ACTIONS(1138), - [aux_sym_match_default_expression_token1] = ACTIONS(1138), - [aux_sym_switch_statement_token1] = ACTIONS(1138), - [aux_sym_switch_block_token1] = ACTIONS(1138), - [anon_sym_AT] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [aux_sym_clone_expression_token1] = ACTIONS(1138), - [aux_sym_print_intrinsic_token1] = ACTIONS(1138), - [aux_sym_object_creation_expression_token1] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [aux_sym__list_destructing_token1] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_self] = ACTIONS(1138), - [anon_sym_parent] = ACTIONS(1138), - [anon_sym_POUND_LBRACK] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [aux_sym_encapsed_string_token1] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [aux_sym_string_token1] = ACTIONS(1136), - [anon_sym_LT_LT_LT] = ACTIONS(1136), - [anon_sym_BQUOTE] = ACTIONS(1136), - [sym_boolean] = ACTIONS(1138), - [sym_null] = ACTIONS(1138), - [anon_sym_DOLLAR] = ACTIONS(1136), - [aux_sym_yield_expression_token1] = ACTIONS(1138), - [aux_sym_include_expression_token1] = ACTIONS(1138), - [aux_sym_include_once_expression_token1] = ACTIONS(1138), - [aux_sym_require_expression_token1] = ACTIONS(1138), - [aux_sym_require_once_expression_token1] = ACTIONS(1138), - [sym_comment] = ACTIONS(5), - }, - [464] = { - [sym_text_interpolation] = STATE(464), - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_name] = ACTIONS(1142), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1140), - [aux_sym_function_static_declaration_token1] = ACTIONS(1142), - [aux_sym_global_declaration_token1] = ACTIONS(1142), - [aux_sym_namespace_definition_token1] = ACTIONS(1142), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1142), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1142), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1142), - [anon_sym_BSLASH] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [aux_sym_trait_declaration_token1] = ACTIONS(1142), - [aux_sym_interface_declaration_token1] = ACTIONS(1142), - [aux_sym_enum_declaration_token1] = ACTIONS(1142), - [aux_sym_enum_case_token1] = ACTIONS(1142), - [aux_sym_class_declaration_token1] = ACTIONS(1142), - [aux_sym_final_modifier_token1] = ACTIONS(1142), - [aux_sym_abstract_modifier_token1] = ACTIONS(1142), - [aux_sym_readonly_modifier_token1] = ACTIONS(1142), - [aux_sym_visibility_modifier_token1] = ACTIONS(1142), - [aux_sym_visibility_modifier_token2] = ACTIONS(1142), - [aux_sym_visibility_modifier_token3] = ACTIONS(1142), - [aux_sym__arrow_function_header_token1] = ACTIONS(1142), - [anon_sym_LPAREN] = ACTIONS(1140), - [aux_sym_cast_type_token1] = ACTIONS(1142), - [aux_sym_echo_statement_token1] = ACTIONS(1142), - [anon_sym_unset] = ACTIONS(1142), - [aux_sym_declare_statement_token1] = ACTIONS(1142), - [aux_sym_declare_statement_token2] = ACTIONS(1142), - [sym_float] = ACTIONS(1142), - [aux_sym_try_statement_token1] = ACTIONS(1142), - [aux_sym_goto_statement_token1] = ACTIONS(1142), - [aux_sym_continue_statement_token1] = ACTIONS(1142), - [aux_sym_break_statement_token1] = ACTIONS(1142), - [sym_integer] = ACTIONS(1142), - [aux_sym_return_statement_token1] = ACTIONS(1142), - [aux_sym_throw_expression_token1] = ACTIONS(1142), - [aux_sym_while_statement_token1] = ACTIONS(1142), - [aux_sym_while_statement_token2] = ACTIONS(1142), - [aux_sym_do_statement_token1] = ACTIONS(1142), - [aux_sym_for_statement_token1] = ACTIONS(1142), - [aux_sym_for_statement_token2] = ACTIONS(1142), - [aux_sym_foreach_statement_token1] = ACTIONS(1142), - [aux_sym_foreach_statement_token2] = ACTIONS(1142), - [aux_sym_if_statement_token1] = ACTIONS(1142), - [aux_sym_if_statement_token2] = ACTIONS(1142), - [aux_sym_else_if_clause_token1] = ACTIONS(1142), - [aux_sym_else_clause_token1] = ACTIONS(1142), - [aux_sym_match_expression_token1] = ACTIONS(1142), - [aux_sym_match_default_expression_token1] = ACTIONS(1142), - [aux_sym_switch_statement_token1] = ACTIONS(1142), - [aux_sym_switch_block_token1] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [aux_sym_clone_expression_token1] = ACTIONS(1142), - [aux_sym_print_intrinsic_token1] = ACTIONS(1142), - [aux_sym_object_creation_expression_token1] = ACTIONS(1142), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [aux_sym__list_destructing_token1] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_self] = ACTIONS(1142), - [anon_sym_parent] = ACTIONS(1142), - [anon_sym_POUND_LBRACK] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [aux_sym_encapsed_string_token1] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [aux_sym_string_token1] = ACTIONS(1140), - [anon_sym_LT_LT_LT] = ACTIONS(1140), - [anon_sym_BQUOTE] = ACTIONS(1140), - [sym_boolean] = ACTIONS(1142), - [sym_null] = ACTIONS(1142), - [anon_sym_DOLLAR] = ACTIONS(1140), - [aux_sym_yield_expression_token1] = ACTIONS(1142), - [aux_sym_include_expression_token1] = ACTIONS(1142), - [aux_sym_include_once_expression_token1] = ACTIONS(1142), - [aux_sym_require_expression_token1] = ACTIONS(1142), - [aux_sym_require_once_expression_token1] = ACTIONS(1142), - [sym_comment] = ACTIONS(5), - }, - [465] = { - [sym_text_interpolation] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_name] = ACTIONS(1142), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1140), - [aux_sym_function_static_declaration_token1] = ACTIONS(1142), - [aux_sym_global_declaration_token1] = ACTIONS(1142), - [aux_sym_namespace_definition_token1] = ACTIONS(1142), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1142), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1142), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1142), - [anon_sym_BSLASH] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [aux_sym_trait_declaration_token1] = ACTIONS(1142), - [aux_sym_interface_declaration_token1] = ACTIONS(1142), - [aux_sym_enum_declaration_token1] = ACTIONS(1142), - [aux_sym_enum_case_token1] = ACTIONS(1142), - [aux_sym_class_declaration_token1] = ACTIONS(1142), - [aux_sym_final_modifier_token1] = ACTIONS(1142), - [aux_sym_abstract_modifier_token1] = ACTIONS(1142), - [aux_sym_readonly_modifier_token1] = ACTIONS(1142), - [aux_sym_visibility_modifier_token1] = ACTIONS(1142), - [aux_sym_visibility_modifier_token2] = ACTIONS(1142), - [aux_sym_visibility_modifier_token3] = ACTIONS(1142), - [aux_sym__arrow_function_header_token1] = ACTIONS(1142), - [anon_sym_LPAREN] = ACTIONS(1140), - [aux_sym_cast_type_token1] = ACTIONS(1142), - [aux_sym_echo_statement_token1] = ACTIONS(1142), - [anon_sym_unset] = ACTIONS(1142), - [aux_sym_declare_statement_token1] = ACTIONS(1142), - [aux_sym_declare_statement_token2] = ACTIONS(1142), - [sym_float] = ACTIONS(1142), - [aux_sym_try_statement_token1] = ACTIONS(1142), - [aux_sym_goto_statement_token1] = ACTIONS(1142), - [aux_sym_continue_statement_token1] = ACTIONS(1142), - [aux_sym_break_statement_token1] = ACTIONS(1142), - [sym_integer] = ACTIONS(1142), - [aux_sym_return_statement_token1] = ACTIONS(1142), - [aux_sym_throw_expression_token1] = ACTIONS(1142), - [aux_sym_while_statement_token1] = ACTIONS(1142), - [aux_sym_while_statement_token2] = ACTIONS(1142), - [aux_sym_do_statement_token1] = ACTIONS(1142), - [aux_sym_for_statement_token1] = ACTIONS(1142), - [aux_sym_for_statement_token2] = ACTIONS(1142), - [aux_sym_foreach_statement_token1] = ACTIONS(1142), - [aux_sym_foreach_statement_token2] = ACTIONS(1142), - [aux_sym_if_statement_token1] = ACTIONS(1142), - [aux_sym_if_statement_token2] = ACTIONS(1142), - [aux_sym_else_if_clause_token1] = ACTIONS(1142), - [aux_sym_else_clause_token1] = ACTIONS(1142), - [aux_sym_match_expression_token1] = ACTIONS(1142), - [aux_sym_match_default_expression_token1] = ACTIONS(1142), - [aux_sym_switch_statement_token1] = ACTIONS(1142), - [aux_sym_switch_block_token1] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [aux_sym_clone_expression_token1] = ACTIONS(1142), - [aux_sym_print_intrinsic_token1] = ACTIONS(1142), - [aux_sym_object_creation_expression_token1] = ACTIONS(1142), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [aux_sym__list_destructing_token1] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_self] = ACTIONS(1142), - [anon_sym_parent] = ACTIONS(1142), - [anon_sym_POUND_LBRACK] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [aux_sym_encapsed_string_token1] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [aux_sym_string_token1] = ACTIONS(1140), - [anon_sym_LT_LT_LT] = ACTIONS(1140), - [anon_sym_BQUOTE] = ACTIONS(1140), - [sym_boolean] = ACTIONS(1142), - [sym_null] = ACTIONS(1142), - [anon_sym_DOLLAR] = ACTIONS(1140), - [aux_sym_yield_expression_token1] = ACTIONS(1142), - [aux_sym_include_expression_token1] = ACTIONS(1142), - [aux_sym_include_once_expression_token1] = ACTIONS(1142), - [aux_sym_require_expression_token1] = ACTIONS(1142), - [aux_sym_require_once_expression_token1] = ACTIONS(1142), - [sym_comment] = ACTIONS(5), - }, - [466] = { - [sym_text_interpolation] = STATE(466), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_name] = ACTIONS(1146), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1144), - [aux_sym_function_static_declaration_token1] = ACTIONS(1146), - [aux_sym_global_declaration_token1] = ACTIONS(1146), - [aux_sym_namespace_definition_token1] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1146), - [anon_sym_BSLASH] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [aux_sym_trait_declaration_token1] = ACTIONS(1146), - [aux_sym_interface_declaration_token1] = ACTIONS(1146), - [aux_sym_enum_declaration_token1] = ACTIONS(1146), - [aux_sym_enum_case_token1] = ACTIONS(1146), - [aux_sym_class_declaration_token1] = ACTIONS(1146), - [aux_sym_final_modifier_token1] = ACTIONS(1146), - [aux_sym_abstract_modifier_token1] = ACTIONS(1146), - [aux_sym_readonly_modifier_token1] = ACTIONS(1146), - [aux_sym_visibility_modifier_token1] = ACTIONS(1146), - [aux_sym_visibility_modifier_token2] = ACTIONS(1146), - [aux_sym_visibility_modifier_token3] = ACTIONS(1146), - [aux_sym__arrow_function_header_token1] = ACTIONS(1146), - [anon_sym_LPAREN] = ACTIONS(1144), - [aux_sym_cast_type_token1] = ACTIONS(1146), - [aux_sym_echo_statement_token1] = ACTIONS(1146), - [anon_sym_unset] = ACTIONS(1146), - [aux_sym_declare_statement_token1] = ACTIONS(1146), - [aux_sym_declare_statement_token2] = ACTIONS(1146), - [sym_float] = ACTIONS(1146), - [aux_sym_try_statement_token1] = ACTIONS(1146), - [aux_sym_goto_statement_token1] = ACTIONS(1146), - [aux_sym_continue_statement_token1] = ACTIONS(1146), - [aux_sym_break_statement_token1] = ACTIONS(1146), - [sym_integer] = ACTIONS(1146), - [aux_sym_return_statement_token1] = ACTIONS(1146), - [aux_sym_throw_expression_token1] = ACTIONS(1146), - [aux_sym_while_statement_token1] = ACTIONS(1146), - [aux_sym_while_statement_token2] = ACTIONS(1146), - [aux_sym_do_statement_token1] = ACTIONS(1146), - [aux_sym_for_statement_token1] = ACTIONS(1146), - [aux_sym_for_statement_token2] = ACTIONS(1146), - [aux_sym_foreach_statement_token1] = ACTIONS(1146), - [aux_sym_foreach_statement_token2] = ACTIONS(1146), - [aux_sym_if_statement_token1] = ACTIONS(1146), - [aux_sym_if_statement_token2] = ACTIONS(1146), - [aux_sym_else_if_clause_token1] = ACTIONS(1146), - [aux_sym_else_clause_token1] = ACTIONS(1146), - [aux_sym_match_expression_token1] = ACTIONS(1146), - [aux_sym_match_default_expression_token1] = ACTIONS(1146), - [aux_sym_switch_statement_token1] = ACTIONS(1146), - [aux_sym_switch_block_token1] = ACTIONS(1146), - [anon_sym_AT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [aux_sym_clone_expression_token1] = ACTIONS(1146), - [aux_sym_print_intrinsic_token1] = ACTIONS(1146), - [aux_sym_object_creation_expression_token1] = ACTIONS(1146), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [aux_sym__list_destructing_token1] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_self] = ACTIONS(1146), - [anon_sym_parent] = ACTIONS(1146), - [anon_sym_POUND_LBRACK] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [aux_sym_encapsed_string_token1] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [aux_sym_string_token1] = ACTIONS(1144), - [anon_sym_LT_LT_LT] = ACTIONS(1144), - [anon_sym_BQUOTE] = ACTIONS(1144), - [sym_boolean] = ACTIONS(1146), - [sym_null] = ACTIONS(1146), - [anon_sym_DOLLAR] = ACTIONS(1144), - [aux_sym_yield_expression_token1] = ACTIONS(1146), - [aux_sym_include_expression_token1] = ACTIONS(1146), - [aux_sym_include_once_expression_token1] = ACTIONS(1146), - [aux_sym_require_expression_token1] = ACTIONS(1146), - [aux_sym_require_once_expression_token1] = ACTIONS(1146), - [sym_comment] = ACTIONS(5), - }, - [467] = { - [sym_text_interpolation] = STATE(467), - [ts_builtin_sym_end] = ACTIONS(1148), - [sym_name] = ACTIONS(1150), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1148), - [aux_sym_function_static_declaration_token1] = ACTIONS(1150), - [aux_sym_global_declaration_token1] = ACTIONS(1150), - [aux_sym_namespace_definition_token1] = ACTIONS(1150), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1150), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1150), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1150), - [anon_sym_BSLASH] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [aux_sym_trait_declaration_token1] = ACTIONS(1150), - [aux_sym_interface_declaration_token1] = ACTIONS(1150), - [aux_sym_enum_declaration_token1] = ACTIONS(1150), - [aux_sym_enum_case_token1] = ACTIONS(1150), - [aux_sym_class_declaration_token1] = ACTIONS(1150), - [aux_sym_final_modifier_token1] = ACTIONS(1150), - [aux_sym_abstract_modifier_token1] = ACTIONS(1150), - [aux_sym_readonly_modifier_token1] = ACTIONS(1150), - [aux_sym_visibility_modifier_token1] = ACTIONS(1150), - [aux_sym_visibility_modifier_token2] = ACTIONS(1150), - [aux_sym_visibility_modifier_token3] = ACTIONS(1150), - [aux_sym__arrow_function_header_token1] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1148), - [aux_sym_cast_type_token1] = ACTIONS(1150), - [aux_sym_echo_statement_token1] = ACTIONS(1150), - [anon_sym_unset] = ACTIONS(1150), - [aux_sym_declare_statement_token1] = ACTIONS(1150), - [aux_sym_declare_statement_token2] = ACTIONS(1150), - [sym_float] = ACTIONS(1150), - [aux_sym_try_statement_token1] = ACTIONS(1150), - [aux_sym_goto_statement_token1] = ACTIONS(1150), - [aux_sym_continue_statement_token1] = ACTIONS(1150), - [aux_sym_break_statement_token1] = ACTIONS(1150), - [sym_integer] = ACTIONS(1150), - [aux_sym_return_statement_token1] = ACTIONS(1150), - [aux_sym_throw_expression_token1] = ACTIONS(1150), - [aux_sym_while_statement_token1] = ACTIONS(1150), - [aux_sym_while_statement_token2] = ACTIONS(1150), - [aux_sym_do_statement_token1] = ACTIONS(1150), - [aux_sym_for_statement_token1] = ACTIONS(1150), - [aux_sym_for_statement_token2] = ACTIONS(1150), - [aux_sym_foreach_statement_token1] = ACTIONS(1150), - [aux_sym_foreach_statement_token2] = ACTIONS(1150), - [aux_sym_if_statement_token1] = ACTIONS(1150), - [aux_sym_if_statement_token2] = ACTIONS(1150), - [aux_sym_else_if_clause_token1] = ACTIONS(1150), - [aux_sym_else_clause_token1] = ACTIONS(1150), - [aux_sym_match_expression_token1] = ACTIONS(1150), - [aux_sym_match_default_expression_token1] = ACTIONS(1150), - [aux_sym_switch_statement_token1] = ACTIONS(1150), - [aux_sym_switch_block_token1] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [aux_sym_clone_expression_token1] = ACTIONS(1150), - [aux_sym_print_intrinsic_token1] = ACTIONS(1150), - [aux_sym_object_creation_expression_token1] = ACTIONS(1150), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [aux_sym__list_destructing_token1] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_self] = ACTIONS(1150), - [anon_sym_parent] = ACTIONS(1150), - [anon_sym_POUND_LBRACK] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [aux_sym_encapsed_string_token1] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [aux_sym_string_token1] = ACTIONS(1148), - [anon_sym_LT_LT_LT] = ACTIONS(1148), - [anon_sym_BQUOTE] = ACTIONS(1148), - [sym_boolean] = ACTIONS(1150), - [sym_null] = ACTIONS(1150), - [anon_sym_DOLLAR] = ACTIONS(1148), - [aux_sym_yield_expression_token1] = ACTIONS(1150), - [aux_sym_include_expression_token1] = ACTIONS(1150), - [aux_sym_include_once_expression_token1] = ACTIONS(1150), - [aux_sym_require_expression_token1] = ACTIONS(1150), - [aux_sym_require_once_expression_token1] = ACTIONS(1150), - [sym_comment] = ACTIONS(5), - }, - [468] = { - [sym_text_interpolation] = STATE(468), - [ts_builtin_sym_end] = ACTIONS(1152), - [sym_name] = ACTIONS(1154), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1152), - [aux_sym_function_static_declaration_token1] = ACTIONS(1154), - [aux_sym_global_declaration_token1] = ACTIONS(1154), - [aux_sym_namespace_definition_token1] = ACTIONS(1154), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1154), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1154), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1154), - [anon_sym_BSLASH] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_RBRACE] = ACTIONS(1152), - [aux_sym_trait_declaration_token1] = ACTIONS(1154), - [aux_sym_interface_declaration_token1] = ACTIONS(1154), - [aux_sym_enum_declaration_token1] = ACTIONS(1154), - [aux_sym_enum_case_token1] = ACTIONS(1154), - [aux_sym_class_declaration_token1] = ACTIONS(1154), - [aux_sym_final_modifier_token1] = ACTIONS(1154), - [aux_sym_abstract_modifier_token1] = ACTIONS(1154), - [aux_sym_readonly_modifier_token1] = ACTIONS(1154), - [aux_sym_visibility_modifier_token1] = ACTIONS(1154), - [aux_sym_visibility_modifier_token2] = ACTIONS(1154), - [aux_sym_visibility_modifier_token3] = ACTIONS(1154), - [aux_sym__arrow_function_header_token1] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1152), - [aux_sym_cast_type_token1] = ACTIONS(1154), - [aux_sym_echo_statement_token1] = ACTIONS(1154), - [anon_sym_unset] = ACTIONS(1154), - [aux_sym_declare_statement_token1] = ACTIONS(1154), - [aux_sym_declare_statement_token2] = ACTIONS(1154), - [sym_float] = ACTIONS(1154), - [aux_sym_try_statement_token1] = ACTIONS(1154), - [aux_sym_goto_statement_token1] = ACTIONS(1154), - [aux_sym_continue_statement_token1] = ACTIONS(1154), - [aux_sym_break_statement_token1] = ACTIONS(1154), - [sym_integer] = ACTIONS(1154), - [aux_sym_return_statement_token1] = ACTIONS(1154), - [aux_sym_throw_expression_token1] = ACTIONS(1154), - [aux_sym_while_statement_token1] = ACTIONS(1154), - [aux_sym_while_statement_token2] = ACTIONS(1154), - [aux_sym_do_statement_token1] = ACTIONS(1154), - [aux_sym_for_statement_token1] = ACTIONS(1154), - [aux_sym_for_statement_token2] = ACTIONS(1154), - [aux_sym_foreach_statement_token1] = ACTIONS(1154), - [aux_sym_foreach_statement_token2] = ACTIONS(1154), - [aux_sym_if_statement_token1] = ACTIONS(1154), - [aux_sym_if_statement_token2] = ACTIONS(1154), - [aux_sym_else_if_clause_token1] = ACTIONS(1154), - [aux_sym_else_clause_token1] = ACTIONS(1154), - [aux_sym_match_expression_token1] = ACTIONS(1154), - [aux_sym_match_default_expression_token1] = ACTIONS(1154), - [aux_sym_switch_statement_token1] = ACTIONS(1154), - [aux_sym_switch_block_token1] = ACTIONS(1154), - [anon_sym_AT] = ACTIONS(1152), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [aux_sym_clone_expression_token1] = ACTIONS(1154), - [aux_sym_print_intrinsic_token1] = ACTIONS(1154), - [aux_sym_object_creation_expression_token1] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [aux_sym__list_destructing_token1] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1152), - [anon_sym_self] = ACTIONS(1154), - [anon_sym_parent] = ACTIONS(1154), - [anon_sym_POUND_LBRACK] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [aux_sym_encapsed_string_token1] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [aux_sym_string_token1] = ACTIONS(1152), - [anon_sym_LT_LT_LT] = ACTIONS(1152), - [anon_sym_BQUOTE] = ACTIONS(1152), - [sym_boolean] = ACTIONS(1154), - [sym_null] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1152), - [aux_sym_yield_expression_token1] = ACTIONS(1154), - [aux_sym_include_expression_token1] = ACTIONS(1154), - [aux_sym_include_once_expression_token1] = ACTIONS(1154), - [aux_sym_require_expression_token1] = ACTIONS(1154), - [aux_sym_require_once_expression_token1] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - }, - [469] = { - [sym_text_interpolation] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(1156), - [sym_name] = ACTIONS(1158), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1156), - [aux_sym_function_static_declaration_token1] = ACTIONS(1158), - [aux_sym_global_declaration_token1] = ACTIONS(1158), - [aux_sym_namespace_definition_token1] = ACTIONS(1158), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1158), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1158), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1158), - [anon_sym_BSLASH] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1156), - [aux_sym_trait_declaration_token1] = ACTIONS(1158), - [aux_sym_interface_declaration_token1] = ACTIONS(1158), - [aux_sym_enum_declaration_token1] = ACTIONS(1158), - [aux_sym_enum_case_token1] = ACTIONS(1158), - [aux_sym_class_declaration_token1] = ACTIONS(1158), - [aux_sym_final_modifier_token1] = ACTIONS(1158), - [aux_sym_abstract_modifier_token1] = ACTIONS(1158), - [aux_sym_readonly_modifier_token1] = ACTIONS(1158), - [aux_sym_visibility_modifier_token1] = ACTIONS(1158), - [aux_sym_visibility_modifier_token2] = ACTIONS(1158), - [aux_sym_visibility_modifier_token3] = ACTIONS(1158), - [aux_sym__arrow_function_header_token1] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1156), - [aux_sym_cast_type_token1] = ACTIONS(1158), - [aux_sym_echo_statement_token1] = ACTIONS(1158), - [anon_sym_unset] = ACTIONS(1158), - [aux_sym_declare_statement_token1] = ACTIONS(1158), - [aux_sym_declare_statement_token2] = ACTIONS(1158), - [sym_float] = ACTIONS(1158), - [aux_sym_try_statement_token1] = ACTIONS(1158), - [aux_sym_goto_statement_token1] = ACTIONS(1158), - [aux_sym_continue_statement_token1] = ACTIONS(1158), - [aux_sym_break_statement_token1] = ACTIONS(1158), - [sym_integer] = ACTIONS(1158), - [aux_sym_return_statement_token1] = ACTIONS(1158), - [aux_sym_throw_expression_token1] = ACTIONS(1158), - [aux_sym_while_statement_token1] = ACTIONS(1158), - [aux_sym_while_statement_token2] = ACTIONS(1158), - [aux_sym_do_statement_token1] = ACTIONS(1158), - [aux_sym_for_statement_token1] = ACTIONS(1158), - [aux_sym_for_statement_token2] = ACTIONS(1158), - [aux_sym_foreach_statement_token1] = ACTIONS(1158), - [aux_sym_foreach_statement_token2] = ACTIONS(1158), - [aux_sym_if_statement_token1] = ACTIONS(1158), - [aux_sym_if_statement_token2] = ACTIONS(1158), - [aux_sym_else_if_clause_token1] = ACTIONS(1158), - [aux_sym_else_clause_token1] = ACTIONS(1158), - [aux_sym_match_expression_token1] = ACTIONS(1158), - [aux_sym_match_default_expression_token1] = ACTIONS(1158), - [aux_sym_switch_statement_token1] = ACTIONS(1158), - [aux_sym_switch_block_token1] = ACTIONS(1158), - [anon_sym_AT] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [aux_sym_clone_expression_token1] = ACTIONS(1158), - [aux_sym_print_intrinsic_token1] = ACTIONS(1158), - [aux_sym_object_creation_expression_token1] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [aux_sym__list_destructing_token1] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1156), - [anon_sym_self] = ACTIONS(1158), - [anon_sym_parent] = ACTIONS(1158), - [anon_sym_POUND_LBRACK] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [aux_sym_encapsed_string_token1] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [aux_sym_string_token1] = ACTIONS(1156), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_BQUOTE] = ACTIONS(1156), - [sym_boolean] = ACTIONS(1158), - [sym_null] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1156), - [aux_sym_yield_expression_token1] = ACTIONS(1158), - [aux_sym_include_expression_token1] = ACTIONS(1158), - [aux_sym_include_once_expression_token1] = ACTIONS(1158), - [aux_sym_require_expression_token1] = ACTIONS(1158), - [aux_sym_require_once_expression_token1] = ACTIONS(1158), - [sym_comment] = ACTIONS(5), - }, - [470] = { - [sym_text_interpolation] = STATE(470), - [ts_builtin_sym_end] = ACTIONS(1160), - [sym_name] = ACTIONS(1162), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1160), - [aux_sym_function_static_declaration_token1] = ACTIONS(1162), - [aux_sym_global_declaration_token1] = ACTIONS(1162), - [aux_sym_namespace_definition_token1] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1162), - [anon_sym_BSLASH] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1160), - [aux_sym_trait_declaration_token1] = ACTIONS(1162), - [aux_sym_interface_declaration_token1] = ACTIONS(1162), - [aux_sym_enum_declaration_token1] = ACTIONS(1162), - [aux_sym_enum_case_token1] = ACTIONS(1162), - [aux_sym_class_declaration_token1] = ACTIONS(1162), - [aux_sym_final_modifier_token1] = ACTIONS(1162), - [aux_sym_abstract_modifier_token1] = ACTIONS(1162), - [aux_sym_readonly_modifier_token1] = ACTIONS(1162), - [aux_sym_visibility_modifier_token1] = ACTIONS(1162), - [aux_sym_visibility_modifier_token2] = ACTIONS(1162), - [aux_sym_visibility_modifier_token3] = ACTIONS(1162), - [aux_sym__arrow_function_header_token1] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1160), - [aux_sym_cast_type_token1] = ACTIONS(1162), - [aux_sym_echo_statement_token1] = ACTIONS(1162), - [anon_sym_unset] = ACTIONS(1162), - [aux_sym_declare_statement_token1] = ACTIONS(1162), - [aux_sym_declare_statement_token2] = ACTIONS(1162), - [sym_float] = ACTIONS(1162), - [aux_sym_try_statement_token1] = ACTIONS(1162), - [aux_sym_goto_statement_token1] = ACTIONS(1162), - [aux_sym_continue_statement_token1] = ACTIONS(1162), - [aux_sym_break_statement_token1] = ACTIONS(1162), - [sym_integer] = ACTIONS(1162), - [aux_sym_return_statement_token1] = ACTIONS(1162), - [aux_sym_throw_expression_token1] = ACTIONS(1162), - [aux_sym_while_statement_token1] = ACTIONS(1162), - [aux_sym_while_statement_token2] = ACTIONS(1162), - [aux_sym_do_statement_token1] = ACTIONS(1162), - [aux_sym_for_statement_token1] = ACTIONS(1162), - [aux_sym_for_statement_token2] = ACTIONS(1162), - [aux_sym_foreach_statement_token1] = ACTIONS(1162), - [aux_sym_foreach_statement_token2] = ACTIONS(1162), - [aux_sym_if_statement_token1] = ACTIONS(1162), - [aux_sym_if_statement_token2] = ACTIONS(1162), - [aux_sym_else_if_clause_token1] = ACTIONS(1162), - [aux_sym_else_clause_token1] = ACTIONS(1162), - [aux_sym_match_expression_token1] = ACTIONS(1162), - [aux_sym_match_default_expression_token1] = ACTIONS(1162), - [aux_sym_switch_statement_token1] = ACTIONS(1162), - [aux_sym_switch_block_token1] = ACTIONS(1162), - [anon_sym_AT] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [aux_sym_clone_expression_token1] = ACTIONS(1162), - [aux_sym_print_intrinsic_token1] = ACTIONS(1162), - [aux_sym_object_creation_expression_token1] = ACTIONS(1162), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [aux_sym__list_destructing_token1] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_self] = ACTIONS(1162), - [anon_sym_parent] = ACTIONS(1162), - [anon_sym_POUND_LBRACK] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [aux_sym_encapsed_string_token1] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [aux_sym_string_token1] = ACTIONS(1160), - [anon_sym_LT_LT_LT] = ACTIONS(1160), - [anon_sym_BQUOTE] = ACTIONS(1160), - [sym_boolean] = ACTIONS(1162), - [sym_null] = ACTIONS(1162), - [anon_sym_DOLLAR] = ACTIONS(1160), - [aux_sym_yield_expression_token1] = ACTIONS(1162), - [aux_sym_include_expression_token1] = ACTIONS(1162), - [aux_sym_include_once_expression_token1] = ACTIONS(1162), - [aux_sym_require_expression_token1] = ACTIONS(1162), - [aux_sym_require_once_expression_token1] = ACTIONS(1162), - [sym_comment] = ACTIONS(5), - }, - [471] = { - [sym_text_interpolation] = STATE(471), - [ts_builtin_sym_end] = ACTIONS(1160), - [sym_name] = ACTIONS(1162), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1160), - [aux_sym_function_static_declaration_token1] = ACTIONS(1162), - [aux_sym_global_declaration_token1] = ACTIONS(1162), - [aux_sym_namespace_definition_token1] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1162), - [anon_sym_BSLASH] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1160), - [aux_sym_trait_declaration_token1] = ACTIONS(1162), - [aux_sym_interface_declaration_token1] = ACTIONS(1162), - [aux_sym_enum_declaration_token1] = ACTIONS(1162), - [aux_sym_enum_case_token1] = ACTIONS(1162), - [aux_sym_class_declaration_token1] = ACTIONS(1162), - [aux_sym_final_modifier_token1] = ACTIONS(1162), - [aux_sym_abstract_modifier_token1] = ACTIONS(1162), - [aux_sym_readonly_modifier_token1] = ACTIONS(1162), - [aux_sym_visibility_modifier_token1] = ACTIONS(1162), - [aux_sym_visibility_modifier_token2] = ACTIONS(1162), - [aux_sym_visibility_modifier_token3] = ACTIONS(1162), - [aux_sym__arrow_function_header_token1] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1160), - [aux_sym_cast_type_token1] = ACTIONS(1162), - [aux_sym_echo_statement_token1] = ACTIONS(1162), - [anon_sym_unset] = ACTIONS(1162), - [aux_sym_declare_statement_token1] = ACTIONS(1162), - [aux_sym_declare_statement_token2] = ACTIONS(1162), - [sym_float] = ACTIONS(1162), - [aux_sym_try_statement_token1] = ACTIONS(1162), - [aux_sym_goto_statement_token1] = ACTIONS(1162), - [aux_sym_continue_statement_token1] = ACTIONS(1162), - [aux_sym_break_statement_token1] = ACTIONS(1162), - [sym_integer] = ACTIONS(1162), - [aux_sym_return_statement_token1] = ACTIONS(1162), - [aux_sym_throw_expression_token1] = ACTIONS(1162), - [aux_sym_while_statement_token1] = ACTIONS(1162), - [aux_sym_while_statement_token2] = ACTIONS(1162), - [aux_sym_do_statement_token1] = ACTIONS(1162), - [aux_sym_for_statement_token1] = ACTIONS(1162), - [aux_sym_for_statement_token2] = ACTIONS(1162), - [aux_sym_foreach_statement_token1] = ACTIONS(1162), - [aux_sym_foreach_statement_token2] = ACTIONS(1162), - [aux_sym_if_statement_token1] = ACTIONS(1162), - [aux_sym_if_statement_token2] = ACTIONS(1162), - [aux_sym_else_if_clause_token1] = ACTIONS(1162), - [aux_sym_else_clause_token1] = ACTIONS(1162), - [aux_sym_match_expression_token1] = ACTIONS(1162), - [aux_sym_match_default_expression_token1] = ACTIONS(1162), - [aux_sym_switch_statement_token1] = ACTIONS(1162), - [aux_sym_switch_block_token1] = ACTIONS(1162), - [anon_sym_AT] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [aux_sym_clone_expression_token1] = ACTIONS(1162), - [aux_sym_print_intrinsic_token1] = ACTIONS(1162), - [aux_sym_object_creation_expression_token1] = ACTIONS(1162), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [aux_sym__list_destructing_token1] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_self] = ACTIONS(1162), - [anon_sym_parent] = ACTIONS(1162), - [anon_sym_POUND_LBRACK] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [aux_sym_encapsed_string_token1] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [aux_sym_string_token1] = ACTIONS(1160), - [anon_sym_LT_LT_LT] = ACTIONS(1160), - [anon_sym_BQUOTE] = ACTIONS(1160), - [sym_boolean] = ACTIONS(1162), - [sym_null] = ACTIONS(1162), - [anon_sym_DOLLAR] = ACTIONS(1160), - [aux_sym_yield_expression_token1] = ACTIONS(1162), - [aux_sym_include_expression_token1] = ACTIONS(1162), - [aux_sym_include_once_expression_token1] = ACTIONS(1162), - [aux_sym_require_expression_token1] = ACTIONS(1162), - [aux_sym_require_once_expression_token1] = ACTIONS(1162), - [sym_comment] = ACTIONS(5), - }, - [472] = { - [sym_text_interpolation] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(1164), - [sym_name] = ACTIONS(1166), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1164), - [aux_sym_function_static_declaration_token1] = ACTIONS(1166), - [aux_sym_global_declaration_token1] = ACTIONS(1166), - [aux_sym_namespace_definition_token1] = ACTIONS(1166), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1166), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1166), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1166), - [anon_sym_BSLASH] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_RBRACE] = ACTIONS(1164), - [aux_sym_trait_declaration_token1] = ACTIONS(1166), - [aux_sym_interface_declaration_token1] = ACTIONS(1166), - [aux_sym_enum_declaration_token1] = ACTIONS(1166), - [aux_sym_enum_case_token1] = ACTIONS(1166), - [aux_sym_class_declaration_token1] = ACTIONS(1166), - [aux_sym_final_modifier_token1] = ACTIONS(1166), - [aux_sym_abstract_modifier_token1] = ACTIONS(1166), - [aux_sym_readonly_modifier_token1] = ACTIONS(1166), - [aux_sym_visibility_modifier_token1] = ACTIONS(1166), - [aux_sym_visibility_modifier_token2] = ACTIONS(1166), - [aux_sym_visibility_modifier_token3] = ACTIONS(1166), - [aux_sym__arrow_function_header_token1] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1164), - [aux_sym_cast_type_token1] = ACTIONS(1166), - [aux_sym_echo_statement_token1] = ACTIONS(1166), - [anon_sym_unset] = ACTIONS(1166), - [aux_sym_declare_statement_token1] = ACTIONS(1166), - [aux_sym_declare_statement_token2] = ACTIONS(1166), - [sym_float] = ACTIONS(1166), - [aux_sym_try_statement_token1] = ACTIONS(1166), - [aux_sym_goto_statement_token1] = ACTIONS(1166), - [aux_sym_continue_statement_token1] = ACTIONS(1166), - [aux_sym_break_statement_token1] = ACTIONS(1166), - [sym_integer] = ACTIONS(1166), - [aux_sym_return_statement_token1] = ACTIONS(1166), - [aux_sym_throw_expression_token1] = ACTIONS(1166), - [aux_sym_while_statement_token1] = ACTIONS(1166), - [aux_sym_while_statement_token2] = ACTIONS(1166), - [aux_sym_do_statement_token1] = ACTIONS(1166), - [aux_sym_for_statement_token1] = ACTIONS(1166), - [aux_sym_for_statement_token2] = ACTIONS(1166), - [aux_sym_foreach_statement_token1] = ACTIONS(1166), - [aux_sym_foreach_statement_token2] = ACTIONS(1166), - [aux_sym_if_statement_token1] = ACTIONS(1166), - [aux_sym_if_statement_token2] = ACTIONS(1166), - [aux_sym_else_if_clause_token1] = ACTIONS(1166), - [aux_sym_else_clause_token1] = ACTIONS(1166), - [aux_sym_match_expression_token1] = ACTIONS(1166), - [aux_sym_match_default_expression_token1] = ACTIONS(1166), - [aux_sym_switch_statement_token1] = ACTIONS(1166), - [aux_sym_switch_block_token1] = ACTIONS(1166), - [anon_sym_AT] = ACTIONS(1164), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [aux_sym_clone_expression_token1] = ACTIONS(1166), - [aux_sym_print_intrinsic_token1] = ACTIONS(1166), - [aux_sym_object_creation_expression_token1] = ACTIONS(1166), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [aux_sym__list_destructing_token1] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1164), - [anon_sym_self] = ACTIONS(1166), - [anon_sym_parent] = ACTIONS(1166), - [anon_sym_POUND_LBRACK] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [aux_sym_encapsed_string_token1] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [aux_sym_string_token1] = ACTIONS(1164), - [anon_sym_LT_LT_LT] = ACTIONS(1164), - [anon_sym_BQUOTE] = ACTIONS(1164), - [sym_boolean] = ACTIONS(1166), - [sym_null] = ACTIONS(1166), - [anon_sym_DOLLAR] = ACTIONS(1164), - [aux_sym_yield_expression_token1] = ACTIONS(1166), - [aux_sym_include_expression_token1] = ACTIONS(1166), - [aux_sym_include_once_expression_token1] = ACTIONS(1166), - [aux_sym_require_expression_token1] = ACTIONS(1166), - [aux_sym_require_once_expression_token1] = ACTIONS(1166), - [sym_comment] = ACTIONS(5), - }, - [473] = { - [sym_text_interpolation] = STATE(473), - [ts_builtin_sym_end] = ACTIONS(1168), - [sym_name] = ACTIONS(1170), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1168), - [aux_sym_function_static_declaration_token1] = ACTIONS(1170), - [aux_sym_global_declaration_token1] = ACTIONS(1170), - [aux_sym_namespace_definition_token1] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1170), - [anon_sym_BSLASH] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [aux_sym_trait_declaration_token1] = ACTIONS(1170), - [aux_sym_interface_declaration_token1] = ACTIONS(1170), - [aux_sym_enum_declaration_token1] = ACTIONS(1170), - [aux_sym_enum_case_token1] = ACTIONS(1170), - [aux_sym_class_declaration_token1] = ACTIONS(1170), - [aux_sym_final_modifier_token1] = ACTIONS(1170), - [aux_sym_abstract_modifier_token1] = ACTIONS(1170), - [aux_sym_readonly_modifier_token1] = ACTIONS(1170), - [aux_sym_visibility_modifier_token1] = ACTIONS(1170), - [aux_sym_visibility_modifier_token2] = ACTIONS(1170), - [aux_sym_visibility_modifier_token3] = ACTIONS(1170), - [aux_sym__arrow_function_header_token1] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1168), - [aux_sym_cast_type_token1] = ACTIONS(1170), - [aux_sym_echo_statement_token1] = ACTIONS(1170), - [anon_sym_unset] = ACTIONS(1170), - [aux_sym_declare_statement_token1] = ACTIONS(1170), - [aux_sym_declare_statement_token2] = ACTIONS(1170), - [sym_float] = ACTIONS(1170), - [aux_sym_try_statement_token1] = ACTIONS(1170), - [aux_sym_goto_statement_token1] = ACTIONS(1170), - [aux_sym_continue_statement_token1] = ACTIONS(1170), - [aux_sym_break_statement_token1] = ACTIONS(1170), - [sym_integer] = ACTIONS(1170), - [aux_sym_return_statement_token1] = ACTIONS(1170), - [aux_sym_throw_expression_token1] = ACTIONS(1170), - [aux_sym_while_statement_token1] = ACTIONS(1170), - [aux_sym_while_statement_token2] = ACTIONS(1170), - [aux_sym_do_statement_token1] = ACTIONS(1170), - [aux_sym_for_statement_token1] = ACTIONS(1170), - [aux_sym_for_statement_token2] = ACTIONS(1170), - [aux_sym_foreach_statement_token1] = ACTIONS(1170), - [aux_sym_foreach_statement_token2] = ACTIONS(1170), - [aux_sym_if_statement_token1] = ACTIONS(1170), - [aux_sym_if_statement_token2] = ACTIONS(1170), - [aux_sym_else_if_clause_token1] = ACTIONS(1170), - [aux_sym_else_clause_token1] = ACTIONS(1170), - [aux_sym_match_expression_token1] = ACTIONS(1170), - [aux_sym_match_default_expression_token1] = ACTIONS(1170), - [aux_sym_switch_statement_token1] = ACTIONS(1170), - [aux_sym_switch_block_token1] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [aux_sym_clone_expression_token1] = ACTIONS(1170), - [aux_sym_print_intrinsic_token1] = ACTIONS(1170), - [aux_sym_object_creation_expression_token1] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [aux_sym__list_destructing_token1] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_self] = ACTIONS(1170), - [anon_sym_parent] = ACTIONS(1170), - [anon_sym_POUND_LBRACK] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [aux_sym_encapsed_string_token1] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [aux_sym_string_token1] = ACTIONS(1168), - [anon_sym_LT_LT_LT] = ACTIONS(1168), - [anon_sym_BQUOTE] = ACTIONS(1168), - [sym_boolean] = ACTIONS(1170), - [sym_null] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1168), - [aux_sym_yield_expression_token1] = ACTIONS(1170), - [aux_sym_include_expression_token1] = ACTIONS(1170), - [aux_sym_include_once_expression_token1] = ACTIONS(1170), - [aux_sym_require_expression_token1] = ACTIONS(1170), - [aux_sym_require_once_expression_token1] = ACTIONS(1170), - [sym_comment] = ACTIONS(5), - }, - [474] = { - [sym_text_interpolation] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(1172), - [sym_name] = ACTIONS(1174), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1172), - [aux_sym_function_static_declaration_token1] = ACTIONS(1174), - [aux_sym_global_declaration_token1] = ACTIONS(1174), - [aux_sym_namespace_definition_token1] = ACTIONS(1174), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1174), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1174), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1174), - [anon_sym_BSLASH] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [aux_sym_trait_declaration_token1] = ACTIONS(1174), - [aux_sym_interface_declaration_token1] = ACTIONS(1174), - [aux_sym_enum_declaration_token1] = ACTIONS(1174), - [aux_sym_enum_case_token1] = ACTIONS(1174), - [aux_sym_class_declaration_token1] = ACTIONS(1174), - [aux_sym_final_modifier_token1] = ACTIONS(1174), - [aux_sym_abstract_modifier_token1] = ACTIONS(1174), - [aux_sym_readonly_modifier_token1] = ACTIONS(1174), - [aux_sym_visibility_modifier_token1] = ACTIONS(1174), - [aux_sym_visibility_modifier_token2] = ACTIONS(1174), - [aux_sym_visibility_modifier_token3] = ACTIONS(1174), - [aux_sym__arrow_function_header_token1] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1172), - [aux_sym_cast_type_token1] = ACTIONS(1174), - [aux_sym_echo_statement_token1] = ACTIONS(1174), - [anon_sym_unset] = ACTIONS(1174), - [aux_sym_declare_statement_token1] = ACTIONS(1174), - [aux_sym_declare_statement_token2] = ACTIONS(1174), - [sym_float] = ACTIONS(1174), - [aux_sym_try_statement_token1] = ACTIONS(1174), - [aux_sym_goto_statement_token1] = ACTIONS(1174), - [aux_sym_continue_statement_token1] = ACTIONS(1174), - [aux_sym_break_statement_token1] = ACTIONS(1174), - [sym_integer] = ACTIONS(1174), - [aux_sym_return_statement_token1] = ACTIONS(1174), - [aux_sym_throw_expression_token1] = ACTIONS(1174), - [aux_sym_while_statement_token1] = ACTIONS(1174), - [aux_sym_while_statement_token2] = ACTIONS(1174), - [aux_sym_do_statement_token1] = ACTIONS(1174), - [aux_sym_for_statement_token1] = ACTIONS(1174), - [aux_sym_for_statement_token2] = ACTIONS(1174), - [aux_sym_foreach_statement_token1] = ACTIONS(1174), - [aux_sym_foreach_statement_token2] = ACTIONS(1174), - [aux_sym_if_statement_token1] = ACTIONS(1174), - [aux_sym_if_statement_token2] = ACTIONS(1174), - [aux_sym_else_if_clause_token1] = ACTIONS(1174), - [aux_sym_else_clause_token1] = ACTIONS(1174), - [aux_sym_match_expression_token1] = ACTIONS(1174), - [aux_sym_match_default_expression_token1] = ACTIONS(1174), - [aux_sym_switch_statement_token1] = ACTIONS(1174), - [aux_sym_switch_block_token1] = ACTIONS(1174), - [anon_sym_AT] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [aux_sym_clone_expression_token1] = ACTIONS(1174), - [aux_sym_print_intrinsic_token1] = ACTIONS(1174), - [aux_sym_object_creation_expression_token1] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [aux_sym__list_destructing_token1] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_self] = ACTIONS(1174), - [anon_sym_parent] = ACTIONS(1174), - [anon_sym_POUND_LBRACK] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [aux_sym_encapsed_string_token1] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [aux_sym_string_token1] = ACTIONS(1172), - [anon_sym_LT_LT_LT] = ACTIONS(1172), - [anon_sym_BQUOTE] = ACTIONS(1172), - [sym_boolean] = ACTIONS(1174), - [sym_null] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1172), - [aux_sym_yield_expression_token1] = ACTIONS(1174), - [aux_sym_include_expression_token1] = ACTIONS(1174), - [aux_sym_include_once_expression_token1] = ACTIONS(1174), - [aux_sym_require_expression_token1] = ACTIONS(1174), - [aux_sym_require_once_expression_token1] = ACTIONS(1174), - [sym_comment] = ACTIONS(5), - }, - [475] = { - [sym_text_interpolation] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_name] = ACTIONS(1178), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1176), - [aux_sym_function_static_declaration_token1] = ACTIONS(1178), - [aux_sym_global_declaration_token1] = ACTIONS(1178), - [aux_sym_namespace_definition_token1] = ACTIONS(1178), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1178), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1178), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1178), - [anon_sym_BSLASH] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [aux_sym_trait_declaration_token1] = ACTIONS(1178), - [aux_sym_interface_declaration_token1] = ACTIONS(1178), - [aux_sym_enum_declaration_token1] = ACTIONS(1178), - [aux_sym_enum_case_token1] = ACTIONS(1178), - [aux_sym_class_declaration_token1] = ACTIONS(1178), - [aux_sym_final_modifier_token1] = ACTIONS(1178), - [aux_sym_abstract_modifier_token1] = ACTIONS(1178), - [aux_sym_readonly_modifier_token1] = ACTIONS(1178), - [aux_sym_visibility_modifier_token1] = ACTIONS(1178), - [aux_sym_visibility_modifier_token2] = ACTIONS(1178), - [aux_sym_visibility_modifier_token3] = ACTIONS(1178), - [aux_sym__arrow_function_header_token1] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1176), - [aux_sym_cast_type_token1] = ACTIONS(1178), - [aux_sym_echo_statement_token1] = ACTIONS(1178), - [anon_sym_unset] = ACTIONS(1178), - [aux_sym_declare_statement_token1] = ACTIONS(1178), - [aux_sym_declare_statement_token2] = ACTIONS(1178), - [sym_float] = ACTIONS(1178), - [aux_sym_try_statement_token1] = ACTIONS(1178), - [aux_sym_goto_statement_token1] = ACTIONS(1178), - [aux_sym_continue_statement_token1] = ACTIONS(1178), - [aux_sym_break_statement_token1] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [aux_sym_return_statement_token1] = ACTIONS(1178), - [aux_sym_throw_expression_token1] = ACTIONS(1178), - [aux_sym_while_statement_token1] = ACTIONS(1178), - [aux_sym_while_statement_token2] = ACTIONS(1178), - [aux_sym_do_statement_token1] = ACTIONS(1178), - [aux_sym_for_statement_token1] = ACTIONS(1178), - [aux_sym_for_statement_token2] = ACTIONS(1178), - [aux_sym_foreach_statement_token1] = ACTIONS(1178), - [aux_sym_foreach_statement_token2] = ACTIONS(1178), - [aux_sym_if_statement_token1] = ACTIONS(1178), - [aux_sym_if_statement_token2] = ACTIONS(1178), - [aux_sym_else_if_clause_token1] = ACTIONS(1178), - [aux_sym_else_clause_token1] = ACTIONS(1178), - [aux_sym_match_expression_token1] = ACTIONS(1178), - [aux_sym_match_default_expression_token1] = ACTIONS(1178), - [aux_sym_switch_statement_token1] = ACTIONS(1178), - [aux_sym_switch_block_token1] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [aux_sym_clone_expression_token1] = ACTIONS(1178), - [aux_sym_print_intrinsic_token1] = ACTIONS(1178), - [aux_sym_object_creation_expression_token1] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [aux_sym__list_destructing_token1] = ACTIONS(1178), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_self] = ACTIONS(1178), - [anon_sym_parent] = ACTIONS(1178), - [anon_sym_POUND_LBRACK] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [aux_sym_encapsed_string_token1] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [aux_sym_string_token1] = ACTIONS(1176), - [anon_sym_LT_LT_LT] = ACTIONS(1176), - [anon_sym_BQUOTE] = ACTIONS(1176), - [sym_boolean] = ACTIONS(1178), - [sym_null] = ACTIONS(1178), - [anon_sym_DOLLAR] = ACTIONS(1176), - [aux_sym_yield_expression_token1] = ACTIONS(1178), - [aux_sym_include_expression_token1] = ACTIONS(1178), - [aux_sym_include_once_expression_token1] = ACTIONS(1178), - [aux_sym_require_expression_token1] = ACTIONS(1178), - [aux_sym_require_once_expression_token1] = ACTIONS(1178), - [sym_comment] = ACTIONS(5), - }, - [476] = { - [sym_text_interpolation] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(1180), - [sym_name] = ACTIONS(1182), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1180), - [aux_sym_function_static_declaration_token1] = ACTIONS(1182), - [aux_sym_global_declaration_token1] = ACTIONS(1182), - [aux_sym_namespace_definition_token1] = ACTIONS(1182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1182), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1182), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1182), - [anon_sym_BSLASH] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_RBRACE] = ACTIONS(1180), - [aux_sym_trait_declaration_token1] = ACTIONS(1182), - [aux_sym_interface_declaration_token1] = ACTIONS(1182), - [aux_sym_enum_declaration_token1] = ACTIONS(1182), - [aux_sym_enum_case_token1] = ACTIONS(1182), - [aux_sym_class_declaration_token1] = ACTIONS(1182), - [aux_sym_final_modifier_token1] = ACTIONS(1182), - [aux_sym_abstract_modifier_token1] = ACTIONS(1182), - [aux_sym_readonly_modifier_token1] = ACTIONS(1182), - [aux_sym_visibility_modifier_token1] = ACTIONS(1182), - [aux_sym_visibility_modifier_token2] = ACTIONS(1182), - [aux_sym_visibility_modifier_token3] = ACTIONS(1182), - [aux_sym__arrow_function_header_token1] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1180), - [aux_sym_cast_type_token1] = ACTIONS(1182), - [aux_sym_echo_statement_token1] = ACTIONS(1182), - [anon_sym_unset] = ACTIONS(1182), - [aux_sym_declare_statement_token1] = ACTIONS(1182), - [aux_sym_declare_statement_token2] = ACTIONS(1182), - [sym_float] = ACTIONS(1182), - [aux_sym_try_statement_token1] = ACTIONS(1182), - [aux_sym_goto_statement_token1] = ACTIONS(1182), - [aux_sym_continue_statement_token1] = ACTIONS(1182), - [aux_sym_break_statement_token1] = ACTIONS(1182), - [sym_integer] = ACTIONS(1182), - [aux_sym_return_statement_token1] = ACTIONS(1182), - [aux_sym_throw_expression_token1] = ACTIONS(1182), - [aux_sym_while_statement_token1] = ACTIONS(1182), - [aux_sym_while_statement_token2] = ACTIONS(1182), - [aux_sym_do_statement_token1] = ACTIONS(1182), - [aux_sym_for_statement_token1] = ACTIONS(1182), - [aux_sym_for_statement_token2] = ACTIONS(1182), - [aux_sym_foreach_statement_token1] = ACTIONS(1182), - [aux_sym_foreach_statement_token2] = ACTIONS(1182), - [aux_sym_if_statement_token1] = ACTIONS(1182), - [aux_sym_if_statement_token2] = ACTIONS(1182), - [aux_sym_else_if_clause_token1] = ACTIONS(1182), - [aux_sym_else_clause_token1] = ACTIONS(1182), - [aux_sym_match_expression_token1] = ACTIONS(1182), - [aux_sym_match_default_expression_token1] = ACTIONS(1182), - [aux_sym_switch_statement_token1] = ACTIONS(1182), - [aux_sym_switch_block_token1] = ACTIONS(1182), - [anon_sym_AT] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [aux_sym_clone_expression_token1] = ACTIONS(1182), - [aux_sym_print_intrinsic_token1] = ACTIONS(1182), - [aux_sym_object_creation_expression_token1] = ACTIONS(1182), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [aux_sym__list_destructing_token1] = ACTIONS(1182), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_self] = ACTIONS(1182), - [anon_sym_parent] = ACTIONS(1182), - [anon_sym_POUND_LBRACK] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [aux_sym_encapsed_string_token1] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [aux_sym_string_token1] = ACTIONS(1180), - [anon_sym_LT_LT_LT] = ACTIONS(1180), - [anon_sym_BQUOTE] = ACTIONS(1180), - [sym_boolean] = ACTIONS(1182), - [sym_null] = ACTIONS(1182), - [anon_sym_DOLLAR] = ACTIONS(1180), - [aux_sym_yield_expression_token1] = ACTIONS(1182), - [aux_sym_include_expression_token1] = ACTIONS(1182), - [aux_sym_include_once_expression_token1] = ACTIONS(1182), - [aux_sym_require_expression_token1] = ACTIONS(1182), - [aux_sym_require_once_expression_token1] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - }, - [477] = { - [sym_text_interpolation] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1184), - [sym_name] = ACTIONS(1186), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1184), - [aux_sym_function_static_declaration_token1] = ACTIONS(1186), - [aux_sym_global_declaration_token1] = ACTIONS(1186), - [aux_sym_namespace_definition_token1] = ACTIONS(1186), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1186), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1186), - [anon_sym_BSLASH] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), - [aux_sym_trait_declaration_token1] = ACTIONS(1186), - [aux_sym_interface_declaration_token1] = ACTIONS(1186), - [aux_sym_enum_declaration_token1] = ACTIONS(1186), - [aux_sym_enum_case_token1] = ACTIONS(1186), - [aux_sym_class_declaration_token1] = ACTIONS(1186), - [aux_sym_final_modifier_token1] = ACTIONS(1186), - [aux_sym_abstract_modifier_token1] = ACTIONS(1186), - [aux_sym_readonly_modifier_token1] = ACTIONS(1186), - [aux_sym_visibility_modifier_token1] = ACTIONS(1186), - [aux_sym_visibility_modifier_token2] = ACTIONS(1186), - [aux_sym_visibility_modifier_token3] = ACTIONS(1186), - [aux_sym__arrow_function_header_token1] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1184), - [aux_sym_cast_type_token1] = ACTIONS(1186), - [aux_sym_echo_statement_token1] = ACTIONS(1186), - [anon_sym_unset] = ACTIONS(1186), - [aux_sym_declare_statement_token1] = ACTIONS(1186), - [aux_sym_declare_statement_token2] = ACTIONS(1186), - [sym_float] = ACTIONS(1186), - [aux_sym_try_statement_token1] = ACTIONS(1186), - [aux_sym_goto_statement_token1] = ACTIONS(1186), - [aux_sym_continue_statement_token1] = ACTIONS(1186), - [aux_sym_break_statement_token1] = ACTIONS(1186), - [sym_integer] = ACTIONS(1186), - [aux_sym_return_statement_token1] = ACTIONS(1186), - [aux_sym_throw_expression_token1] = ACTIONS(1186), - [aux_sym_while_statement_token1] = ACTIONS(1186), - [aux_sym_while_statement_token2] = ACTIONS(1186), - [aux_sym_do_statement_token1] = ACTIONS(1186), - [aux_sym_for_statement_token1] = ACTIONS(1186), - [aux_sym_for_statement_token2] = ACTIONS(1186), - [aux_sym_foreach_statement_token1] = ACTIONS(1186), - [aux_sym_foreach_statement_token2] = ACTIONS(1186), - [aux_sym_if_statement_token1] = ACTIONS(1186), - [aux_sym_if_statement_token2] = ACTIONS(1186), - [aux_sym_else_if_clause_token1] = ACTIONS(1186), - [aux_sym_else_clause_token1] = ACTIONS(1186), - [aux_sym_match_expression_token1] = ACTIONS(1186), - [aux_sym_match_default_expression_token1] = ACTIONS(1186), - [aux_sym_switch_statement_token1] = ACTIONS(1186), - [aux_sym_switch_block_token1] = ACTIONS(1186), - [anon_sym_AT] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [aux_sym_clone_expression_token1] = ACTIONS(1186), - [aux_sym_print_intrinsic_token1] = ACTIONS(1186), - [aux_sym_object_creation_expression_token1] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1184), - [aux_sym__list_destructing_token1] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_self] = ACTIONS(1186), - [anon_sym_parent] = ACTIONS(1186), - [anon_sym_POUND_LBRACK] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [aux_sym_encapsed_string_token1] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [aux_sym_string_token1] = ACTIONS(1184), - [anon_sym_LT_LT_LT] = ACTIONS(1184), - [anon_sym_BQUOTE] = ACTIONS(1184), - [sym_boolean] = ACTIONS(1186), - [sym_null] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1184), - [aux_sym_yield_expression_token1] = ACTIONS(1186), - [aux_sym_include_expression_token1] = ACTIONS(1186), - [aux_sym_include_once_expression_token1] = ACTIONS(1186), - [aux_sym_require_expression_token1] = ACTIONS(1186), - [aux_sym_require_once_expression_token1] = ACTIONS(1186), - [sym_comment] = ACTIONS(5), - }, - [478] = { - [sym_text_interpolation] = STATE(478), - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_name] = ACTIONS(1190), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1188), - [aux_sym_function_static_declaration_token1] = ACTIONS(1190), - [aux_sym_global_declaration_token1] = ACTIONS(1190), - [aux_sym_namespace_definition_token1] = ACTIONS(1190), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1190), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1190), - [anon_sym_BSLASH] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [aux_sym_trait_declaration_token1] = ACTIONS(1190), - [aux_sym_interface_declaration_token1] = ACTIONS(1190), - [aux_sym_enum_declaration_token1] = ACTIONS(1190), - [aux_sym_enum_case_token1] = ACTIONS(1190), - [aux_sym_class_declaration_token1] = ACTIONS(1190), - [aux_sym_final_modifier_token1] = ACTIONS(1190), - [aux_sym_abstract_modifier_token1] = ACTIONS(1190), - [aux_sym_readonly_modifier_token1] = ACTIONS(1190), - [aux_sym_visibility_modifier_token1] = ACTIONS(1190), - [aux_sym_visibility_modifier_token2] = ACTIONS(1190), - [aux_sym_visibility_modifier_token3] = ACTIONS(1190), - [aux_sym__arrow_function_header_token1] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1188), - [aux_sym_cast_type_token1] = ACTIONS(1190), - [aux_sym_echo_statement_token1] = ACTIONS(1190), - [anon_sym_unset] = ACTIONS(1190), - [aux_sym_declare_statement_token1] = ACTIONS(1190), - [aux_sym_declare_statement_token2] = ACTIONS(1190), - [sym_float] = ACTIONS(1190), - [aux_sym_try_statement_token1] = ACTIONS(1190), - [aux_sym_goto_statement_token1] = ACTIONS(1190), - [aux_sym_continue_statement_token1] = ACTIONS(1190), - [aux_sym_break_statement_token1] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [aux_sym_return_statement_token1] = ACTIONS(1190), - [aux_sym_throw_expression_token1] = ACTIONS(1190), - [aux_sym_while_statement_token1] = ACTIONS(1190), - [aux_sym_while_statement_token2] = ACTIONS(1190), - [aux_sym_do_statement_token1] = ACTIONS(1190), - [aux_sym_for_statement_token1] = ACTIONS(1190), - [aux_sym_for_statement_token2] = ACTIONS(1190), - [aux_sym_foreach_statement_token1] = ACTIONS(1190), - [aux_sym_foreach_statement_token2] = ACTIONS(1190), - [aux_sym_if_statement_token1] = ACTIONS(1190), - [aux_sym_if_statement_token2] = ACTIONS(1190), - [aux_sym_else_if_clause_token1] = ACTIONS(1190), - [aux_sym_else_clause_token1] = ACTIONS(1190), - [aux_sym_match_expression_token1] = ACTIONS(1190), - [aux_sym_match_default_expression_token1] = ACTIONS(1190), - [aux_sym_switch_statement_token1] = ACTIONS(1190), - [aux_sym_switch_block_token1] = ACTIONS(1190), - [anon_sym_AT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [aux_sym_clone_expression_token1] = ACTIONS(1190), - [aux_sym_print_intrinsic_token1] = ACTIONS(1190), - [aux_sym_object_creation_expression_token1] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [aux_sym__list_destructing_token1] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_self] = ACTIONS(1190), - [anon_sym_parent] = ACTIONS(1190), - [anon_sym_POUND_LBRACK] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [aux_sym_encapsed_string_token1] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [aux_sym_string_token1] = ACTIONS(1188), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_boolean] = ACTIONS(1190), - [sym_null] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1188), - [aux_sym_yield_expression_token1] = ACTIONS(1190), - [aux_sym_include_expression_token1] = ACTIONS(1190), - [aux_sym_include_once_expression_token1] = ACTIONS(1190), - [aux_sym_require_expression_token1] = ACTIONS(1190), - [aux_sym_require_once_expression_token1] = ACTIONS(1190), - [sym_comment] = ACTIONS(5), - }, - [479] = { - [sym_text_interpolation] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_name] = ACTIONS(1194), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1192), - [aux_sym_function_static_declaration_token1] = ACTIONS(1194), - [aux_sym_global_declaration_token1] = ACTIONS(1194), - [aux_sym_namespace_definition_token1] = ACTIONS(1194), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1194), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1194), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1194), - [anon_sym_BSLASH] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [aux_sym_trait_declaration_token1] = ACTIONS(1194), - [aux_sym_interface_declaration_token1] = ACTIONS(1194), - [aux_sym_enum_declaration_token1] = ACTIONS(1194), - [aux_sym_enum_case_token1] = ACTIONS(1194), - [aux_sym_class_declaration_token1] = ACTIONS(1194), - [aux_sym_final_modifier_token1] = ACTIONS(1194), - [aux_sym_abstract_modifier_token1] = ACTIONS(1194), - [aux_sym_readonly_modifier_token1] = ACTIONS(1194), - [aux_sym_visibility_modifier_token1] = ACTIONS(1194), - [aux_sym_visibility_modifier_token2] = ACTIONS(1194), - [aux_sym_visibility_modifier_token3] = ACTIONS(1194), - [aux_sym__arrow_function_header_token1] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1192), - [aux_sym_cast_type_token1] = ACTIONS(1194), - [aux_sym_echo_statement_token1] = ACTIONS(1194), - [anon_sym_unset] = ACTIONS(1194), - [aux_sym_declare_statement_token1] = ACTIONS(1194), - [aux_sym_declare_statement_token2] = ACTIONS(1194), - [sym_float] = ACTIONS(1194), - [aux_sym_try_statement_token1] = ACTIONS(1194), - [aux_sym_goto_statement_token1] = ACTIONS(1194), - [aux_sym_continue_statement_token1] = ACTIONS(1194), - [aux_sym_break_statement_token1] = ACTIONS(1194), - [sym_integer] = ACTIONS(1194), - [aux_sym_return_statement_token1] = ACTIONS(1194), - [aux_sym_throw_expression_token1] = ACTIONS(1194), - [aux_sym_while_statement_token1] = ACTIONS(1194), - [aux_sym_while_statement_token2] = ACTIONS(1194), - [aux_sym_do_statement_token1] = ACTIONS(1194), - [aux_sym_for_statement_token1] = ACTIONS(1194), - [aux_sym_for_statement_token2] = ACTIONS(1194), - [aux_sym_foreach_statement_token1] = ACTIONS(1194), - [aux_sym_foreach_statement_token2] = ACTIONS(1194), - [aux_sym_if_statement_token1] = ACTIONS(1194), - [aux_sym_if_statement_token2] = ACTIONS(1194), - [aux_sym_else_if_clause_token1] = ACTIONS(1194), - [aux_sym_else_clause_token1] = ACTIONS(1194), - [aux_sym_match_expression_token1] = ACTIONS(1194), - [aux_sym_match_default_expression_token1] = ACTIONS(1194), - [aux_sym_switch_statement_token1] = ACTIONS(1194), - [aux_sym_switch_block_token1] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [aux_sym_clone_expression_token1] = ACTIONS(1194), - [aux_sym_print_intrinsic_token1] = ACTIONS(1194), - [aux_sym_object_creation_expression_token1] = ACTIONS(1194), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [aux_sym__list_destructing_token1] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_self] = ACTIONS(1194), - [anon_sym_parent] = ACTIONS(1194), - [anon_sym_POUND_LBRACK] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [aux_sym_encapsed_string_token1] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [aux_sym_string_token1] = ACTIONS(1192), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [sym_boolean] = ACTIONS(1194), - [sym_null] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1192), - [aux_sym_yield_expression_token1] = ACTIONS(1194), - [aux_sym_include_expression_token1] = ACTIONS(1194), - [aux_sym_include_once_expression_token1] = ACTIONS(1194), - [aux_sym_require_expression_token1] = ACTIONS(1194), - [aux_sym_require_once_expression_token1] = ACTIONS(1194), - [sym_comment] = ACTIONS(5), - }, - [480] = { - [sym_text_interpolation] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1070), - [sym_name] = ACTIONS(1072), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1070), - [aux_sym_function_static_declaration_token1] = ACTIONS(1072), - [aux_sym_global_declaration_token1] = ACTIONS(1072), - [aux_sym_namespace_definition_token1] = ACTIONS(1072), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1072), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1072), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1072), - [anon_sym_BSLASH] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [aux_sym_trait_declaration_token1] = ACTIONS(1072), - [aux_sym_interface_declaration_token1] = ACTIONS(1072), - [aux_sym_enum_declaration_token1] = ACTIONS(1072), - [aux_sym_enum_case_token1] = ACTIONS(1072), - [aux_sym_class_declaration_token1] = ACTIONS(1072), - [aux_sym_final_modifier_token1] = ACTIONS(1072), - [aux_sym_abstract_modifier_token1] = ACTIONS(1072), - [aux_sym_readonly_modifier_token1] = ACTIONS(1072), - [aux_sym_visibility_modifier_token1] = ACTIONS(1072), - [aux_sym_visibility_modifier_token2] = ACTIONS(1072), - [aux_sym_visibility_modifier_token3] = ACTIONS(1072), - [aux_sym__arrow_function_header_token1] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1070), - [aux_sym_cast_type_token1] = ACTIONS(1072), - [aux_sym_echo_statement_token1] = ACTIONS(1072), - [anon_sym_unset] = ACTIONS(1072), - [aux_sym_declare_statement_token1] = ACTIONS(1072), - [aux_sym_declare_statement_token2] = ACTIONS(1072), - [sym_float] = ACTIONS(1072), - [aux_sym_try_statement_token1] = ACTIONS(1072), - [aux_sym_goto_statement_token1] = ACTIONS(1072), - [aux_sym_continue_statement_token1] = ACTIONS(1072), - [aux_sym_break_statement_token1] = ACTIONS(1072), - [sym_integer] = ACTIONS(1072), - [aux_sym_return_statement_token1] = ACTIONS(1072), - [aux_sym_throw_expression_token1] = ACTIONS(1072), - [aux_sym_while_statement_token1] = ACTIONS(1072), - [aux_sym_while_statement_token2] = ACTIONS(1072), - [aux_sym_do_statement_token1] = ACTIONS(1072), - [aux_sym_for_statement_token1] = ACTIONS(1072), - [aux_sym_for_statement_token2] = ACTIONS(1072), - [aux_sym_foreach_statement_token1] = ACTIONS(1072), - [aux_sym_foreach_statement_token2] = ACTIONS(1072), - [aux_sym_if_statement_token1] = ACTIONS(1072), - [aux_sym_if_statement_token2] = ACTIONS(1072), - [aux_sym_else_if_clause_token1] = ACTIONS(1072), - [aux_sym_else_clause_token1] = ACTIONS(1072), - [aux_sym_match_expression_token1] = ACTIONS(1072), - [aux_sym_match_default_expression_token1] = ACTIONS(1072), - [aux_sym_switch_statement_token1] = ACTIONS(1072), - [aux_sym_switch_block_token1] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [aux_sym_clone_expression_token1] = ACTIONS(1072), - [aux_sym_print_intrinsic_token1] = ACTIONS(1072), - [aux_sym_object_creation_expression_token1] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [aux_sym__list_destructing_token1] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_self] = ACTIONS(1072), - [anon_sym_parent] = ACTIONS(1072), - [anon_sym_POUND_LBRACK] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [aux_sym_encapsed_string_token1] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [aux_sym_string_token1] = ACTIONS(1070), - [anon_sym_LT_LT_LT] = ACTIONS(1070), - [anon_sym_BQUOTE] = ACTIONS(1070), - [sym_boolean] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1070), - [aux_sym_yield_expression_token1] = ACTIONS(1072), - [aux_sym_include_expression_token1] = ACTIONS(1072), - [aux_sym_include_once_expression_token1] = ACTIONS(1072), - [aux_sym_require_expression_token1] = ACTIONS(1072), - [aux_sym_require_once_expression_token1] = ACTIONS(1072), - [sym_comment] = ACTIONS(5), - }, - [481] = { - [sym_text_interpolation] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1196), - [sym_name] = ACTIONS(1198), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1196), - [aux_sym_function_static_declaration_token1] = ACTIONS(1198), - [aux_sym_global_declaration_token1] = ACTIONS(1198), - [aux_sym_namespace_definition_token1] = ACTIONS(1198), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1198), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1198), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1198), - [anon_sym_BSLASH] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [aux_sym_trait_declaration_token1] = ACTIONS(1198), - [aux_sym_interface_declaration_token1] = ACTIONS(1198), - [aux_sym_enum_declaration_token1] = ACTIONS(1198), - [aux_sym_enum_case_token1] = ACTIONS(1198), - [aux_sym_class_declaration_token1] = ACTIONS(1198), - [aux_sym_final_modifier_token1] = ACTIONS(1198), - [aux_sym_abstract_modifier_token1] = ACTIONS(1198), - [aux_sym_readonly_modifier_token1] = ACTIONS(1198), - [aux_sym_visibility_modifier_token1] = ACTIONS(1198), - [aux_sym_visibility_modifier_token2] = ACTIONS(1198), - [aux_sym_visibility_modifier_token3] = ACTIONS(1198), - [aux_sym__arrow_function_header_token1] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1196), - [aux_sym_cast_type_token1] = ACTIONS(1198), - [aux_sym_echo_statement_token1] = ACTIONS(1198), - [anon_sym_unset] = ACTIONS(1198), - [aux_sym_declare_statement_token1] = ACTIONS(1198), - [aux_sym_declare_statement_token2] = ACTIONS(1198), - [sym_float] = ACTIONS(1198), - [aux_sym_try_statement_token1] = ACTIONS(1198), - [aux_sym_goto_statement_token1] = ACTIONS(1198), - [aux_sym_continue_statement_token1] = ACTIONS(1198), - [aux_sym_break_statement_token1] = ACTIONS(1198), - [sym_integer] = ACTIONS(1198), - [aux_sym_return_statement_token1] = ACTIONS(1198), - [aux_sym_throw_expression_token1] = ACTIONS(1198), - [aux_sym_while_statement_token1] = ACTIONS(1198), - [aux_sym_while_statement_token2] = ACTIONS(1198), - [aux_sym_do_statement_token1] = ACTIONS(1198), - [aux_sym_for_statement_token1] = ACTIONS(1198), - [aux_sym_for_statement_token2] = ACTIONS(1198), - [aux_sym_foreach_statement_token1] = ACTIONS(1198), - [aux_sym_foreach_statement_token2] = ACTIONS(1198), - [aux_sym_if_statement_token1] = ACTIONS(1198), - [aux_sym_if_statement_token2] = ACTIONS(1198), - [aux_sym_else_if_clause_token1] = ACTIONS(1198), - [aux_sym_else_clause_token1] = ACTIONS(1198), - [aux_sym_match_expression_token1] = ACTIONS(1198), - [aux_sym_match_default_expression_token1] = ACTIONS(1198), - [aux_sym_switch_statement_token1] = ACTIONS(1198), - [aux_sym_switch_block_token1] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [aux_sym_clone_expression_token1] = ACTIONS(1198), - [aux_sym_print_intrinsic_token1] = ACTIONS(1198), - [aux_sym_object_creation_expression_token1] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [aux_sym__list_destructing_token1] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_self] = ACTIONS(1198), - [anon_sym_parent] = ACTIONS(1198), - [anon_sym_POUND_LBRACK] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [aux_sym_encapsed_string_token1] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [aux_sym_string_token1] = ACTIONS(1196), - [anon_sym_LT_LT_LT] = ACTIONS(1196), - [anon_sym_BQUOTE] = ACTIONS(1196), - [sym_boolean] = ACTIONS(1198), - [sym_null] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1196), - [aux_sym_yield_expression_token1] = ACTIONS(1198), - [aux_sym_include_expression_token1] = ACTIONS(1198), - [aux_sym_include_once_expression_token1] = ACTIONS(1198), - [aux_sym_require_expression_token1] = ACTIONS(1198), - [aux_sym_require_once_expression_token1] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - }, - [482] = { - [sym_text_interpolation] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1200), - [sym_name] = ACTIONS(1202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1200), - [aux_sym_function_static_declaration_token1] = ACTIONS(1202), - [aux_sym_global_declaration_token1] = ACTIONS(1202), - [aux_sym_namespace_definition_token1] = ACTIONS(1202), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1202), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1202), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1202), - [anon_sym_BSLASH] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1200), - [aux_sym_trait_declaration_token1] = ACTIONS(1202), - [aux_sym_interface_declaration_token1] = ACTIONS(1202), - [aux_sym_enum_declaration_token1] = ACTIONS(1202), - [aux_sym_enum_case_token1] = ACTIONS(1202), - [aux_sym_class_declaration_token1] = ACTIONS(1202), - [aux_sym_final_modifier_token1] = ACTIONS(1202), - [aux_sym_abstract_modifier_token1] = ACTIONS(1202), - [aux_sym_readonly_modifier_token1] = ACTIONS(1202), - [aux_sym_visibility_modifier_token1] = ACTIONS(1202), - [aux_sym_visibility_modifier_token2] = ACTIONS(1202), - [aux_sym_visibility_modifier_token3] = ACTIONS(1202), - [aux_sym__arrow_function_header_token1] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(1200), - [aux_sym_cast_type_token1] = ACTIONS(1202), - [aux_sym_echo_statement_token1] = ACTIONS(1202), - [anon_sym_unset] = ACTIONS(1202), - [aux_sym_declare_statement_token1] = ACTIONS(1202), - [aux_sym_declare_statement_token2] = ACTIONS(1202), - [sym_float] = ACTIONS(1202), - [aux_sym_try_statement_token1] = ACTIONS(1202), - [aux_sym_goto_statement_token1] = ACTIONS(1202), - [aux_sym_continue_statement_token1] = ACTIONS(1202), - [aux_sym_break_statement_token1] = ACTIONS(1202), - [sym_integer] = ACTIONS(1202), - [aux_sym_return_statement_token1] = ACTIONS(1202), - [aux_sym_throw_expression_token1] = ACTIONS(1202), - [aux_sym_while_statement_token1] = ACTIONS(1202), - [aux_sym_while_statement_token2] = ACTIONS(1202), - [aux_sym_do_statement_token1] = ACTIONS(1202), - [aux_sym_for_statement_token1] = ACTIONS(1202), - [aux_sym_for_statement_token2] = ACTIONS(1202), - [aux_sym_foreach_statement_token1] = ACTIONS(1202), - [aux_sym_foreach_statement_token2] = ACTIONS(1202), - [aux_sym_if_statement_token1] = ACTIONS(1202), - [aux_sym_if_statement_token2] = ACTIONS(1202), - [aux_sym_else_if_clause_token1] = ACTIONS(1202), - [aux_sym_else_clause_token1] = ACTIONS(1202), - [aux_sym_match_expression_token1] = ACTIONS(1202), - [aux_sym_match_default_expression_token1] = ACTIONS(1202), - [aux_sym_switch_statement_token1] = ACTIONS(1202), - [aux_sym_switch_block_token1] = ACTIONS(1202), - [anon_sym_AT] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [aux_sym_clone_expression_token1] = ACTIONS(1202), - [aux_sym_print_intrinsic_token1] = ACTIONS(1202), - [aux_sym_object_creation_expression_token1] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [aux_sym__list_destructing_token1] = ACTIONS(1202), - [anon_sym_LBRACK] = ACTIONS(1200), - [anon_sym_self] = ACTIONS(1202), - [anon_sym_parent] = ACTIONS(1202), - [anon_sym_POUND_LBRACK] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [aux_sym_encapsed_string_token1] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [aux_sym_string_token1] = ACTIONS(1200), - [anon_sym_LT_LT_LT] = ACTIONS(1200), - [anon_sym_BQUOTE] = ACTIONS(1200), - [sym_boolean] = ACTIONS(1202), - [sym_null] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(1200), - [aux_sym_yield_expression_token1] = ACTIONS(1202), - [aux_sym_include_expression_token1] = ACTIONS(1202), - [aux_sym_include_once_expression_token1] = ACTIONS(1202), - [aux_sym_require_expression_token1] = ACTIONS(1202), - [aux_sym_require_once_expression_token1] = ACTIONS(1202), - [sym_comment] = ACTIONS(5), - }, - [483] = { - [sym_text_interpolation] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1204), - [sym_name] = ACTIONS(1206), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1204), - [aux_sym_function_static_declaration_token1] = ACTIONS(1206), - [aux_sym_global_declaration_token1] = ACTIONS(1206), - [aux_sym_namespace_definition_token1] = ACTIONS(1206), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1206), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1206), - [anon_sym_BSLASH] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1204), - [aux_sym_trait_declaration_token1] = ACTIONS(1206), - [aux_sym_interface_declaration_token1] = ACTIONS(1206), - [aux_sym_enum_declaration_token1] = ACTIONS(1206), - [aux_sym_enum_case_token1] = ACTIONS(1206), - [aux_sym_class_declaration_token1] = ACTIONS(1206), - [aux_sym_final_modifier_token1] = ACTIONS(1206), - [aux_sym_abstract_modifier_token1] = ACTIONS(1206), - [aux_sym_readonly_modifier_token1] = ACTIONS(1206), - [aux_sym_visibility_modifier_token1] = ACTIONS(1206), - [aux_sym_visibility_modifier_token2] = ACTIONS(1206), - [aux_sym_visibility_modifier_token3] = ACTIONS(1206), - [aux_sym__arrow_function_header_token1] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [aux_sym_cast_type_token1] = ACTIONS(1206), - [aux_sym_echo_statement_token1] = ACTIONS(1206), - [anon_sym_unset] = ACTIONS(1206), - [aux_sym_declare_statement_token1] = ACTIONS(1206), - [aux_sym_declare_statement_token2] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [aux_sym_try_statement_token1] = ACTIONS(1206), - [aux_sym_goto_statement_token1] = ACTIONS(1206), - [aux_sym_continue_statement_token1] = ACTIONS(1206), - [aux_sym_break_statement_token1] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [aux_sym_return_statement_token1] = ACTIONS(1206), - [aux_sym_throw_expression_token1] = ACTIONS(1206), - [aux_sym_while_statement_token1] = ACTIONS(1206), - [aux_sym_while_statement_token2] = ACTIONS(1206), - [aux_sym_do_statement_token1] = ACTIONS(1206), - [aux_sym_for_statement_token1] = ACTIONS(1206), - [aux_sym_for_statement_token2] = ACTIONS(1206), - [aux_sym_foreach_statement_token1] = ACTIONS(1206), - [aux_sym_foreach_statement_token2] = ACTIONS(1206), - [aux_sym_if_statement_token1] = ACTIONS(1206), - [aux_sym_if_statement_token2] = ACTIONS(1206), - [aux_sym_else_if_clause_token1] = ACTIONS(1206), - [aux_sym_else_clause_token1] = ACTIONS(1206), - [aux_sym_match_expression_token1] = ACTIONS(1206), - [aux_sym_match_default_expression_token1] = ACTIONS(1206), - [aux_sym_switch_statement_token1] = ACTIONS(1206), - [aux_sym_switch_block_token1] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [aux_sym_clone_expression_token1] = ACTIONS(1206), - [aux_sym_print_intrinsic_token1] = ACTIONS(1206), - [aux_sym_object_creation_expression_token1] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [aux_sym__list_destructing_token1] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_self] = ACTIONS(1206), - [anon_sym_parent] = ACTIONS(1206), - [anon_sym_POUND_LBRACK] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [aux_sym_encapsed_string_token1] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [aux_sym_string_token1] = ACTIONS(1204), - [anon_sym_LT_LT_LT] = ACTIONS(1204), - [anon_sym_BQUOTE] = ACTIONS(1204), - [sym_boolean] = ACTIONS(1206), - [sym_null] = ACTIONS(1206), - [anon_sym_DOLLAR] = ACTIONS(1204), - [aux_sym_yield_expression_token1] = ACTIONS(1206), - [aux_sym_include_expression_token1] = ACTIONS(1206), - [aux_sym_include_once_expression_token1] = ACTIONS(1206), - [aux_sym_require_expression_token1] = ACTIONS(1206), - [aux_sym_require_once_expression_token1] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - }, - [484] = { - [sym_text_interpolation] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(1208), - [sym_name] = ACTIONS(1210), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1208), - [aux_sym_function_static_declaration_token1] = ACTIONS(1210), - [aux_sym_global_declaration_token1] = ACTIONS(1210), - [aux_sym_namespace_definition_token1] = ACTIONS(1210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1210), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1210), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1210), - [anon_sym_BSLASH] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [aux_sym_trait_declaration_token1] = ACTIONS(1210), - [aux_sym_interface_declaration_token1] = ACTIONS(1210), - [aux_sym_enum_declaration_token1] = ACTIONS(1210), - [aux_sym_enum_case_token1] = ACTIONS(1210), - [aux_sym_class_declaration_token1] = ACTIONS(1210), - [aux_sym_final_modifier_token1] = ACTIONS(1210), - [aux_sym_abstract_modifier_token1] = ACTIONS(1210), - [aux_sym_readonly_modifier_token1] = ACTIONS(1210), - [aux_sym_visibility_modifier_token1] = ACTIONS(1210), - [aux_sym_visibility_modifier_token2] = ACTIONS(1210), - [aux_sym_visibility_modifier_token3] = ACTIONS(1210), - [aux_sym__arrow_function_header_token1] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1208), - [aux_sym_cast_type_token1] = ACTIONS(1210), - [aux_sym_echo_statement_token1] = ACTIONS(1210), - [anon_sym_unset] = ACTIONS(1210), - [aux_sym_declare_statement_token1] = ACTIONS(1210), - [aux_sym_declare_statement_token2] = ACTIONS(1210), - [sym_float] = ACTIONS(1210), - [aux_sym_try_statement_token1] = ACTIONS(1210), - [aux_sym_goto_statement_token1] = ACTIONS(1210), - [aux_sym_continue_statement_token1] = ACTIONS(1210), - [aux_sym_break_statement_token1] = ACTIONS(1210), - [sym_integer] = ACTIONS(1210), - [aux_sym_return_statement_token1] = ACTIONS(1210), - [aux_sym_throw_expression_token1] = ACTIONS(1210), - [aux_sym_while_statement_token1] = ACTIONS(1210), - [aux_sym_while_statement_token2] = ACTIONS(1210), - [aux_sym_do_statement_token1] = ACTIONS(1210), - [aux_sym_for_statement_token1] = ACTIONS(1210), - [aux_sym_for_statement_token2] = ACTIONS(1210), - [aux_sym_foreach_statement_token1] = ACTIONS(1210), - [aux_sym_foreach_statement_token2] = ACTIONS(1210), - [aux_sym_if_statement_token1] = ACTIONS(1210), - [aux_sym_if_statement_token2] = ACTIONS(1210), - [aux_sym_else_if_clause_token1] = ACTIONS(1210), - [aux_sym_else_clause_token1] = ACTIONS(1210), - [aux_sym_match_expression_token1] = ACTIONS(1210), - [aux_sym_match_default_expression_token1] = ACTIONS(1210), - [aux_sym_switch_statement_token1] = ACTIONS(1210), - [aux_sym_switch_block_token1] = ACTIONS(1210), - [anon_sym_AT] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [aux_sym_clone_expression_token1] = ACTIONS(1210), - [aux_sym_print_intrinsic_token1] = ACTIONS(1210), - [aux_sym_object_creation_expression_token1] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [aux_sym__list_destructing_token1] = ACTIONS(1210), - [anon_sym_LBRACK] = ACTIONS(1208), - [anon_sym_self] = ACTIONS(1210), - [anon_sym_parent] = ACTIONS(1210), - [anon_sym_POUND_LBRACK] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [aux_sym_encapsed_string_token1] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [aux_sym_string_token1] = ACTIONS(1208), - [anon_sym_LT_LT_LT] = ACTIONS(1208), - [anon_sym_BQUOTE] = ACTIONS(1208), - [sym_boolean] = ACTIONS(1210), - [sym_null] = ACTIONS(1210), - [anon_sym_DOLLAR] = ACTIONS(1208), - [aux_sym_yield_expression_token1] = ACTIONS(1210), - [aux_sym_include_expression_token1] = ACTIONS(1210), - [aux_sym_include_once_expression_token1] = ACTIONS(1210), - [aux_sym_require_expression_token1] = ACTIONS(1210), - [aux_sym_require_once_expression_token1] = ACTIONS(1210), - [sym_comment] = ACTIONS(5), - }, - [485] = { - [sym_text_interpolation] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(1212), - [sym_name] = ACTIONS(1214), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1212), - [aux_sym_function_static_declaration_token1] = ACTIONS(1214), - [aux_sym_global_declaration_token1] = ACTIONS(1214), - [aux_sym_namespace_definition_token1] = ACTIONS(1214), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1214), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1214), - [anon_sym_BSLASH] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_RBRACE] = ACTIONS(1212), - [aux_sym_trait_declaration_token1] = ACTIONS(1214), - [aux_sym_interface_declaration_token1] = ACTIONS(1214), - [aux_sym_enum_declaration_token1] = ACTIONS(1214), - [aux_sym_enum_case_token1] = ACTIONS(1214), - [aux_sym_class_declaration_token1] = ACTIONS(1214), - [aux_sym_final_modifier_token1] = ACTIONS(1214), - [aux_sym_abstract_modifier_token1] = ACTIONS(1214), - [aux_sym_readonly_modifier_token1] = ACTIONS(1214), - [aux_sym_visibility_modifier_token1] = ACTIONS(1214), - [aux_sym_visibility_modifier_token2] = ACTIONS(1214), - [aux_sym_visibility_modifier_token3] = ACTIONS(1214), - [aux_sym__arrow_function_header_token1] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1212), - [aux_sym_cast_type_token1] = ACTIONS(1214), - [aux_sym_echo_statement_token1] = ACTIONS(1214), - [anon_sym_unset] = ACTIONS(1214), - [aux_sym_declare_statement_token1] = ACTIONS(1214), - [aux_sym_declare_statement_token2] = ACTIONS(1214), - [sym_float] = ACTIONS(1214), - [aux_sym_try_statement_token1] = ACTIONS(1214), - [aux_sym_goto_statement_token1] = ACTIONS(1214), - [aux_sym_continue_statement_token1] = ACTIONS(1214), - [aux_sym_break_statement_token1] = ACTIONS(1214), - [sym_integer] = ACTIONS(1214), - [aux_sym_return_statement_token1] = ACTIONS(1214), - [aux_sym_throw_expression_token1] = ACTIONS(1214), - [aux_sym_while_statement_token1] = ACTIONS(1214), - [aux_sym_while_statement_token2] = ACTIONS(1214), - [aux_sym_do_statement_token1] = ACTIONS(1214), - [aux_sym_for_statement_token1] = ACTIONS(1214), - [aux_sym_for_statement_token2] = ACTIONS(1214), - [aux_sym_foreach_statement_token1] = ACTIONS(1214), - [aux_sym_foreach_statement_token2] = ACTIONS(1214), - [aux_sym_if_statement_token1] = ACTIONS(1214), - [aux_sym_if_statement_token2] = ACTIONS(1214), - [aux_sym_else_if_clause_token1] = ACTIONS(1214), - [aux_sym_else_clause_token1] = ACTIONS(1214), - [aux_sym_match_expression_token1] = ACTIONS(1214), - [aux_sym_match_default_expression_token1] = ACTIONS(1214), - [aux_sym_switch_statement_token1] = ACTIONS(1214), - [aux_sym_switch_block_token1] = ACTIONS(1214), - [anon_sym_AT] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [aux_sym_clone_expression_token1] = ACTIONS(1214), - [aux_sym_print_intrinsic_token1] = ACTIONS(1214), - [aux_sym_object_creation_expression_token1] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [aux_sym__list_destructing_token1] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1212), - [anon_sym_self] = ACTIONS(1214), - [anon_sym_parent] = ACTIONS(1214), - [anon_sym_POUND_LBRACK] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [aux_sym_encapsed_string_token1] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [aux_sym_string_token1] = ACTIONS(1212), - [anon_sym_LT_LT_LT] = ACTIONS(1212), - [anon_sym_BQUOTE] = ACTIONS(1212), - [sym_boolean] = ACTIONS(1214), - [sym_null] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1212), - [aux_sym_yield_expression_token1] = ACTIONS(1214), - [aux_sym_include_expression_token1] = ACTIONS(1214), - [aux_sym_include_once_expression_token1] = ACTIONS(1214), - [aux_sym_require_expression_token1] = ACTIONS(1214), - [aux_sym_require_once_expression_token1] = ACTIONS(1214), - [sym_comment] = ACTIONS(5), - }, - [486] = { - [sym_text_interpolation] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(1204), - [sym_name] = ACTIONS(1206), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1204), - [aux_sym_function_static_declaration_token1] = ACTIONS(1206), - [aux_sym_global_declaration_token1] = ACTIONS(1206), - [aux_sym_namespace_definition_token1] = ACTIONS(1206), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1206), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1206), - [anon_sym_BSLASH] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1204), - [aux_sym_trait_declaration_token1] = ACTIONS(1206), - [aux_sym_interface_declaration_token1] = ACTIONS(1206), - [aux_sym_enum_declaration_token1] = ACTIONS(1206), - [aux_sym_enum_case_token1] = ACTIONS(1206), - [aux_sym_class_declaration_token1] = ACTIONS(1206), - [aux_sym_final_modifier_token1] = ACTIONS(1206), - [aux_sym_abstract_modifier_token1] = ACTIONS(1206), - [aux_sym_readonly_modifier_token1] = ACTIONS(1206), - [aux_sym_visibility_modifier_token1] = ACTIONS(1206), - [aux_sym_visibility_modifier_token2] = ACTIONS(1206), - [aux_sym_visibility_modifier_token3] = ACTIONS(1206), - [aux_sym__arrow_function_header_token1] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [aux_sym_cast_type_token1] = ACTIONS(1206), - [aux_sym_echo_statement_token1] = ACTIONS(1206), - [anon_sym_unset] = ACTIONS(1206), - [aux_sym_declare_statement_token1] = ACTIONS(1206), - [aux_sym_declare_statement_token2] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [aux_sym_try_statement_token1] = ACTIONS(1206), - [aux_sym_goto_statement_token1] = ACTIONS(1206), - [aux_sym_continue_statement_token1] = ACTIONS(1206), - [aux_sym_break_statement_token1] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [aux_sym_return_statement_token1] = ACTIONS(1206), - [aux_sym_throw_expression_token1] = ACTIONS(1206), - [aux_sym_while_statement_token1] = ACTIONS(1206), - [aux_sym_while_statement_token2] = ACTIONS(1206), - [aux_sym_do_statement_token1] = ACTIONS(1206), - [aux_sym_for_statement_token1] = ACTIONS(1206), - [aux_sym_for_statement_token2] = ACTIONS(1206), - [aux_sym_foreach_statement_token1] = ACTIONS(1206), - [aux_sym_foreach_statement_token2] = ACTIONS(1206), - [aux_sym_if_statement_token1] = ACTIONS(1206), - [aux_sym_if_statement_token2] = ACTIONS(1206), - [aux_sym_else_if_clause_token1] = ACTIONS(1206), - [aux_sym_else_clause_token1] = ACTIONS(1206), - [aux_sym_match_expression_token1] = ACTIONS(1206), - [aux_sym_match_default_expression_token1] = ACTIONS(1206), - [aux_sym_switch_statement_token1] = ACTIONS(1206), - [aux_sym_switch_block_token1] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [aux_sym_clone_expression_token1] = ACTIONS(1206), - [aux_sym_print_intrinsic_token1] = ACTIONS(1206), - [aux_sym_object_creation_expression_token1] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [aux_sym__list_destructing_token1] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_self] = ACTIONS(1206), - [anon_sym_parent] = ACTIONS(1206), - [anon_sym_POUND_LBRACK] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [aux_sym_encapsed_string_token1] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [aux_sym_string_token1] = ACTIONS(1204), - [anon_sym_LT_LT_LT] = ACTIONS(1204), - [anon_sym_BQUOTE] = ACTIONS(1204), - [sym_boolean] = ACTIONS(1206), - [sym_null] = ACTIONS(1206), - [anon_sym_DOLLAR] = ACTIONS(1204), - [aux_sym_yield_expression_token1] = ACTIONS(1206), - [aux_sym_include_expression_token1] = ACTIONS(1206), - [aux_sym_include_once_expression_token1] = ACTIONS(1206), - [aux_sym_require_expression_token1] = ACTIONS(1206), - [aux_sym_require_once_expression_token1] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - }, - [487] = { - [sym_text_interpolation] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_name] = ACTIONS(1218), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1216), - [aux_sym_function_static_declaration_token1] = ACTIONS(1218), - [aux_sym_global_declaration_token1] = ACTIONS(1218), - [aux_sym_namespace_definition_token1] = ACTIONS(1218), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1218), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1218), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1218), - [anon_sym_BSLASH] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_RBRACE] = ACTIONS(1216), - [aux_sym_trait_declaration_token1] = ACTIONS(1218), - [aux_sym_interface_declaration_token1] = ACTIONS(1218), - [aux_sym_enum_declaration_token1] = ACTIONS(1218), - [aux_sym_enum_case_token1] = ACTIONS(1218), - [aux_sym_class_declaration_token1] = ACTIONS(1218), - [aux_sym_final_modifier_token1] = ACTIONS(1218), - [aux_sym_abstract_modifier_token1] = ACTIONS(1218), - [aux_sym_readonly_modifier_token1] = ACTIONS(1218), - [aux_sym_visibility_modifier_token1] = ACTIONS(1218), - [aux_sym_visibility_modifier_token2] = ACTIONS(1218), - [aux_sym_visibility_modifier_token3] = ACTIONS(1218), - [aux_sym__arrow_function_header_token1] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1216), - [aux_sym_cast_type_token1] = ACTIONS(1218), - [aux_sym_echo_statement_token1] = ACTIONS(1218), - [anon_sym_unset] = ACTIONS(1218), - [aux_sym_declare_statement_token1] = ACTIONS(1218), - [aux_sym_declare_statement_token2] = ACTIONS(1218), - [sym_float] = ACTIONS(1218), - [aux_sym_try_statement_token1] = ACTIONS(1218), - [aux_sym_goto_statement_token1] = ACTIONS(1218), - [aux_sym_continue_statement_token1] = ACTIONS(1218), - [aux_sym_break_statement_token1] = ACTIONS(1218), - [sym_integer] = ACTIONS(1218), - [aux_sym_return_statement_token1] = ACTIONS(1218), - [aux_sym_throw_expression_token1] = ACTIONS(1218), - [aux_sym_while_statement_token1] = ACTIONS(1218), - [aux_sym_while_statement_token2] = ACTIONS(1218), - [aux_sym_do_statement_token1] = ACTIONS(1218), - [aux_sym_for_statement_token1] = ACTIONS(1218), - [aux_sym_for_statement_token2] = ACTIONS(1218), - [aux_sym_foreach_statement_token1] = ACTIONS(1218), - [aux_sym_foreach_statement_token2] = ACTIONS(1218), - [aux_sym_if_statement_token1] = ACTIONS(1218), - [aux_sym_if_statement_token2] = ACTIONS(1218), - [aux_sym_else_if_clause_token1] = ACTIONS(1218), - [aux_sym_else_clause_token1] = ACTIONS(1218), - [aux_sym_match_expression_token1] = ACTIONS(1218), - [aux_sym_match_default_expression_token1] = ACTIONS(1218), - [aux_sym_switch_statement_token1] = ACTIONS(1218), - [aux_sym_switch_block_token1] = ACTIONS(1218), - [anon_sym_AT] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [aux_sym_clone_expression_token1] = ACTIONS(1218), - [aux_sym_print_intrinsic_token1] = ACTIONS(1218), - [aux_sym_object_creation_expression_token1] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [aux_sym__list_destructing_token1] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1216), - [anon_sym_self] = ACTIONS(1218), - [anon_sym_parent] = ACTIONS(1218), - [anon_sym_POUND_LBRACK] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [aux_sym_encapsed_string_token1] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [aux_sym_string_token1] = ACTIONS(1216), - [anon_sym_LT_LT_LT] = ACTIONS(1216), - [anon_sym_BQUOTE] = ACTIONS(1216), - [sym_boolean] = ACTIONS(1218), - [sym_null] = ACTIONS(1218), - [anon_sym_DOLLAR] = ACTIONS(1216), - [aux_sym_yield_expression_token1] = ACTIONS(1218), - [aux_sym_include_expression_token1] = ACTIONS(1218), - [aux_sym_include_once_expression_token1] = ACTIONS(1218), - [aux_sym_require_expression_token1] = ACTIONS(1218), - [aux_sym_require_once_expression_token1] = ACTIONS(1218), - [sym_comment] = ACTIONS(5), - }, - [488] = { - [sym_text_interpolation] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_name] = ACTIONS(1222), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1220), - [aux_sym_function_static_declaration_token1] = ACTIONS(1222), - [aux_sym_global_declaration_token1] = ACTIONS(1222), - [aux_sym_namespace_definition_token1] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1222), - [anon_sym_BSLASH] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_RBRACE] = ACTIONS(1220), - [aux_sym_trait_declaration_token1] = ACTIONS(1222), - [aux_sym_interface_declaration_token1] = ACTIONS(1222), - [aux_sym_enum_declaration_token1] = ACTIONS(1222), - [aux_sym_enum_case_token1] = ACTIONS(1222), - [aux_sym_class_declaration_token1] = ACTIONS(1222), - [aux_sym_final_modifier_token1] = ACTIONS(1222), - [aux_sym_abstract_modifier_token1] = ACTIONS(1222), - [aux_sym_readonly_modifier_token1] = ACTIONS(1222), - [aux_sym_visibility_modifier_token1] = ACTIONS(1222), - [aux_sym_visibility_modifier_token2] = ACTIONS(1222), - [aux_sym_visibility_modifier_token3] = ACTIONS(1222), - [aux_sym__arrow_function_header_token1] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1220), - [aux_sym_cast_type_token1] = ACTIONS(1222), - [aux_sym_echo_statement_token1] = ACTIONS(1222), - [anon_sym_unset] = ACTIONS(1222), - [aux_sym_declare_statement_token1] = ACTIONS(1222), - [aux_sym_declare_statement_token2] = ACTIONS(1222), - [sym_float] = ACTIONS(1222), - [aux_sym_try_statement_token1] = ACTIONS(1222), - [aux_sym_goto_statement_token1] = ACTIONS(1222), - [aux_sym_continue_statement_token1] = ACTIONS(1222), - [aux_sym_break_statement_token1] = ACTIONS(1222), - [sym_integer] = ACTIONS(1222), - [aux_sym_return_statement_token1] = ACTIONS(1222), - [aux_sym_throw_expression_token1] = ACTIONS(1222), - [aux_sym_while_statement_token1] = ACTIONS(1222), - [aux_sym_while_statement_token2] = ACTIONS(1222), - [aux_sym_do_statement_token1] = ACTIONS(1222), - [aux_sym_for_statement_token1] = ACTIONS(1222), - [aux_sym_for_statement_token2] = ACTIONS(1222), - [aux_sym_foreach_statement_token1] = ACTIONS(1222), - [aux_sym_foreach_statement_token2] = ACTIONS(1222), - [aux_sym_if_statement_token1] = ACTIONS(1222), - [aux_sym_if_statement_token2] = ACTIONS(1222), - [aux_sym_else_if_clause_token1] = ACTIONS(1222), - [aux_sym_else_clause_token1] = ACTIONS(1222), - [aux_sym_match_expression_token1] = ACTIONS(1222), - [aux_sym_match_default_expression_token1] = ACTIONS(1222), - [aux_sym_switch_statement_token1] = ACTIONS(1222), - [aux_sym_switch_block_token1] = ACTIONS(1222), - [anon_sym_AT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [aux_sym_clone_expression_token1] = ACTIONS(1222), - [aux_sym_print_intrinsic_token1] = ACTIONS(1222), - [aux_sym_object_creation_expression_token1] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [aux_sym__list_destructing_token1] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_self] = ACTIONS(1222), - [anon_sym_parent] = ACTIONS(1222), - [anon_sym_POUND_LBRACK] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [aux_sym_encapsed_string_token1] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [aux_sym_string_token1] = ACTIONS(1220), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1220), - [sym_boolean] = ACTIONS(1222), - [sym_null] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1220), - [aux_sym_yield_expression_token1] = ACTIONS(1222), - [aux_sym_include_expression_token1] = ACTIONS(1222), - [aux_sym_include_once_expression_token1] = ACTIONS(1222), - [aux_sym_require_expression_token1] = ACTIONS(1222), - [aux_sym_require_once_expression_token1] = ACTIONS(1222), - [sym_comment] = ACTIONS(5), - }, - [489] = { - [sym_text_interpolation] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(1024), - [sym_name] = ACTIONS(1026), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(1026), - [aux_sym_enum_case_token1] = ACTIONS(1026), - [aux_sym_class_declaration_token1] = ACTIONS(1026), - [aux_sym_final_modifier_token1] = ACTIONS(1026), - [aux_sym_abstract_modifier_token1] = ACTIONS(1026), - [aux_sym_readonly_modifier_token1] = ACTIONS(1026), - [aux_sym_visibility_modifier_token1] = ACTIONS(1026), - [aux_sym_visibility_modifier_token2] = ACTIONS(1026), - [aux_sym_visibility_modifier_token3] = ACTIONS(1026), - [aux_sym__arrow_function_header_token1] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1024), - [aux_sym_cast_type_token1] = ACTIONS(1026), - [aux_sym_echo_statement_token1] = ACTIONS(1026), - [anon_sym_unset] = ACTIONS(1026), - [aux_sym_declare_statement_token1] = ACTIONS(1026), - [aux_sym_declare_statement_token2] = ACTIONS(1026), - [sym_float] = ACTIONS(1026), - [aux_sym_try_statement_token1] = ACTIONS(1026), - [aux_sym_goto_statement_token1] = ACTIONS(1026), - [aux_sym_continue_statement_token1] = ACTIONS(1026), - [aux_sym_break_statement_token1] = ACTIONS(1026), - [sym_integer] = ACTIONS(1026), - [aux_sym_return_statement_token1] = ACTIONS(1026), - [aux_sym_throw_expression_token1] = ACTIONS(1026), - [aux_sym_while_statement_token1] = ACTIONS(1026), - [aux_sym_while_statement_token2] = ACTIONS(1026), - [aux_sym_do_statement_token1] = ACTIONS(1026), - [aux_sym_for_statement_token1] = ACTIONS(1026), - [aux_sym_for_statement_token2] = ACTIONS(1026), - [aux_sym_foreach_statement_token1] = ACTIONS(1026), - [aux_sym_foreach_statement_token2] = ACTIONS(1026), - [aux_sym_if_statement_token1] = ACTIONS(1026), - [aux_sym_if_statement_token2] = ACTIONS(1026), - [aux_sym_else_if_clause_token1] = ACTIONS(1026), - [aux_sym_else_clause_token1] = ACTIONS(1026), - [aux_sym_match_expression_token1] = ACTIONS(1026), - [aux_sym_match_default_expression_token1] = ACTIONS(1026), - [aux_sym_switch_statement_token1] = ACTIONS(1026), - [aux_sym_switch_block_token1] = ACTIONS(1026), - [anon_sym_AT] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [aux_sym_clone_expression_token1] = ACTIONS(1026), - [aux_sym_print_intrinsic_token1] = ACTIONS(1026), - [aux_sym_object_creation_expression_token1] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [aux_sym__list_destructing_token1] = ACTIONS(1026), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_self] = ACTIONS(1026), - [anon_sym_parent] = ACTIONS(1026), - [anon_sym_POUND_LBRACK] = ACTIONS(1024), - [anon_sym_SQUOTE] = ACTIONS(1024), - [aux_sym_encapsed_string_token1] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [aux_sym_string_token1] = ACTIONS(1024), - [anon_sym_LT_LT_LT] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(1024), - [sym_boolean] = ACTIONS(1026), - [sym_null] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1024), - [aux_sym_yield_expression_token1] = ACTIONS(1026), - [aux_sym_include_expression_token1] = ACTIONS(1026), - [aux_sym_include_once_expression_token1] = ACTIONS(1026), - [aux_sym_require_expression_token1] = ACTIONS(1026), - [aux_sym_require_once_expression_token1] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - }, - [490] = { - [sym_text_interpolation] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_name] = ACTIONS(1222), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1220), - [aux_sym_function_static_declaration_token1] = ACTIONS(1222), - [aux_sym_global_declaration_token1] = ACTIONS(1222), - [aux_sym_namespace_definition_token1] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1222), - [anon_sym_BSLASH] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_RBRACE] = ACTIONS(1220), - [aux_sym_trait_declaration_token1] = ACTIONS(1222), - [aux_sym_interface_declaration_token1] = ACTIONS(1222), - [aux_sym_enum_declaration_token1] = ACTIONS(1222), - [aux_sym_enum_case_token1] = ACTIONS(1222), - [aux_sym_class_declaration_token1] = ACTIONS(1222), - [aux_sym_final_modifier_token1] = ACTIONS(1222), - [aux_sym_abstract_modifier_token1] = ACTIONS(1222), - [aux_sym_readonly_modifier_token1] = ACTIONS(1222), - [aux_sym_visibility_modifier_token1] = ACTIONS(1222), - [aux_sym_visibility_modifier_token2] = ACTIONS(1222), - [aux_sym_visibility_modifier_token3] = ACTIONS(1222), - [aux_sym__arrow_function_header_token1] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1220), - [aux_sym_cast_type_token1] = ACTIONS(1222), - [aux_sym_echo_statement_token1] = ACTIONS(1222), - [anon_sym_unset] = ACTIONS(1222), - [aux_sym_declare_statement_token1] = ACTIONS(1222), - [aux_sym_declare_statement_token2] = ACTIONS(1222), - [sym_float] = ACTIONS(1222), - [aux_sym_try_statement_token1] = ACTIONS(1222), - [aux_sym_goto_statement_token1] = ACTIONS(1222), - [aux_sym_continue_statement_token1] = ACTIONS(1222), - [aux_sym_break_statement_token1] = ACTIONS(1222), - [sym_integer] = ACTIONS(1222), - [aux_sym_return_statement_token1] = ACTIONS(1222), - [aux_sym_throw_expression_token1] = ACTIONS(1222), - [aux_sym_while_statement_token1] = ACTIONS(1222), - [aux_sym_while_statement_token2] = ACTIONS(1222), - [aux_sym_do_statement_token1] = ACTIONS(1222), - [aux_sym_for_statement_token1] = ACTIONS(1222), - [aux_sym_for_statement_token2] = ACTIONS(1222), - [aux_sym_foreach_statement_token1] = ACTIONS(1222), - [aux_sym_foreach_statement_token2] = ACTIONS(1222), - [aux_sym_if_statement_token1] = ACTIONS(1222), - [aux_sym_if_statement_token2] = ACTIONS(1222), - [aux_sym_else_if_clause_token1] = ACTIONS(1222), - [aux_sym_else_clause_token1] = ACTIONS(1222), - [aux_sym_match_expression_token1] = ACTIONS(1222), - [aux_sym_match_default_expression_token1] = ACTIONS(1222), - [aux_sym_switch_statement_token1] = ACTIONS(1222), - [aux_sym_switch_block_token1] = ACTIONS(1222), - [anon_sym_AT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [aux_sym_clone_expression_token1] = ACTIONS(1222), - [aux_sym_print_intrinsic_token1] = ACTIONS(1222), - [aux_sym_object_creation_expression_token1] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [aux_sym__list_destructing_token1] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_self] = ACTIONS(1222), - [anon_sym_parent] = ACTIONS(1222), - [anon_sym_POUND_LBRACK] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [aux_sym_encapsed_string_token1] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [aux_sym_string_token1] = ACTIONS(1220), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1220), - [sym_boolean] = ACTIONS(1222), - [sym_null] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1220), - [aux_sym_yield_expression_token1] = ACTIONS(1222), - [aux_sym_include_expression_token1] = ACTIONS(1222), - [aux_sym_include_once_expression_token1] = ACTIONS(1222), - [aux_sym_require_expression_token1] = ACTIONS(1222), - [aux_sym_require_once_expression_token1] = ACTIONS(1222), - [sym_comment] = ACTIONS(5), - }, - [491] = { - [sym_text_interpolation] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_name] = ACTIONS(1226), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1224), - [aux_sym_function_static_declaration_token1] = ACTIONS(1226), - [aux_sym_global_declaration_token1] = ACTIONS(1226), - [aux_sym_namespace_definition_token1] = ACTIONS(1226), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1226), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1226), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1226), - [anon_sym_BSLASH] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1224), - [aux_sym_trait_declaration_token1] = ACTIONS(1226), - [aux_sym_interface_declaration_token1] = ACTIONS(1226), - [aux_sym_enum_declaration_token1] = ACTIONS(1226), - [aux_sym_enum_case_token1] = ACTIONS(1226), - [aux_sym_class_declaration_token1] = ACTIONS(1226), - [aux_sym_final_modifier_token1] = ACTIONS(1226), - [aux_sym_abstract_modifier_token1] = ACTIONS(1226), - [aux_sym_readonly_modifier_token1] = ACTIONS(1226), - [aux_sym_visibility_modifier_token1] = ACTIONS(1226), - [aux_sym_visibility_modifier_token2] = ACTIONS(1226), - [aux_sym_visibility_modifier_token3] = ACTIONS(1226), - [aux_sym__arrow_function_header_token1] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1224), - [aux_sym_cast_type_token1] = ACTIONS(1226), - [aux_sym_echo_statement_token1] = ACTIONS(1226), - [anon_sym_unset] = ACTIONS(1226), - [aux_sym_declare_statement_token1] = ACTIONS(1226), - [aux_sym_declare_statement_token2] = ACTIONS(1226), - [sym_float] = ACTIONS(1226), - [aux_sym_try_statement_token1] = ACTIONS(1226), - [aux_sym_goto_statement_token1] = ACTIONS(1226), - [aux_sym_continue_statement_token1] = ACTIONS(1226), - [aux_sym_break_statement_token1] = ACTIONS(1226), - [sym_integer] = ACTIONS(1226), - [aux_sym_return_statement_token1] = ACTIONS(1226), - [aux_sym_throw_expression_token1] = ACTIONS(1226), - [aux_sym_while_statement_token1] = ACTIONS(1226), - [aux_sym_while_statement_token2] = ACTIONS(1226), - [aux_sym_do_statement_token1] = ACTIONS(1226), - [aux_sym_for_statement_token1] = ACTIONS(1226), - [aux_sym_for_statement_token2] = ACTIONS(1226), - [aux_sym_foreach_statement_token1] = ACTIONS(1226), - [aux_sym_foreach_statement_token2] = ACTIONS(1226), - [aux_sym_if_statement_token1] = ACTIONS(1226), - [aux_sym_if_statement_token2] = ACTIONS(1226), - [aux_sym_else_if_clause_token1] = ACTIONS(1226), - [aux_sym_else_clause_token1] = ACTIONS(1226), - [aux_sym_match_expression_token1] = ACTIONS(1226), - [aux_sym_match_default_expression_token1] = ACTIONS(1226), - [aux_sym_switch_statement_token1] = ACTIONS(1226), - [aux_sym_switch_block_token1] = ACTIONS(1226), - [anon_sym_AT] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [aux_sym_clone_expression_token1] = ACTIONS(1226), - [aux_sym_print_intrinsic_token1] = ACTIONS(1226), - [aux_sym_object_creation_expression_token1] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [aux_sym__list_destructing_token1] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1224), - [anon_sym_self] = ACTIONS(1226), - [anon_sym_parent] = ACTIONS(1226), - [anon_sym_POUND_LBRACK] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [aux_sym_encapsed_string_token1] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [aux_sym_string_token1] = ACTIONS(1224), - [anon_sym_LT_LT_LT] = ACTIONS(1224), - [anon_sym_BQUOTE] = ACTIONS(1224), - [sym_boolean] = ACTIONS(1226), - [sym_null] = ACTIONS(1226), - [anon_sym_DOLLAR] = ACTIONS(1224), - [aux_sym_yield_expression_token1] = ACTIONS(1226), - [aux_sym_include_expression_token1] = ACTIONS(1226), - [aux_sym_include_once_expression_token1] = ACTIONS(1226), - [aux_sym_require_expression_token1] = ACTIONS(1226), - [aux_sym_require_once_expression_token1] = ACTIONS(1226), - [sym_comment] = ACTIONS(5), - }, - [492] = { - [sym_text_interpolation] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_name] = ACTIONS(1230), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1228), - [aux_sym_function_static_declaration_token1] = ACTIONS(1230), - [aux_sym_global_declaration_token1] = ACTIONS(1230), - [aux_sym_namespace_definition_token1] = ACTIONS(1230), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1230), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1230), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1230), - [anon_sym_BSLASH] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [aux_sym_trait_declaration_token1] = ACTIONS(1230), - [aux_sym_interface_declaration_token1] = ACTIONS(1230), - [aux_sym_enum_declaration_token1] = ACTIONS(1230), - [aux_sym_enum_case_token1] = ACTIONS(1230), - [aux_sym_class_declaration_token1] = ACTIONS(1230), - [aux_sym_final_modifier_token1] = ACTIONS(1230), - [aux_sym_abstract_modifier_token1] = ACTIONS(1230), - [aux_sym_readonly_modifier_token1] = ACTIONS(1230), - [aux_sym_visibility_modifier_token1] = ACTIONS(1230), - [aux_sym_visibility_modifier_token2] = ACTIONS(1230), - [aux_sym_visibility_modifier_token3] = ACTIONS(1230), - [aux_sym__arrow_function_header_token1] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1228), - [aux_sym_cast_type_token1] = ACTIONS(1230), - [aux_sym_echo_statement_token1] = ACTIONS(1230), - [anon_sym_unset] = ACTIONS(1230), - [aux_sym_declare_statement_token1] = ACTIONS(1230), - [aux_sym_declare_statement_token2] = ACTIONS(1230), - [sym_float] = ACTIONS(1230), - [aux_sym_try_statement_token1] = ACTIONS(1230), - [aux_sym_goto_statement_token1] = ACTIONS(1230), - [aux_sym_continue_statement_token1] = ACTIONS(1230), - [aux_sym_break_statement_token1] = ACTIONS(1230), - [sym_integer] = ACTIONS(1230), - [aux_sym_return_statement_token1] = ACTIONS(1230), - [aux_sym_throw_expression_token1] = ACTIONS(1230), - [aux_sym_while_statement_token1] = ACTIONS(1230), - [aux_sym_while_statement_token2] = ACTIONS(1230), - [aux_sym_do_statement_token1] = ACTIONS(1230), - [aux_sym_for_statement_token1] = ACTIONS(1230), - [aux_sym_for_statement_token2] = ACTIONS(1230), - [aux_sym_foreach_statement_token1] = ACTIONS(1230), - [aux_sym_foreach_statement_token2] = ACTIONS(1230), - [aux_sym_if_statement_token1] = ACTIONS(1230), - [aux_sym_if_statement_token2] = ACTIONS(1230), - [aux_sym_else_if_clause_token1] = ACTIONS(1230), - [aux_sym_else_clause_token1] = ACTIONS(1230), - [aux_sym_match_expression_token1] = ACTIONS(1230), - [aux_sym_match_default_expression_token1] = ACTIONS(1230), - [aux_sym_switch_statement_token1] = ACTIONS(1230), - [aux_sym_switch_block_token1] = ACTIONS(1230), - [anon_sym_AT] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [aux_sym_clone_expression_token1] = ACTIONS(1230), - [aux_sym_print_intrinsic_token1] = ACTIONS(1230), - [aux_sym_object_creation_expression_token1] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [aux_sym__list_destructing_token1] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_self] = ACTIONS(1230), - [anon_sym_parent] = ACTIONS(1230), - [anon_sym_POUND_LBRACK] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [aux_sym_encapsed_string_token1] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [aux_sym_string_token1] = ACTIONS(1228), - [anon_sym_LT_LT_LT] = ACTIONS(1228), - [anon_sym_BQUOTE] = ACTIONS(1228), - [sym_boolean] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DOLLAR] = ACTIONS(1228), - [aux_sym_yield_expression_token1] = ACTIONS(1230), - [aux_sym_include_expression_token1] = ACTIONS(1230), - [aux_sym_include_once_expression_token1] = ACTIONS(1230), - [aux_sym_require_expression_token1] = ACTIONS(1230), - [aux_sym_require_once_expression_token1] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - }, - [493] = { - [sym_text_interpolation] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_name] = ACTIONS(1234), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1232), - [aux_sym_function_static_declaration_token1] = ACTIONS(1234), - [aux_sym_global_declaration_token1] = ACTIONS(1234), - [aux_sym_namespace_definition_token1] = ACTIONS(1234), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1234), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1234), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1234), - [anon_sym_BSLASH] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [aux_sym_trait_declaration_token1] = ACTIONS(1234), - [aux_sym_interface_declaration_token1] = ACTIONS(1234), - [aux_sym_enum_declaration_token1] = ACTIONS(1234), - [aux_sym_enum_case_token1] = ACTIONS(1234), - [aux_sym_class_declaration_token1] = ACTIONS(1234), - [aux_sym_final_modifier_token1] = ACTIONS(1234), - [aux_sym_abstract_modifier_token1] = ACTIONS(1234), - [aux_sym_readonly_modifier_token1] = ACTIONS(1234), - [aux_sym_visibility_modifier_token1] = ACTIONS(1234), - [aux_sym_visibility_modifier_token2] = ACTIONS(1234), - [aux_sym_visibility_modifier_token3] = ACTIONS(1234), - [aux_sym__arrow_function_header_token1] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1232), - [aux_sym_cast_type_token1] = ACTIONS(1234), - [aux_sym_echo_statement_token1] = ACTIONS(1234), - [anon_sym_unset] = ACTIONS(1234), - [aux_sym_declare_statement_token1] = ACTIONS(1234), - [aux_sym_declare_statement_token2] = ACTIONS(1234), - [sym_float] = ACTIONS(1234), - [aux_sym_try_statement_token1] = ACTIONS(1234), - [aux_sym_goto_statement_token1] = ACTIONS(1234), - [aux_sym_continue_statement_token1] = ACTIONS(1234), - [aux_sym_break_statement_token1] = ACTIONS(1234), - [sym_integer] = ACTIONS(1234), - [aux_sym_return_statement_token1] = ACTIONS(1234), - [aux_sym_throw_expression_token1] = ACTIONS(1234), - [aux_sym_while_statement_token1] = ACTIONS(1234), - [aux_sym_while_statement_token2] = ACTIONS(1234), - [aux_sym_do_statement_token1] = ACTIONS(1234), - [aux_sym_for_statement_token1] = ACTIONS(1234), - [aux_sym_for_statement_token2] = ACTIONS(1234), - [aux_sym_foreach_statement_token1] = ACTIONS(1234), - [aux_sym_foreach_statement_token2] = ACTIONS(1234), - [aux_sym_if_statement_token1] = ACTIONS(1234), - [aux_sym_if_statement_token2] = ACTIONS(1234), - [aux_sym_else_if_clause_token1] = ACTIONS(1234), - [aux_sym_else_clause_token1] = ACTIONS(1234), - [aux_sym_match_expression_token1] = ACTIONS(1234), - [aux_sym_match_default_expression_token1] = ACTIONS(1234), - [aux_sym_switch_statement_token1] = ACTIONS(1234), - [aux_sym_switch_block_token1] = ACTIONS(1234), - [anon_sym_AT] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [aux_sym_clone_expression_token1] = ACTIONS(1234), - [aux_sym_print_intrinsic_token1] = ACTIONS(1234), - [aux_sym_object_creation_expression_token1] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [aux_sym__list_destructing_token1] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_self] = ACTIONS(1234), - [anon_sym_parent] = ACTIONS(1234), - [anon_sym_POUND_LBRACK] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [aux_sym_encapsed_string_token1] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [aux_sym_string_token1] = ACTIONS(1232), - [anon_sym_LT_LT_LT] = ACTIONS(1232), - [anon_sym_BQUOTE] = ACTIONS(1232), - [sym_boolean] = ACTIONS(1234), - [sym_null] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(1232), - [aux_sym_yield_expression_token1] = ACTIONS(1234), - [aux_sym_include_expression_token1] = ACTIONS(1234), - [aux_sym_include_once_expression_token1] = ACTIONS(1234), - [aux_sym_require_expression_token1] = ACTIONS(1234), - [aux_sym_require_once_expression_token1] = ACTIONS(1234), - [sym_comment] = ACTIONS(5), - }, - [494] = { - [sym_text_interpolation] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_name] = ACTIONS(1238), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1236), - [aux_sym_function_static_declaration_token1] = ACTIONS(1238), - [aux_sym_global_declaration_token1] = ACTIONS(1238), - [aux_sym_namespace_definition_token1] = ACTIONS(1238), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1238), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1238), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1238), - [anon_sym_BSLASH] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [aux_sym_trait_declaration_token1] = ACTIONS(1238), - [aux_sym_interface_declaration_token1] = ACTIONS(1238), - [aux_sym_enum_declaration_token1] = ACTIONS(1238), - [aux_sym_enum_case_token1] = ACTIONS(1238), - [aux_sym_class_declaration_token1] = ACTIONS(1238), - [aux_sym_final_modifier_token1] = ACTIONS(1238), - [aux_sym_abstract_modifier_token1] = ACTIONS(1238), - [aux_sym_readonly_modifier_token1] = ACTIONS(1238), - [aux_sym_visibility_modifier_token1] = ACTIONS(1238), - [aux_sym_visibility_modifier_token2] = ACTIONS(1238), - [aux_sym_visibility_modifier_token3] = ACTIONS(1238), - [aux_sym__arrow_function_header_token1] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [aux_sym_cast_type_token1] = ACTIONS(1238), - [aux_sym_echo_statement_token1] = ACTIONS(1238), - [anon_sym_unset] = ACTIONS(1238), - [aux_sym_declare_statement_token1] = ACTIONS(1238), - [aux_sym_declare_statement_token2] = ACTIONS(1238), - [sym_float] = ACTIONS(1238), - [aux_sym_try_statement_token1] = ACTIONS(1238), - [aux_sym_goto_statement_token1] = ACTIONS(1238), - [aux_sym_continue_statement_token1] = ACTIONS(1238), - [aux_sym_break_statement_token1] = ACTIONS(1238), - [sym_integer] = ACTIONS(1238), - [aux_sym_return_statement_token1] = ACTIONS(1238), - [aux_sym_throw_expression_token1] = ACTIONS(1238), - [aux_sym_while_statement_token1] = ACTIONS(1238), - [aux_sym_while_statement_token2] = ACTIONS(1238), - [aux_sym_do_statement_token1] = ACTIONS(1238), - [aux_sym_for_statement_token1] = ACTIONS(1238), - [aux_sym_for_statement_token2] = ACTIONS(1238), - [aux_sym_foreach_statement_token1] = ACTIONS(1238), - [aux_sym_foreach_statement_token2] = ACTIONS(1238), - [aux_sym_if_statement_token1] = ACTIONS(1238), - [aux_sym_if_statement_token2] = ACTIONS(1238), - [aux_sym_else_if_clause_token1] = ACTIONS(1238), - [aux_sym_else_clause_token1] = ACTIONS(1238), - [aux_sym_match_expression_token1] = ACTIONS(1238), - [aux_sym_match_default_expression_token1] = ACTIONS(1238), - [aux_sym_switch_statement_token1] = ACTIONS(1238), - [aux_sym_switch_block_token1] = ACTIONS(1238), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [aux_sym_clone_expression_token1] = ACTIONS(1238), - [aux_sym_print_intrinsic_token1] = ACTIONS(1238), - [aux_sym_object_creation_expression_token1] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [aux_sym__list_destructing_token1] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_self] = ACTIONS(1238), - [anon_sym_parent] = ACTIONS(1238), - [anon_sym_POUND_LBRACK] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [aux_sym_encapsed_string_token1] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [aux_sym_string_token1] = ACTIONS(1236), - [anon_sym_LT_LT_LT] = ACTIONS(1236), - [anon_sym_BQUOTE] = ACTIONS(1236), - [sym_boolean] = ACTIONS(1238), - [sym_null] = ACTIONS(1238), - [anon_sym_DOLLAR] = ACTIONS(1236), - [aux_sym_yield_expression_token1] = ACTIONS(1238), - [aux_sym_include_expression_token1] = ACTIONS(1238), - [aux_sym_include_once_expression_token1] = ACTIONS(1238), - [aux_sym_require_expression_token1] = ACTIONS(1238), - [aux_sym_require_once_expression_token1] = ACTIONS(1238), - [sym_comment] = ACTIONS(5), - }, - [495] = { - [sym_text_interpolation] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_name] = ACTIONS(1238), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1236), - [aux_sym_function_static_declaration_token1] = ACTIONS(1238), - [aux_sym_global_declaration_token1] = ACTIONS(1238), - [aux_sym_namespace_definition_token1] = ACTIONS(1238), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1238), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1238), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1238), - [anon_sym_BSLASH] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [aux_sym_trait_declaration_token1] = ACTIONS(1238), - [aux_sym_interface_declaration_token1] = ACTIONS(1238), - [aux_sym_enum_declaration_token1] = ACTIONS(1238), - [aux_sym_enum_case_token1] = ACTIONS(1238), - [aux_sym_class_declaration_token1] = ACTIONS(1238), - [aux_sym_final_modifier_token1] = ACTIONS(1238), - [aux_sym_abstract_modifier_token1] = ACTIONS(1238), - [aux_sym_readonly_modifier_token1] = ACTIONS(1238), - [aux_sym_visibility_modifier_token1] = ACTIONS(1238), - [aux_sym_visibility_modifier_token2] = ACTIONS(1238), - [aux_sym_visibility_modifier_token3] = ACTIONS(1238), - [aux_sym__arrow_function_header_token1] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [aux_sym_cast_type_token1] = ACTIONS(1238), - [aux_sym_echo_statement_token1] = ACTIONS(1238), - [anon_sym_unset] = ACTIONS(1238), - [aux_sym_declare_statement_token1] = ACTIONS(1238), - [aux_sym_declare_statement_token2] = ACTIONS(1238), - [sym_float] = ACTIONS(1238), - [aux_sym_try_statement_token1] = ACTIONS(1238), - [aux_sym_goto_statement_token1] = ACTIONS(1238), - [aux_sym_continue_statement_token1] = ACTIONS(1238), - [aux_sym_break_statement_token1] = ACTIONS(1238), - [sym_integer] = ACTIONS(1238), - [aux_sym_return_statement_token1] = ACTIONS(1238), - [aux_sym_throw_expression_token1] = ACTIONS(1238), - [aux_sym_while_statement_token1] = ACTIONS(1238), - [aux_sym_while_statement_token2] = ACTIONS(1238), - [aux_sym_do_statement_token1] = ACTIONS(1238), - [aux_sym_for_statement_token1] = ACTIONS(1238), - [aux_sym_for_statement_token2] = ACTIONS(1238), - [aux_sym_foreach_statement_token1] = ACTIONS(1238), - [aux_sym_foreach_statement_token2] = ACTIONS(1238), - [aux_sym_if_statement_token1] = ACTIONS(1238), - [aux_sym_if_statement_token2] = ACTIONS(1238), - [aux_sym_else_if_clause_token1] = ACTIONS(1238), - [aux_sym_else_clause_token1] = ACTIONS(1238), - [aux_sym_match_expression_token1] = ACTIONS(1238), - [aux_sym_match_default_expression_token1] = ACTIONS(1238), - [aux_sym_switch_statement_token1] = ACTIONS(1238), - [aux_sym_switch_block_token1] = ACTIONS(1238), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [aux_sym_clone_expression_token1] = ACTIONS(1238), - [aux_sym_print_intrinsic_token1] = ACTIONS(1238), - [aux_sym_object_creation_expression_token1] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [aux_sym__list_destructing_token1] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_self] = ACTIONS(1238), - [anon_sym_parent] = ACTIONS(1238), - [anon_sym_POUND_LBRACK] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [aux_sym_encapsed_string_token1] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [aux_sym_string_token1] = ACTIONS(1236), - [anon_sym_LT_LT_LT] = ACTIONS(1236), - [anon_sym_BQUOTE] = ACTIONS(1236), - [sym_boolean] = ACTIONS(1238), - [sym_null] = ACTIONS(1238), - [anon_sym_DOLLAR] = ACTIONS(1236), - [aux_sym_yield_expression_token1] = ACTIONS(1238), - [aux_sym_include_expression_token1] = ACTIONS(1238), - [aux_sym_include_once_expression_token1] = ACTIONS(1238), - [aux_sym_require_expression_token1] = ACTIONS(1238), - [aux_sym_require_once_expression_token1] = ACTIONS(1238), - [sym_comment] = ACTIONS(5), - }, - [496] = { - [sym_text_interpolation] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_name] = ACTIONS(1242), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1240), - [aux_sym_function_static_declaration_token1] = ACTIONS(1242), - [aux_sym_global_declaration_token1] = ACTIONS(1242), - [aux_sym_namespace_definition_token1] = ACTIONS(1242), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1242), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1242), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1242), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [aux_sym_trait_declaration_token1] = ACTIONS(1242), - [aux_sym_interface_declaration_token1] = ACTIONS(1242), - [aux_sym_enum_declaration_token1] = ACTIONS(1242), - [aux_sym_enum_case_token1] = ACTIONS(1242), - [aux_sym_class_declaration_token1] = ACTIONS(1242), - [aux_sym_final_modifier_token1] = ACTIONS(1242), - [aux_sym_abstract_modifier_token1] = ACTIONS(1242), - [aux_sym_readonly_modifier_token1] = ACTIONS(1242), - [aux_sym_visibility_modifier_token1] = ACTIONS(1242), - [aux_sym_visibility_modifier_token2] = ACTIONS(1242), - [aux_sym_visibility_modifier_token3] = ACTIONS(1242), - [aux_sym__arrow_function_header_token1] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1240), - [aux_sym_cast_type_token1] = ACTIONS(1242), - [aux_sym_echo_statement_token1] = ACTIONS(1242), - [anon_sym_unset] = ACTIONS(1242), - [aux_sym_declare_statement_token1] = ACTIONS(1242), - [aux_sym_declare_statement_token2] = ACTIONS(1242), - [sym_float] = ACTIONS(1242), - [aux_sym_try_statement_token1] = ACTIONS(1242), - [aux_sym_goto_statement_token1] = ACTIONS(1242), - [aux_sym_continue_statement_token1] = ACTIONS(1242), - [aux_sym_break_statement_token1] = ACTIONS(1242), - [sym_integer] = ACTIONS(1242), - [aux_sym_return_statement_token1] = ACTIONS(1242), - [aux_sym_throw_expression_token1] = ACTIONS(1242), - [aux_sym_while_statement_token1] = ACTIONS(1242), - [aux_sym_while_statement_token2] = ACTIONS(1242), - [aux_sym_do_statement_token1] = ACTIONS(1242), - [aux_sym_for_statement_token1] = ACTIONS(1242), - [aux_sym_for_statement_token2] = ACTIONS(1242), - [aux_sym_foreach_statement_token1] = ACTIONS(1242), - [aux_sym_foreach_statement_token2] = ACTIONS(1242), - [aux_sym_if_statement_token1] = ACTIONS(1242), - [aux_sym_if_statement_token2] = ACTIONS(1242), - [aux_sym_else_if_clause_token1] = ACTIONS(1242), - [aux_sym_else_clause_token1] = ACTIONS(1242), - [aux_sym_match_expression_token1] = ACTIONS(1242), - [aux_sym_match_default_expression_token1] = ACTIONS(1242), - [aux_sym_switch_statement_token1] = ACTIONS(1242), - [aux_sym_switch_block_token1] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [aux_sym_clone_expression_token1] = ACTIONS(1242), - [aux_sym_print_intrinsic_token1] = ACTIONS(1242), - [aux_sym_object_creation_expression_token1] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [aux_sym__list_destructing_token1] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_self] = ACTIONS(1242), - [anon_sym_parent] = ACTIONS(1242), - [anon_sym_POUND_LBRACK] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [aux_sym_encapsed_string_token1] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [aux_sym_string_token1] = ACTIONS(1240), - [anon_sym_LT_LT_LT] = ACTIONS(1240), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_boolean] = ACTIONS(1242), - [sym_null] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1240), - [aux_sym_yield_expression_token1] = ACTIONS(1242), - [aux_sym_include_expression_token1] = ACTIONS(1242), - [aux_sym_include_once_expression_token1] = ACTIONS(1242), - [aux_sym_require_expression_token1] = ACTIONS(1242), - [aux_sym_require_once_expression_token1] = ACTIONS(1242), - [sym_comment] = ACTIONS(5), - }, - [497] = { - [sym_text_interpolation] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_name] = ACTIONS(1246), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1244), - [aux_sym_function_static_declaration_token1] = ACTIONS(1246), - [aux_sym_global_declaration_token1] = ACTIONS(1246), - [aux_sym_namespace_definition_token1] = ACTIONS(1246), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1246), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1246), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1246), - [anon_sym_BSLASH] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [aux_sym_trait_declaration_token1] = ACTIONS(1246), - [aux_sym_interface_declaration_token1] = ACTIONS(1246), - [aux_sym_enum_declaration_token1] = ACTIONS(1246), - [aux_sym_enum_case_token1] = ACTIONS(1246), - [aux_sym_class_declaration_token1] = ACTIONS(1246), - [aux_sym_final_modifier_token1] = ACTIONS(1246), - [aux_sym_abstract_modifier_token1] = ACTIONS(1246), - [aux_sym_readonly_modifier_token1] = ACTIONS(1246), - [aux_sym_visibility_modifier_token1] = ACTIONS(1246), - [aux_sym_visibility_modifier_token2] = ACTIONS(1246), - [aux_sym_visibility_modifier_token3] = ACTIONS(1246), - [aux_sym__arrow_function_header_token1] = ACTIONS(1246), - [anon_sym_LPAREN] = ACTIONS(1244), - [aux_sym_cast_type_token1] = ACTIONS(1246), - [aux_sym_echo_statement_token1] = ACTIONS(1246), - [anon_sym_unset] = ACTIONS(1246), - [aux_sym_declare_statement_token1] = ACTIONS(1246), - [aux_sym_declare_statement_token2] = ACTIONS(1246), - [sym_float] = ACTIONS(1246), - [aux_sym_try_statement_token1] = ACTIONS(1246), - [aux_sym_goto_statement_token1] = ACTIONS(1246), - [aux_sym_continue_statement_token1] = ACTIONS(1246), - [aux_sym_break_statement_token1] = ACTIONS(1246), - [sym_integer] = ACTIONS(1246), - [aux_sym_return_statement_token1] = ACTIONS(1246), - [aux_sym_throw_expression_token1] = ACTIONS(1246), - [aux_sym_while_statement_token1] = ACTIONS(1246), - [aux_sym_while_statement_token2] = ACTIONS(1246), - [aux_sym_do_statement_token1] = ACTIONS(1246), - [aux_sym_for_statement_token1] = ACTIONS(1246), - [aux_sym_for_statement_token2] = ACTIONS(1246), - [aux_sym_foreach_statement_token1] = ACTIONS(1246), - [aux_sym_foreach_statement_token2] = ACTIONS(1246), - [aux_sym_if_statement_token1] = ACTIONS(1246), - [aux_sym_if_statement_token2] = ACTIONS(1246), - [aux_sym_else_if_clause_token1] = ACTIONS(1246), - [aux_sym_else_clause_token1] = ACTIONS(1246), - [aux_sym_match_expression_token1] = ACTIONS(1246), - [aux_sym_match_default_expression_token1] = ACTIONS(1246), - [aux_sym_switch_statement_token1] = ACTIONS(1246), - [aux_sym_switch_block_token1] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [aux_sym_clone_expression_token1] = ACTIONS(1246), - [aux_sym_print_intrinsic_token1] = ACTIONS(1246), - [aux_sym_object_creation_expression_token1] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [aux_sym__list_destructing_token1] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_self] = ACTIONS(1246), - [anon_sym_parent] = ACTIONS(1246), - [anon_sym_POUND_LBRACK] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [aux_sym_encapsed_string_token1] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [aux_sym_string_token1] = ACTIONS(1244), - [anon_sym_LT_LT_LT] = ACTIONS(1244), - [anon_sym_BQUOTE] = ACTIONS(1244), - [sym_boolean] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [anon_sym_DOLLAR] = ACTIONS(1244), - [aux_sym_yield_expression_token1] = ACTIONS(1246), - [aux_sym_include_expression_token1] = ACTIONS(1246), - [aux_sym_include_once_expression_token1] = ACTIONS(1246), - [aux_sym_require_expression_token1] = ACTIONS(1246), - [aux_sym_require_once_expression_token1] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - }, - [498] = { - [sym_text_interpolation] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_name] = ACTIONS(1250), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1248), - [aux_sym_function_static_declaration_token1] = ACTIONS(1250), - [aux_sym_global_declaration_token1] = ACTIONS(1250), - [aux_sym_namespace_definition_token1] = ACTIONS(1250), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1250), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1250), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1250), - [anon_sym_BSLASH] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [aux_sym_trait_declaration_token1] = ACTIONS(1250), - [aux_sym_interface_declaration_token1] = ACTIONS(1250), - [aux_sym_enum_declaration_token1] = ACTIONS(1250), - [aux_sym_enum_case_token1] = ACTIONS(1250), - [aux_sym_class_declaration_token1] = ACTIONS(1250), - [aux_sym_final_modifier_token1] = ACTIONS(1250), - [aux_sym_abstract_modifier_token1] = ACTIONS(1250), - [aux_sym_readonly_modifier_token1] = ACTIONS(1250), - [aux_sym_visibility_modifier_token1] = ACTIONS(1250), - [aux_sym_visibility_modifier_token2] = ACTIONS(1250), - [aux_sym_visibility_modifier_token3] = ACTIONS(1250), - [aux_sym__arrow_function_header_token1] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1248), - [aux_sym_cast_type_token1] = ACTIONS(1250), - [aux_sym_echo_statement_token1] = ACTIONS(1250), - [anon_sym_unset] = ACTIONS(1250), - [aux_sym_declare_statement_token1] = ACTIONS(1250), - [aux_sym_declare_statement_token2] = ACTIONS(1250), - [sym_float] = ACTIONS(1250), - [aux_sym_try_statement_token1] = ACTIONS(1250), - [aux_sym_goto_statement_token1] = ACTIONS(1250), - [aux_sym_continue_statement_token1] = ACTIONS(1250), - [aux_sym_break_statement_token1] = ACTIONS(1250), - [sym_integer] = ACTIONS(1250), - [aux_sym_return_statement_token1] = ACTIONS(1250), - [aux_sym_throw_expression_token1] = ACTIONS(1250), - [aux_sym_while_statement_token1] = ACTIONS(1250), - [aux_sym_while_statement_token2] = ACTIONS(1250), - [aux_sym_do_statement_token1] = ACTIONS(1250), - [aux_sym_for_statement_token1] = ACTIONS(1250), - [aux_sym_for_statement_token2] = ACTIONS(1250), - [aux_sym_foreach_statement_token1] = ACTIONS(1250), - [aux_sym_foreach_statement_token2] = ACTIONS(1250), - [aux_sym_if_statement_token1] = ACTIONS(1250), - [aux_sym_if_statement_token2] = ACTIONS(1250), - [aux_sym_else_if_clause_token1] = ACTIONS(1250), - [aux_sym_else_clause_token1] = ACTIONS(1250), - [aux_sym_match_expression_token1] = ACTIONS(1250), - [aux_sym_match_default_expression_token1] = ACTIONS(1250), - [aux_sym_switch_statement_token1] = ACTIONS(1250), - [aux_sym_switch_block_token1] = ACTIONS(1250), - [anon_sym_AT] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [aux_sym_clone_expression_token1] = ACTIONS(1250), - [aux_sym_print_intrinsic_token1] = ACTIONS(1250), - [aux_sym_object_creation_expression_token1] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [aux_sym__list_destructing_token1] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_self] = ACTIONS(1250), - [anon_sym_parent] = ACTIONS(1250), - [anon_sym_POUND_LBRACK] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [aux_sym_encapsed_string_token1] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [aux_sym_string_token1] = ACTIONS(1248), - [anon_sym_LT_LT_LT] = ACTIONS(1248), - [anon_sym_BQUOTE] = ACTIONS(1248), - [sym_boolean] = ACTIONS(1250), - [sym_null] = ACTIONS(1250), - [anon_sym_DOLLAR] = ACTIONS(1248), - [aux_sym_yield_expression_token1] = ACTIONS(1250), - [aux_sym_include_expression_token1] = ACTIONS(1250), - [aux_sym_include_once_expression_token1] = ACTIONS(1250), - [aux_sym_require_expression_token1] = ACTIONS(1250), - [aux_sym_require_once_expression_token1] = ACTIONS(1250), - [sym_comment] = ACTIONS(5), - }, - [499] = { - [sym_text_interpolation] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_name] = ACTIONS(1254), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1252), - [aux_sym_function_static_declaration_token1] = ACTIONS(1254), - [aux_sym_global_declaration_token1] = ACTIONS(1254), - [aux_sym_namespace_definition_token1] = ACTIONS(1254), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1254), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1254), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1254), - [anon_sym_BSLASH] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [aux_sym_trait_declaration_token1] = ACTIONS(1254), - [aux_sym_interface_declaration_token1] = ACTIONS(1254), - [aux_sym_enum_declaration_token1] = ACTIONS(1254), - [aux_sym_enum_case_token1] = ACTIONS(1254), - [aux_sym_class_declaration_token1] = ACTIONS(1254), - [aux_sym_final_modifier_token1] = ACTIONS(1254), - [aux_sym_abstract_modifier_token1] = ACTIONS(1254), - [aux_sym_readonly_modifier_token1] = ACTIONS(1254), - [aux_sym_visibility_modifier_token1] = ACTIONS(1254), - [aux_sym_visibility_modifier_token2] = ACTIONS(1254), - [aux_sym_visibility_modifier_token3] = ACTIONS(1254), - [aux_sym__arrow_function_header_token1] = ACTIONS(1254), - [anon_sym_LPAREN] = ACTIONS(1252), - [aux_sym_cast_type_token1] = ACTIONS(1254), - [aux_sym_echo_statement_token1] = ACTIONS(1254), - [anon_sym_unset] = ACTIONS(1254), - [aux_sym_declare_statement_token1] = ACTIONS(1254), - [aux_sym_declare_statement_token2] = ACTIONS(1254), - [sym_float] = ACTIONS(1254), - [aux_sym_try_statement_token1] = ACTIONS(1254), - [aux_sym_goto_statement_token1] = ACTIONS(1254), - [aux_sym_continue_statement_token1] = ACTIONS(1254), - [aux_sym_break_statement_token1] = ACTIONS(1254), - [sym_integer] = ACTIONS(1254), - [aux_sym_return_statement_token1] = ACTIONS(1254), - [aux_sym_throw_expression_token1] = ACTIONS(1254), - [aux_sym_while_statement_token1] = ACTIONS(1254), - [aux_sym_while_statement_token2] = ACTIONS(1254), - [aux_sym_do_statement_token1] = ACTIONS(1254), - [aux_sym_for_statement_token1] = ACTIONS(1254), - [aux_sym_for_statement_token2] = ACTIONS(1254), - [aux_sym_foreach_statement_token1] = ACTIONS(1254), - [aux_sym_foreach_statement_token2] = ACTIONS(1254), - [aux_sym_if_statement_token1] = ACTIONS(1254), - [aux_sym_if_statement_token2] = ACTIONS(1254), - [aux_sym_else_if_clause_token1] = ACTIONS(1254), - [aux_sym_else_clause_token1] = ACTIONS(1254), - [aux_sym_match_expression_token1] = ACTIONS(1254), - [aux_sym_match_default_expression_token1] = ACTIONS(1254), - [aux_sym_switch_statement_token1] = ACTIONS(1254), - [aux_sym_switch_block_token1] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [aux_sym_clone_expression_token1] = ACTIONS(1254), - [aux_sym_print_intrinsic_token1] = ACTIONS(1254), - [aux_sym_object_creation_expression_token1] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [aux_sym__list_destructing_token1] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_self] = ACTIONS(1254), - [anon_sym_parent] = ACTIONS(1254), - [anon_sym_POUND_LBRACK] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [aux_sym_encapsed_string_token1] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [aux_sym_string_token1] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [sym_boolean] = ACTIONS(1254), - [sym_null] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1252), - [aux_sym_yield_expression_token1] = ACTIONS(1254), - [aux_sym_include_expression_token1] = ACTIONS(1254), - [aux_sym_include_once_expression_token1] = ACTIONS(1254), - [aux_sym_require_expression_token1] = ACTIONS(1254), - [aux_sym_require_once_expression_token1] = ACTIONS(1254), - [sym_comment] = ACTIONS(5), - }, - [500] = { - [sym_text_interpolation] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_name] = ACTIONS(1258), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1256), - [aux_sym_function_static_declaration_token1] = ACTIONS(1258), - [aux_sym_global_declaration_token1] = ACTIONS(1258), - [aux_sym_namespace_definition_token1] = ACTIONS(1258), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1258), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1258), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1258), - [anon_sym_BSLASH] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_RBRACE] = ACTIONS(1256), - [aux_sym_trait_declaration_token1] = ACTIONS(1258), - [aux_sym_interface_declaration_token1] = ACTIONS(1258), - [aux_sym_enum_declaration_token1] = ACTIONS(1258), - [aux_sym_enum_case_token1] = ACTIONS(1258), - [aux_sym_class_declaration_token1] = ACTIONS(1258), - [aux_sym_final_modifier_token1] = ACTIONS(1258), - [aux_sym_abstract_modifier_token1] = ACTIONS(1258), - [aux_sym_readonly_modifier_token1] = ACTIONS(1258), - [aux_sym_visibility_modifier_token1] = ACTIONS(1258), - [aux_sym_visibility_modifier_token2] = ACTIONS(1258), - [aux_sym_visibility_modifier_token3] = ACTIONS(1258), - [aux_sym__arrow_function_header_token1] = ACTIONS(1258), - [anon_sym_LPAREN] = ACTIONS(1256), - [aux_sym_cast_type_token1] = ACTIONS(1258), - [aux_sym_echo_statement_token1] = ACTIONS(1258), - [anon_sym_unset] = ACTIONS(1258), - [aux_sym_declare_statement_token1] = ACTIONS(1258), - [aux_sym_declare_statement_token2] = ACTIONS(1258), - [sym_float] = ACTIONS(1258), - [aux_sym_try_statement_token1] = ACTIONS(1258), - [aux_sym_goto_statement_token1] = ACTIONS(1258), - [aux_sym_continue_statement_token1] = ACTIONS(1258), - [aux_sym_break_statement_token1] = ACTIONS(1258), - [sym_integer] = ACTIONS(1258), - [aux_sym_return_statement_token1] = ACTIONS(1258), - [aux_sym_throw_expression_token1] = ACTIONS(1258), - [aux_sym_while_statement_token1] = ACTIONS(1258), - [aux_sym_while_statement_token2] = ACTIONS(1258), - [aux_sym_do_statement_token1] = ACTIONS(1258), - [aux_sym_for_statement_token1] = ACTIONS(1258), - [aux_sym_for_statement_token2] = ACTIONS(1258), - [aux_sym_foreach_statement_token1] = ACTIONS(1258), - [aux_sym_foreach_statement_token2] = ACTIONS(1258), - [aux_sym_if_statement_token1] = ACTIONS(1258), - [aux_sym_if_statement_token2] = ACTIONS(1258), - [aux_sym_else_if_clause_token1] = ACTIONS(1258), - [aux_sym_else_clause_token1] = ACTIONS(1258), - [aux_sym_match_expression_token1] = ACTIONS(1258), - [aux_sym_match_default_expression_token1] = ACTIONS(1258), - [aux_sym_switch_statement_token1] = ACTIONS(1258), - [aux_sym_switch_block_token1] = ACTIONS(1258), - [anon_sym_AT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [aux_sym_clone_expression_token1] = ACTIONS(1258), - [aux_sym_print_intrinsic_token1] = ACTIONS(1258), - [aux_sym_object_creation_expression_token1] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [aux_sym__list_destructing_token1] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1256), - [anon_sym_self] = ACTIONS(1258), - [anon_sym_parent] = ACTIONS(1258), - [anon_sym_POUND_LBRACK] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [aux_sym_encapsed_string_token1] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [aux_sym_string_token1] = ACTIONS(1256), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_BQUOTE] = ACTIONS(1256), - [sym_boolean] = ACTIONS(1258), - [sym_null] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1256), - [aux_sym_yield_expression_token1] = ACTIONS(1258), - [aux_sym_include_expression_token1] = ACTIONS(1258), - [aux_sym_include_once_expression_token1] = ACTIONS(1258), - [aux_sym_require_expression_token1] = ACTIONS(1258), - [aux_sym_require_once_expression_token1] = ACTIONS(1258), - [sym_comment] = ACTIONS(5), - }, - [501] = { - [sym_text_interpolation] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_name] = ACTIONS(1262), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1260), - [aux_sym_function_static_declaration_token1] = ACTIONS(1262), - [aux_sym_global_declaration_token1] = ACTIONS(1262), - [aux_sym_namespace_definition_token1] = ACTIONS(1262), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1262), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1262), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1262), - [anon_sym_BSLASH] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [aux_sym_trait_declaration_token1] = ACTIONS(1262), - [aux_sym_interface_declaration_token1] = ACTIONS(1262), - [aux_sym_enum_declaration_token1] = ACTIONS(1262), - [aux_sym_enum_case_token1] = ACTIONS(1262), - [aux_sym_class_declaration_token1] = ACTIONS(1262), - [aux_sym_final_modifier_token1] = ACTIONS(1262), - [aux_sym_abstract_modifier_token1] = ACTIONS(1262), - [aux_sym_readonly_modifier_token1] = ACTIONS(1262), - [aux_sym_visibility_modifier_token1] = ACTIONS(1262), - [aux_sym_visibility_modifier_token2] = ACTIONS(1262), - [aux_sym_visibility_modifier_token3] = ACTIONS(1262), - [aux_sym__arrow_function_header_token1] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1260), - [aux_sym_cast_type_token1] = ACTIONS(1262), - [aux_sym_echo_statement_token1] = ACTIONS(1262), - [anon_sym_unset] = ACTIONS(1262), - [aux_sym_declare_statement_token1] = ACTIONS(1262), - [aux_sym_declare_statement_token2] = ACTIONS(1262), - [sym_float] = ACTIONS(1262), - [aux_sym_try_statement_token1] = ACTIONS(1262), - [aux_sym_goto_statement_token1] = ACTIONS(1262), - [aux_sym_continue_statement_token1] = ACTIONS(1262), - [aux_sym_break_statement_token1] = ACTIONS(1262), - [sym_integer] = ACTIONS(1262), - [aux_sym_return_statement_token1] = ACTIONS(1262), - [aux_sym_throw_expression_token1] = ACTIONS(1262), - [aux_sym_while_statement_token1] = ACTIONS(1262), - [aux_sym_while_statement_token2] = ACTIONS(1262), - [aux_sym_do_statement_token1] = ACTIONS(1262), - [aux_sym_for_statement_token1] = ACTIONS(1262), - [aux_sym_for_statement_token2] = ACTIONS(1262), - [aux_sym_foreach_statement_token1] = ACTIONS(1262), - [aux_sym_foreach_statement_token2] = ACTIONS(1262), - [aux_sym_if_statement_token1] = ACTIONS(1262), - [aux_sym_if_statement_token2] = ACTIONS(1262), - [aux_sym_else_if_clause_token1] = ACTIONS(1262), - [aux_sym_else_clause_token1] = ACTIONS(1262), - [aux_sym_match_expression_token1] = ACTIONS(1262), - [aux_sym_match_default_expression_token1] = ACTIONS(1262), - [aux_sym_switch_statement_token1] = ACTIONS(1262), - [aux_sym_switch_block_token1] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [aux_sym_clone_expression_token1] = ACTIONS(1262), - [aux_sym_print_intrinsic_token1] = ACTIONS(1262), - [aux_sym_object_creation_expression_token1] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [aux_sym__list_destructing_token1] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_self] = ACTIONS(1262), - [anon_sym_parent] = ACTIONS(1262), - [anon_sym_POUND_LBRACK] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [aux_sym_encapsed_string_token1] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [aux_sym_string_token1] = ACTIONS(1260), - [anon_sym_LT_LT_LT] = ACTIONS(1260), - [anon_sym_BQUOTE] = ACTIONS(1260), - [sym_boolean] = ACTIONS(1262), - [sym_null] = ACTIONS(1262), - [anon_sym_DOLLAR] = ACTIONS(1260), - [aux_sym_yield_expression_token1] = ACTIONS(1262), - [aux_sym_include_expression_token1] = ACTIONS(1262), - [aux_sym_include_once_expression_token1] = ACTIONS(1262), - [aux_sym_require_expression_token1] = ACTIONS(1262), - [aux_sym_require_once_expression_token1] = ACTIONS(1262), - [sym_comment] = ACTIONS(5), - }, - [502] = { - [sym_text_interpolation] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_name] = ACTIONS(1262), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1260), - [aux_sym_function_static_declaration_token1] = ACTIONS(1262), - [aux_sym_global_declaration_token1] = ACTIONS(1262), - [aux_sym_namespace_definition_token1] = ACTIONS(1262), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1262), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1262), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1262), - [anon_sym_BSLASH] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [aux_sym_trait_declaration_token1] = ACTIONS(1262), - [aux_sym_interface_declaration_token1] = ACTIONS(1262), - [aux_sym_enum_declaration_token1] = ACTIONS(1262), - [aux_sym_enum_case_token1] = ACTIONS(1262), - [aux_sym_class_declaration_token1] = ACTIONS(1262), - [aux_sym_final_modifier_token1] = ACTIONS(1262), - [aux_sym_abstract_modifier_token1] = ACTIONS(1262), - [aux_sym_readonly_modifier_token1] = ACTIONS(1262), - [aux_sym_visibility_modifier_token1] = ACTIONS(1262), - [aux_sym_visibility_modifier_token2] = ACTIONS(1262), - [aux_sym_visibility_modifier_token3] = ACTIONS(1262), - [aux_sym__arrow_function_header_token1] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1260), - [aux_sym_cast_type_token1] = ACTIONS(1262), - [aux_sym_echo_statement_token1] = ACTIONS(1262), - [anon_sym_unset] = ACTIONS(1262), - [aux_sym_declare_statement_token1] = ACTIONS(1262), - [aux_sym_declare_statement_token2] = ACTIONS(1262), - [sym_float] = ACTIONS(1262), - [aux_sym_try_statement_token1] = ACTIONS(1262), - [aux_sym_goto_statement_token1] = ACTIONS(1262), - [aux_sym_continue_statement_token1] = ACTIONS(1262), - [aux_sym_break_statement_token1] = ACTIONS(1262), - [sym_integer] = ACTIONS(1262), - [aux_sym_return_statement_token1] = ACTIONS(1262), - [aux_sym_throw_expression_token1] = ACTIONS(1262), - [aux_sym_while_statement_token1] = ACTIONS(1262), - [aux_sym_while_statement_token2] = ACTIONS(1262), - [aux_sym_do_statement_token1] = ACTIONS(1262), - [aux_sym_for_statement_token1] = ACTIONS(1262), - [aux_sym_for_statement_token2] = ACTIONS(1262), - [aux_sym_foreach_statement_token1] = ACTIONS(1262), - [aux_sym_foreach_statement_token2] = ACTIONS(1262), - [aux_sym_if_statement_token1] = ACTIONS(1262), - [aux_sym_if_statement_token2] = ACTIONS(1262), - [aux_sym_else_if_clause_token1] = ACTIONS(1262), - [aux_sym_else_clause_token1] = ACTIONS(1262), - [aux_sym_match_expression_token1] = ACTIONS(1262), - [aux_sym_match_default_expression_token1] = ACTIONS(1262), - [aux_sym_switch_statement_token1] = ACTIONS(1262), - [aux_sym_switch_block_token1] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [aux_sym_clone_expression_token1] = ACTIONS(1262), - [aux_sym_print_intrinsic_token1] = ACTIONS(1262), - [aux_sym_object_creation_expression_token1] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [aux_sym__list_destructing_token1] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_self] = ACTIONS(1262), - [anon_sym_parent] = ACTIONS(1262), - [anon_sym_POUND_LBRACK] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [aux_sym_encapsed_string_token1] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [aux_sym_string_token1] = ACTIONS(1260), - [anon_sym_LT_LT_LT] = ACTIONS(1260), - [anon_sym_BQUOTE] = ACTIONS(1260), - [sym_boolean] = ACTIONS(1262), - [sym_null] = ACTIONS(1262), - [anon_sym_DOLLAR] = ACTIONS(1260), - [aux_sym_yield_expression_token1] = ACTIONS(1262), - [aux_sym_include_expression_token1] = ACTIONS(1262), - [aux_sym_include_once_expression_token1] = ACTIONS(1262), - [aux_sym_require_expression_token1] = ACTIONS(1262), - [aux_sym_require_once_expression_token1] = ACTIONS(1262), - [sym_comment] = ACTIONS(5), - }, - [503] = { - [sym_text_interpolation] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_name] = ACTIONS(1266), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1264), - [aux_sym_function_static_declaration_token1] = ACTIONS(1266), - [aux_sym_global_declaration_token1] = ACTIONS(1266), - [aux_sym_namespace_definition_token1] = ACTIONS(1266), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1266), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1266), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [aux_sym_trait_declaration_token1] = ACTIONS(1266), - [aux_sym_interface_declaration_token1] = ACTIONS(1266), - [aux_sym_enum_declaration_token1] = ACTIONS(1266), - [aux_sym_enum_case_token1] = ACTIONS(1266), - [aux_sym_class_declaration_token1] = ACTIONS(1266), - [aux_sym_final_modifier_token1] = ACTIONS(1266), - [aux_sym_abstract_modifier_token1] = ACTIONS(1266), - [aux_sym_readonly_modifier_token1] = ACTIONS(1266), - [aux_sym_visibility_modifier_token1] = ACTIONS(1266), - [aux_sym_visibility_modifier_token2] = ACTIONS(1266), - [aux_sym_visibility_modifier_token3] = ACTIONS(1266), - [aux_sym__arrow_function_header_token1] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1264), - [aux_sym_cast_type_token1] = ACTIONS(1266), - [aux_sym_echo_statement_token1] = ACTIONS(1266), - [anon_sym_unset] = ACTIONS(1266), - [aux_sym_declare_statement_token1] = ACTIONS(1266), - [aux_sym_declare_statement_token2] = ACTIONS(1266), - [sym_float] = ACTIONS(1266), - [aux_sym_try_statement_token1] = ACTIONS(1266), - [aux_sym_goto_statement_token1] = ACTIONS(1266), - [aux_sym_continue_statement_token1] = ACTIONS(1266), - [aux_sym_break_statement_token1] = ACTIONS(1266), - [sym_integer] = ACTIONS(1266), - [aux_sym_return_statement_token1] = ACTIONS(1266), - [aux_sym_throw_expression_token1] = ACTIONS(1266), - [aux_sym_while_statement_token1] = ACTIONS(1266), - [aux_sym_while_statement_token2] = ACTIONS(1266), - [aux_sym_do_statement_token1] = ACTIONS(1266), - [aux_sym_for_statement_token1] = ACTIONS(1266), - [aux_sym_for_statement_token2] = ACTIONS(1266), - [aux_sym_foreach_statement_token1] = ACTIONS(1266), - [aux_sym_foreach_statement_token2] = ACTIONS(1266), - [aux_sym_if_statement_token1] = ACTIONS(1266), - [aux_sym_if_statement_token2] = ACTIONS(1266), - [aux_sym_else_if_clause_token1] = ACTIONS(1266), - [aux_sym_else_clause_token1] = ACTIONS(1266), - [aux_sym_match_expression_token1] = ACTIONS(1266), - [aux_sym_match_default_expression_token1] = ACTIONS(1266), - [aux_sym_switch_statement_token1] = ACTIONS(1266), - [aux_sym_switch_block_token1] = ACTIONS(1266), - [anon_sym_AT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [aux_sym_clone_expression_token1] = ACTIONS(1266), - [aux_sym_print_intrinsic_token1] = ACTIONS(1266), - [aux_sym_object_creation_expression_token1] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [aux_sym__list_destructing_token1] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_self] = ACTIONS(1266), - [anon_sym_parent] = ACTIONS(1266), - [anon_sym_POUND_LBRACK] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [aux_sym_encapsed_string_token1] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [aux_sym_string_token1] = ACTIONS(1264), - [anon_sym_LT_LT_LT] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [sym_boolean] = ACTIONS(1266), - [sym_null] = ACTIONS(1266), - [anon_sym_DOLLAR] = ACTIONS(1264), - [aux_sym_yield_expression_token1] = ACTIONS(1266), - [aux_sym_include_expression_token1] = ACTIONS(1266), - [aux_sym_include_once_expression_token1] = ACTIONS(1266), - [aux_sym_require_expression_token1] = ACTIONS(1266), - [aux_sym_require_once_expression_token1] = ACTIONS(1266), - [sym_comment] = ACTIONS(5), - }, - [504] = { - [sym_text_interpolation] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_name] = ACTIONS(1270), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1268), - [aux_sym_function_static_declaration_token1] = ACTIONS(1270), - [aux_sym_global_declaration_token1] = ACTIONS(1270), - [aux_sym_namespace_definition_token1] = ACTIONS(1270), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1270), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1270), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1270), - [anon_sym_BSLASH] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [aux_sym_trait_declaration_token1] = ACTIONS(1270), - [aux_sym_interface_declaration_token1] = ACTIONS(1270), - [aux_sym_enum_declaration_token1] = ACTIONS(1270), - [aux_sym_enum_case_token1] = ACTIONS(1270), - [aux_sym_class_declaration_token1] = ACTIONS(1270), - [aux_sym_final_modifier_token1] = ACTIONS(1270), - [aux_sym_abstract_modifier_token1] = ACTIONS(1270), - [aux_sym_readonly_modifier_token1] = ACTIONS(1270), - [aux_sym_visibility_modifier_token1] = ACTIONS(1270), - [aux_sym_visibility_modifier_token2] = ACTIONS(1270), - [aux_sym_visibility_modifier_token3] = ACTIONS(1270), - [aux_sym__arrow_function_header_token1] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1268), - [aux_sym_cast_type_token1] = ACTIONS(1270), - [aux_sym_echo_statement_token1] = ACTIONS(1270), - [anon_sym_unset] = ACTIONS(1270), - [aux_sym_declare_statement_token1] = ACTIONS(1270), - [aux_sym_declare_statement_token2] = ACTIONS(1270), - [sym_float] = ACTIONS(1270), - [aux_sym_try_statement_token1] = ACTIONS(1270), - [aux_sym_goto_statement_token1] = ACTIONS(1270), - [aux_sym_continue_statement_token1] = ACTIONS(1270), - [aux_sym_break_statement_token1] = ACTIONS(1270), - [sym_integer] = ACTIONS(1270), - [aux_sym_return_statement_token1] = ACTIONS(1270), - [aux_sym_throw_expression_token1] = ACTIONS(1270), - [aux_sym_while_statement_token1] = ACTIONS(1270), - [aux_sym_while_statement_token2] = ACTIONS(1270), - [aux_sym_do_statement_token1] = ACTIONS(1270), - [aux_sym_for_statement_token1] = ACTIONS(1270), - [aux_sym_for_statement_token2] = ACTIONS(1270), - [aux_sym_foreach_statement_token1] = ACTIONS(1270), - [aux_sym_foreach_statement_token2] = ACTIONS(1270), - [aux_sym_if_statement_token1] = ACTIONS(1270), - [aux_sym_if_statement_token2] = ACTIONS(1270), - [aux_sym_else_if_clause_token1] = ACTIONS(1270), - [aux_sym_else_clause_token1] = ACTIONS(1270), - [aux_sym_match_expression_token1] = ACTIONS(1270), - [aux_sym_match_default_expression_token1] = ACTIONS(1270), - [aux_sym_switch_statement_token1] = ACTIONS(1270), - [aux_sym_switch_block_token1] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [aux_sym_clone_expression_token1] = ACTIONS(1270), - [aux_sym_print_intrinsic_token1] = ACTIONS(1270), - [aux_sym_object_creation_expression_token1] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [aux_sym__list_destructing_token1] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_self] = ACTIONS(1270), - [anon_sym_parent] = ACTIONS(1270), - [anon_sym_POUND_LBRACK] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [aux_sym_encapsed_string_token1] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [aux_sym_string_token1] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [sym_boolean] = ACTIONS(1270), - [sym_null] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1268), - [aux_sym_yield_expression_token1] = ACTIONS(1270), - [aux_sym_include_expression_token1] = ACTIONS(1270), - [aux_sym_include_once_expression_token1] = ACTIONS(1270), - [aux_sym_require_expression_token1] = ACTIONS(1270), - [aux_sym_require_once_expression_token1] = ACTIONS(1270), - [sym_comment] = ACTIONS(5), - }, - [505] = { - [sym_text_interpolation] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1000), - [sym_name] = ACTIONS(1002), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1000), - [aux_sym_function_static_declaration_token1] = ACTIONS(1002), - [aux_sym_global_declaration_token1] = ACTIONS(1002), - [aux_sym_namespace_definition_token1] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1002), - [anon_sym_BSLASH] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [aux_sym_trait_declaration_token1] = ACTIONS(1002), - [aux_sym_interface_declaration_token1] = ACTIONS(1002), - [aux_sym_enum_declaration_token1] = ACTIONS(1002), - [aux_sym_enum_case_token1] = ACTIONS(1002), - [aux_sym_class_declaration_token1] = ACTIONS(1002), - [aux_sym_final_modifier_token1] = ACTIONS(1002), - [aux_sym_abstract_modifier_token1] = ACTIONS(1002), - [aux_sym_readonly_modifier_token1] = ACTIONS(1002), - [aux_sym_visibility_modifier_token1] = ACTIONS(1002), - [aux_sym_visibility_modifier_token2] = ACTIONS(1002), - [aux_sym_visibility_modifier_token3] = ACTIONS(1002), - [aux_sym__arrow_function_header_token1] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1000), - [aux_sym_cast_type_token1] = ACTIONS(1002), - [aux_sym_echo_statement_token1] = ACTIONS(1002), - [anon_sym_unset] = ACTIONS(1002), - [aux_sym_declare_statement_token1] = ACTIONS(1002), - [aux_sym_declare_statement_token2] = ACTIONS(1002), - [sym_float] = ACTIONS(1002), - [aux_sym_try_statement_token1] = ACTIONS(1002), - [aux_sym_goto_statement_token1] = ACTIONS(1002), - [aux_sym_continue_statement_token1] = ACTIONS(1002), - [aux_sym_break_statement_token1] = ACTIONS(1002), - [sym_integer] = ACTIONS(1002), - [aux_sym_return_statement_token1] = ACTIONS(1002), - [aux_sym_throw_expression_token1] = ACTIONS(1002), - [aux_sym_while_statement_token1] = ACTIONS(1002), - [aux_sym_while_statement_token2] = ACTIONS(1002), - [aux_sym_do_statement_token1] = ACTIONS(1002), - [aux_sym_for_statement_token1] = ACTIONS(1002), - [aux_sym_for_statement_token2] = ACTIONS(1002), - [aux_sym_foreach_statement_token1] = ACTIONS(1002), - [aux_sym_foreach_statement_token2] = ACTIONS(1002), - [aux_sym_if_statement_token1] = ACTIONS(1002), - [aux_sym_if_statement_token2] = ACTIONS(1002), - [aux_sym_else_if_clause_token1] = ACTIONS(1002), - [aux_sym_else_clause_token1] = ACTIONS(1002), - [aux_sym_match_expression_token1] = ACTIONS(1002), - [aux_sym_match_default_expression_token1] = ACTIONS(1002), - [aux_sym_switch_statement_token1] = ACTIONS(1002), - [aux_sym_switch_block_token1] = ACTIONS(1002), - [anon_sym_AT] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [aux_sym_clone_expression_token1] = ACTIONS(1002), - [aux_sym_print_intrinsic_token1] = ACTIONS(1002), - [aux_sym_object_creation_expression_token1] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [aux_sym__list_destructing_token1] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_self] = ACTIONS(1002), - [anon_sym_parent] = ACTIONS(1002), - [anon_sym_POUND_LBRACK] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [aux_sym_encapsed_string_token1] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [aux_sym_string_token1] = ACTIONS(1000), - [anon_sym_LT_LT_LT] = ACTIONS(1000), - [anon_sym_BQUOTE] = ACTIONS(1000), - [sym_boolean] = ACTIONS(1002), - [sym_null] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [aux_sym_yield_expression_token1] = ACTIONS(1002), - [aux_sym_include_expression_token1] = ACTIONS(1002), - [aux_sym_include_once_expression_token1] = ACTIONS(1002), - [aux_sym_require_expression_token1] = ACTIONS(1002), - [aux_sym_require_once_expression_token1] = ACTIONS(1002), - [sym_comment] = ACTIONS(5), - }, - [506] = { - [sym_text_interpolation] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_name] = ACTIONS(1274), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1272), - [aux_sym_function_static_declaration_token1] = ACTIONS(1274), - [aux_sym_global_declaration_token1] = ACTIONS(1274), - [aux_sym_namespace_definition_token1] = ACTIONS(1274), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1274), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1274), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1274), - [anon_sym_BSLASH] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [aux_sym_trait_declaration_token1] = ACTIONS(1274), - [aux_sym_interface_declaration_token1] = ACTIONS(1274), - [aux_sym_enum_declaration_token1] = ACTIONS(1274), - [aux_sym_enum_case_token1] = ACTIONS(1274), - [aux_sym_class_declaration_token1] = ACTIONS(1274), - [aux_sym_final_modifier_token1] = ACTIONS(1274), - [aux_sym_abstract_modifier_token1] = ACTIONS(1274), - [aux_sym_readonly_modifier_token1] = ACTIONS(1274), - [aux_sym_visibility_modifier_token1] = ACTIONS(1274), - [aux_sym_visibility_modifier_token2] = ACTIONS(1274), - [aux_sym_visibility_modifier_token3] = ACTIONS(1274), - [aux_sym__arrow_function_header_token1] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1272), - [aux_sym_cast_type_token1] = ACTIONS(1274), - [aux_sym_echo_statement_token1] = ACTIONS(1274), - [anon_sym_unset] = ACTIONS(1274), - [aux_sym_declare_statement_token1] = ACTIONS(1274), - [aux_sym_declare_statement_token2] = ACTIONS(1274), - [sym_float] = ACTIONS(1274), - [aux_sym_try_statement_token1] = ACTIONS(1274), - [aux_sym_goto_statement_token1] = ACTIONS(1274), - [aux_sym_continue_statement_token1] = ACTIONS(1274), - [aux_sym_break_statement_token1] = ACTIONS(1274), - [sym_integer] = ACTIONS(1274), - [aux_sym_return_statement_token1] = ACTIONS(1274), - [aux_sym_throw_expression_token1] = ACTIONS(1274), - [aux_sym_while_statement_token1] = ACTIONS(1274), - [aux_sym_while_statement_token2] = ACTIONS(1274), - [aux_sym_do_statement_token1] = ACTIONS(1274), - [aux_sym_for_statement_token1] = ACTIONS(1274), - [aux_sym_for_statement_token2] = ACTIONS(1274), - [aux_sym_foreach_statement_token1] = ACTIONS(1274), - [aux_sym_foreach_statement_token2] = ACTIONS(1274), - [aux_sym_if_statement_token1] = ACTIONS(1274), - [aux_sym_if_statement_token2] = ACTIONS(1274), - [aux_sym_else_if_clause_token1] = ACTIONS(1274), - [aux_sym_else_clause_token1] = ACTIONS(1274), - [aux_sym_match_expression_token1] = ACTIONS(1274), - [aux_sym_match_default_expression_token1] = ACTIONS(1274), - [aux_sym_switch_statement_token1] = ACTIONS(1274), - [aux_sym_switch_block_token1] = ACTIONS(1274), - [anon_sym_AT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [aux_sym_clone_expression_token1] = ACTIONS(1274), - [aux_sym_print_intrinsic_token1] = ACTIONS(1274), - [aux_sym_object_creation_expression_token1] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [aux_sym__list_destructing_token1] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_self] = ACTIONS(1274), - [anon_sym_parent] = ACTIONS(1274), - [anon_sym_POUND_LBRACK] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [aux_sym_encapsed_string_token1] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [aux_sym_string_token1] = ACTIONS(1272), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [sym_boolean] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1272), - [aux_sym_yield_expression_token1] = ACTIONS(1274), - [aux_sym_include_expression_token1] = ACTIONS(1274), - [aux_sym_include_once_expression_token1] = ACTIONS(1274), - [aux_sym_require_expression_token1] = ACTIONS(1274), - [aux_sym_require_once_expression_token1] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - }, - [507] = { - [sym_text_interpolation] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_name] = ACTIONS(1278), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1276), - [aux_sym_function_static_declaration_token1] = ACTIONS(1278), - [aux_sym_global_declaration_token1] = ACTIONS(1278), - [aux_sym_namespace_definition_token1] = ACTIONS(1278), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1278), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1278), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1278), - [anon_sym_BSLASH] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [aux_sym_trait_declaration_token1] = ACTIONS(1278), - [aux_sym_interface_declaration_token1] = ACTIONS(1278), - [aux_sym_enum_declaration_token1] = ACTIONS(1278), - [aux_sym_enum_case_token1] = ACTIONS(1278), - [aux_sym_class_declaration_token1] = ACTIONS(1278), - [aux_sym_final_modifier_token1] = ACTIONS(1278), - [aux_sym_abstract_modifier_token1] = ACTIONS(1278), - [aux_sym_readonly_modifier_token1] = ACTIONS(1278), - [aux_sym_visibility_modifier_token1] = ACTIONS(1278), - [aux_sym_visibility_modifier_token2] = ACTIONS(1278), - [aux_sym_visibility_modifier_token3] = ACTIONS(1278), - [aux_sym__arrow_function_header_token1] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1276), - [aux_sym_cast_type_token1] = ACTIONS(1278), - [aux_sym_echo_statement_token1] = ACTIONS(1278), - [anon_sym_unset] = ACTIONS(1278), - [aux_sym_declare_statement_token1] = ACTIONS(1278), - [aux_sym_declare_statement_token2] = ACTIONS(1278), - [sym_float] = ACTIONS(1278), - [aux_sym_try_statement_token1] = ACTIONS(1278), - [aux_sym_goto_statement_token1] = ACTIONS(1278), - [aux_sym_continue_statement_token1] = ACTIONS(1278), - [aux_sym_break_statement_token1] = ACTIONS(1278), - [sym_integer] = ACTIONS(1278), - [aux_sym_return_statement_token1] = ACTIONS(1278), - [aux_sym_throw_expression_token1] = ACTIONS(1278), - [aux_sym_while_statement_token1] = ACTIONS(1278), - [aux_sym_while_statement_token2] = ACTIONS(1278), - [aux_sym_do_statement_token1] = ACTIONS(1278), - [aux_sym_for_statement_token1] = ACTIONS(1278), - [aux_sym_for_statement_token2] = ACTIONS(1278), - [aux_sym_foreach_statement_token1] = ACTIONS(1278), - [aux_sym_foreach_statement_token2] = ACTIONS(1278), - [aux_sym_if_statement_token1] = ACTIONS(1278), - [aux_sym_if_statement_token2] = ACTIONS(1278), - [aux_sym_else_if_clause_token1] = ACTIONS(1278), - [aux_sym_else_clause_token1] = ACTIONS(1278), - [aux_sym_match_expression_token1] = ACTIONS(1278), - [aux_sym_match_default_expression_token1] = ACTIONS(1278), - [aux_sym_switch_statement_token1] = ACTIONS(1278), - [aux_sym_switch_block_token1] = ACTIONS(1278), - [anon_sym_AT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [aux_sym_clone_expression_token1] = ACTIONS(1278), - [aux_sym_print_intrinsic_token1] = ACTIONS(1278), - [aux_sym_object_creation_expression_token1] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [aux_sym__list_destructing_token1] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_self] = ACTIONS(1278), - [anon_sym_parent] = ACTIONS(1278), - [anon_sym_POUND_LBRACK] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [aux_sym_encapsed_string_token1] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1276), - [anon_sym_LT_LT_LT] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [sym_boolean] = ACTIONS(1278), - [sym_null] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1276), - [aux_sym_yield_expression_token1] = ACTIONS(1278), - [aux_sym_include_expression_token1] = ACTIONS(1278), - [aux_sym_include_once_expression_token1] = ACTIONS(1278), - [aux_sym_require_expression_token1] = ACTIONS(1278), - [aux_sym_require_once_expression_token1] = ACTIONS(1278), - [sym_comment] = ACTIONS(5), - }, - [508] = { - [sym_text_interpolation] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_name] = ACTIONS(1282), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1280), - [aux_sym_function_static_declaration_token1] = ACTIONS(1282), - [aux_sym_global_declaration_token1] = ACTIONS(1282), - [aux_sym_namespace_definition_token1] = ACTIONS(1282), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1282), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1282), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1282), - [anon_sym_BSLASH] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [aux_sym_trait_declaration_token1] = ACTIONS(1282), - [aux_sym_interface_declaration_token1] = ACTIONS(1282), - [aux_sym_enum_declaration_token1] = ACTIONS(1282), - [aux_sym_enum_case_token1] = ACTIONS(1282), - [aux_sym_class_declaration_token1] = ACTIONS(1282), - [aux_sym_final_modifier_token1] = ACTIONS(1282), - [aux_sym_abstract_modifier_token1] = ACTIONS(1282), - [aux_sym_readonly_modifier_token1] = ACTIONS(1282), - [aux_sym_visibility_modifier_token1] = ACTIONS(1282), - [aux_sym_visibility_modifier_token2] = ACTIONS(1282), - [aux_sym_visibility_modifier_token3] = ACTIONS(1282), - [aux_sym__arrow_function_header_token1] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [aux_sym_cast_type_token1] = ACTIONS(1282), - [aux_sym_echo_statement_token1] = ACTIONS(1282), - [anon_sym_unset] = ACTIONS(1282), - [aux_sym_declare_statement_token1] = ACTIONS(1282), - [aux_sym_declare_statement_token2] = ACTIONS(1282), - [sym_float] = ACTIONS(1282), - [aux_sym_try_statement_token1] = ACTIONS(1282), - [aux_sym_goto_statement_token1] = ACTIONS(1282), - [aux_sym_continue_statement_token1] = ACTIONS(1282), - [aux_sym_break_statement_token1] = ACTIONS(1282), - [sym_integer] = ACTIONS(1282), - [aux_sym_return_statement_token1] = ACTIONS(1282), - [aux_sym_throw_expression_token1] = ACTIONS(1282), - [aux_sym_while_statement_token1] = ACTIONS(1282), - [aux_sym_while_statement_token2] = ACTIONS(1282), - [aux_sym_do_statement_token1] = ACTIONS(1282), - [aux_sym_for_statement_token1] = ACTIONS(1282), - [aux_sym_for_statement_token2] = ACTIONS(1282), - [aux_sym_foreach_statement_token1] = ACTIONS(1282), - [aux_sym_foreach_statement_token2] = ACTIONS(1282), - [aux_sym_if_statement_token1] = ACTIONS(1282), - [aux_sym_if_statement_token2] = ACTIONS(1282), - [aux_sym_else_if_clause_token1] = ACTIONS(1282), - [aux_sym_else_clause_token1] = ACTIONS(1282), - [aux_sym_match_expression_token1] = ACTIONS(1282), - [aux_sym_match_default_expression_token1] = ACTIONS(1282), - [aux_sym_switch_statement_token1] = ACTIONS(1282), - [aux_sym_switch_block_token1] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [aux_sym_clone_expression_token1] = ACTIONS(1282), - [aux_sym_print_intrinsic_token1] = ACTIONS(1282), - [aux_sym_object_creation_expression_token1] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [aux_sym__list_destructing_token1] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_self] = ACTIONS(1282), - [anon_sym_parent] = ACTIONS(1282), - [anon_sym_POUND_LBRACK] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [aux_sym_encapsed_string_token1] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [aux_sym_string_token1] = ACTIONS(1280), - [anon_sym_LT_LT_LT] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [sym_boolean] = ACTIONS(1282), - [sym_null] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1280), - [aux_sym_yield_expression_token1] = ACTIONS(1282), - [aux_sym_include_expression_token1] = ACTIONS(1282), - [aux_sym_include_once_expression_token1] = ACTIONS(1282), - [aux_sym_require_expression_token1] = ACTIONS(1282), - [aux_sym_require_once_expression_token1] = ACTIONS(1282), - [sym_comment] = ACTIONS(5), - }, - [509] = { - [sym_text_interpolation] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_name] = ACTIONS(1286), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1284), - [aux_sym_function_static_declaration_token1] = ACTIONS(1286), - [aux_sym_global_declaration_token1] = ACTIONS(1286), - [aux_sym_namespace_definition_token1] = ACTIONS(1286), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1286), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1286), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1286), - [anon_sym_BSLASH] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [aux_sym_trait_declaration_token1] = ACTIONS(1286), - [aux_sym_interface_declaration_token1] = ACTIONS(1286), - [aux_sym_enum_declaration_token1] = ACTIONS(1286), - [aux_sym_enum_case_token1] = ACTIONS(1286), - [aux_sym_class_declaration_token1] = ACTIONS(1286), - [aux_sym_final_modifier_token1] = ACTIONS(1286), - [aux_sym_abstract_modifier_token1] = ACTIONS(1286), - [aux_sym_readonly_modifier_token1] = ACTIONS(1286), - [aux_sym_visibility_modifier_token1] = ACTIONS(1286), - [aux_sym_visibility_modifier_token2] = ACTIONS(1286), - [aux_sym_visibility_modifier_token3] = ACTIONS(1286), - [aux_sym__arrow_function_header_token1] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1284), - [aux_sym_cast_type_token1] = ACTIONS(1286), - [aux_sym_echo_statement_token1] = ACTIONS(1286), - [anon_sym_unset] = ACTIONS(1286), - [aux_sym_declare_statement_token1] = ACTIONS(1286), - [aux_sym_declare_statement_token2] = ACTIONS(1286), - [sym_float] = ACTIONS(1286), - [aux_sym_try_statement_token1] = ACTIONS(1286), - [aux_sym_goto_statement_token1] = ACTIONS(1286), - [aux_sym_continue_statement_token1] = ACTIONS(1286), - [aux_sym_break_statement_token1] = ACTIONS(1286), - [sym_integer] = ACTIONS(1286), - [aux_sym_return_statement_token1] = ACTIONS(1286), - [aux_sym_throw_expression_token1] = ACTIONS(1286), - [aux_sym_while_statement_token1] = ACTIONS(1286), - [aux_sym_while_statement_token2] = ACTIONS(1286), - [aux_sym_do_statement_token1] = ACTIONS(1286), - [aux_sym_for_statement_token1] = ACTIONS(1286), - [aux_sym_for_statement_token2] = ACTIONS(1286), - [aux_sym_foreach_statement_token1] = ACTIONS(1286), - [aux_sym_foreach_statement_token2] = ACTIONS(1286), - [aux_sym_if_statement_token1] = ACTIONS(1286), - [aux_sym_if_statement_token2] = ACTIONS(1286), - [aux_sym_else_if_clause_token1] = ACTIONS(1286), - [aux_sym_else_clause_token1] = ACTIONS(1286), - [aux_sym_match_expression_token1] = ACTIONS(1286), - [aux_sym_match_default_expression_token1] = ACTIONS(1286), - [aux_sym_switch_statement_token1] = ACTIONS(1286), - [aux_sym_switch_block_token1] = ACTIONS(1286), - [anon_sym_AT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [aux_sym_clone_expression_token1] = ACTIONS(1286), - [aux_sym_print_intrinsic_token1] = ACTIONS(1286), - [aux_sym_object_creation_expression_token1] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [aux_sym__list_destructing_token1] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_self] = ACTIONS(1286), - [anon_sym_parent] = ACTIONS(1286), - [anon_sym_POUND_LBRACK] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [aux_sym_encapsed_string_token1] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [aux_sym_string_token1] = ACTIONS(1284), - [anon_sym_LT_LT_LT] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [sym_boolean] = ACTIONS(1286), - [sym_null] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [aux_sym_yield_expression_token1] = ACTIONS(1286), - [aux_sym_include_expression_token1] = ACTIONS(1286), - [aux_sym_include_once_expression_token1] = ACTIONS(1286), - [aux_sym_require_expression_token1] = ACTIONS(1286), - [aux_sym_require_once_expression_token1] = ACTIONS(1286), - [sym_comment] = ACTIONS(5), - }, - [510] = { - [sym_text_interpolation] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_name] = ACTIONS(1290), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1288), - [aux_sym_function_static_declaration_token1] = ACTIONS(1290), - [aux_sym_global_declaration_token1] = ACTIONS(1290), - [aux_sym_namespace_definition_token1] = ACTIONS(1290), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1290), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1290), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1290), - [anon_sym_BSLASH] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [aux_sym_trait_declaration_token1] = ACTIONS(1290), - [aux_sym_interface_declaration_token1] = ACTIONS(1290), - [aux_sym_enum_declaration_token1] = ACTIONS(1290), - [aux_sym_enum_case_token1] = ACTIONS(1290), - [aux_sym_class_declaration_token1] = ACTIONS(1290), - [aux_sym_final_modifier_token1] = ACTIONS(1290), - [aux_sym_abstract_modifier_token1] = ACTIONS(1290), - [aux_sym_readonly_modifier_token1] = ACTIONS(1290), - [aux_sym_visibility_modifier_token1] = ACTIONS(1290), - [aux_sym_visibility_modifier_token2] = ACTIONS(1290), - [aux_sym_visibility_modifier_token3] = ACTIONS(1290), - [aux_sym__arrow_function_header_token1] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1288), - [aux_sym_cast_type_token1] = ACTIONS(1290), - [aux_sym_echo_statement_token1] = ACTIONS(1290), - [anon_sym_unset] = ACTIONS(1290), - [aux_sym_declare_statement_token1] = ACTIONS(1290), - [aux_sym_declare_statement_token2] = ACTIONS(1290), - [sym_float] = ACTIONS(1290), - [aux_sym_try_statement_token1] = ACTIONS(1290), - [aux_sym_goto_statement_token1] = ACTIONS(1290), - [aux_sym_continue_statement_token1] = ACTIONS(1290), - [aux_sym_break_statement_token1] = ACTIONS(1290), - [sym_integer] = ACTIONS(1290), - [aux_sym_return_statement_token1] = ACTIONS(1290), - [aux_sym_throw_expression_token1] = ACTIONS(1290), - [aux_sym_while_statement_token1] = ACTIONS(1290), - [aux_sym_while_statement_token2] = ACTIONS(1290), - [aux_sym_do_statement_token1] = ACTIONS(1290), - [aux_sym_for_statement_token1] = ACTIONS(1290), - [aux_sym_for_statement_token2] = ACTIONS(1290), - [aux_sym_foreach_statement_token1] = ACTIONS(1290), - [aux_sym_foreach_statement_token2] = ACTIONS(1290), - [aux_sym_if_statement_token1] = ACTIONS(1290), - [aux_sym_if_statement_token2] = ACTIONS(1290), - [aux_sym_else_if_clause_token1] = ACTIONS(1290), - [aux_sym_else_clause_token1] = ACTIONS(1290), - [aux_sym_match_expression_token1] = ACTIONS(1290), - [aux_sym_match_default_expression_token1] = ACTIONS(1290), - [aux_sym_switch_statement_token1] = ACTIONS(1290), - [aux_sym_switch_block_token1] = ACTIONS(1290), - [anon_sym_AT] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [aux_sym_clone_expression_token1] = ACTIONS(1290), - [aux_sym_print_intrinsic_token1] = ACTIONS(1290), - [aux_sym_object_creation_expression_token1] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [aux_sym__list_destructing_token1] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_self] = ACTIONS(1290), - [anon_sym_parent] = ACTIONS(1290), - [anon_sym_POUND_LBRACK] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [aux_sym_encapsed_string_token1] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [aux_sym_string_token1] = ACTIONS(1288), - [anon_sym_LT_LT_LT] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [sym_boolean] = ACTIONS(1290), - [sym_null] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1288), - [aux_sym_yield_expression_token1] = ACTIONS(1290), - [aux_sym_include_expression_token1] = ACTIONS(1290), - [aux_sym_include_once_expression_token1] = ACTIONS(1290), - [aux_sym_require_expression_token1] = ACTIONS(1290), - [aux_sym_require_once_expression_token1] = ACTIONS(1290), - [sym_comment] = ACTIONS(5), - }, - [511] = { - [sym_text_interpolation] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1292), - [sym_name] = ACTIONS(1294), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1292), - [aux_sym_function_static_declaration_token1] = ACTIONS(1294), - [aux_sym_global_declaration_token1] = ACTIONS(1294), - [aux_sym_namespace_definition_token1] = ACTIONS(1294), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1294), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1294), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1294), - [anon_sym_BSLASH] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [aux_sym_trait_declaration_token1] = ACTIONS(1294), - [aux_sym_interface_declaration_token1] = ACTIONS(1294), - [aux_sym_enum_declaration_token1] = ACTIONS(1294), - [aux_sym_enum_case_token1] = ACTIONS(1294), - [aux_sym_class_declaration_token1] = ACTIONS(1294), - [aux_sym_final_modifier_token1] = ACTIONS(1294), - [aux_sym_abstract_modifier_token1] = ACTIONS(1294), - [aux_sym_readonly_modifier_token1] = ACTIONS(1294), - [aux_sym_visibility_modifier_token1] = ACTIONS(1294), - [aux_sym_visibility_modifier_token2] = ACTIONS(1294), - [aux_sym_visibility_modifier_token3] = ACTIONS(1294), - [aux_sym__arrow_function_header_token1] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1292), - [aux_sym_cast_type_token1] = ACTIONS(1294), - [aux_sym_echo_statement_token1] = ACTIONS(1294), - [anon_sym_unset] = ACTIONS(1294), - [aux_sym_declare_statement_token1] = ACTIONS(1294), - [aux_sym_declare_statement_token2] = ACTIONS(1294), - [sym_float] = ACTIONS(1294), - [aux_sym_try_statement_token1] = ACTIONS(1294), - [aux_sym_goto_statement_token1] = ACTIONS(1294), - [aux_sym_continue_statement_token1] = ACTIONS(1294), - [aux_sym_break_statement_token1] = ACTIONS(1294), - [sym_integer] = ACTIONS(1294), - [aux_sym_return_statement_token1] = ACTIONS(1294), - [aux_sym_throw_expression_token1] = ACTIONS(1294), - [aux_sym_while_statement_token1] = ACTIONS(1294), - [aux_sym_while_statement_token2] = ACTIONS(1294), - [aux_sym_do_statement_token1] = ACTIONS(1294), - [aux_sym_for_statement_token1] = ACTIONS(1294), - [aux_sym_for_statement_token2] = ACTIONS(1294), - [aux_sym_foreach_statement_token1] = ACTIONS(1294), - [aux_sym_foreach_statement_token2] = ACTIONS(1294), - [aux_sym_if_statement_token1] = ACTIONS(1294), - [aux_sym_if_statement_token2] = ACTIONS(1294), - [aux_sym_else_if_clause_token1] = ACTIONS(1294), - [aux_sym_else_clause_token1] = ACTIONS(1294), - [aux_sym_match_expression_token1] = ACTIONS(1294), - [aux_sym_match_default_expression_token1] = ACTIONS(1294), - [aux_sym_switch_statement_token1] = ACTIONS(1294), - [aux_sym_switch_block_token1] = ACTIONS(1294), - [anon_sym_AT] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [aux_sym_clone_expression_token1] = ACTIONS(1294), - [aux_sym_print_intrinsic_token1] = ACTIONS(1294), - [aux_sym_object_creation_expression_token1] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [aux_sym__list_destructing_token1] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_self] = ACTIONS(1294), - [anon_sym_parent] = ACTIONS(1294), - [anon_sym_POUND_LBRACK] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [aux_sym_encapsed_string_token1] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [aux_sym_string_token1] = ACTIONS(1292), - [anon_sym_LT_LT_LT] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [sym_boolean] = ACTIONS(1294), - [sym_null] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1292), - [aux_sym_yield_expression_token1] = ACTIONS(1294), - [aux_sym_include_expression_token1] = ACTIONS(1294), - [aux_sym_include_once_expression_token1] = ACTIONS(1294), - [aux_sym_require_expression_token1] = ACTIONS(1294), - [aux_sym_require_once_expression_token1] = ACTIONS(1294), - [sym_comment] = ACTIONS(5), - }, - [512] = { - [sym_text_interpolation] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_name] = ACTIONS(1298), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1296), - [aux_sym_function_static_declaration_token1] = ACTIONS(1298), - [aux_sym_global_declaration_token1] = ACTIONS(1298), - [aux_sym_namespace_definition_token1] = ACTIONS(1298), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1298), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1298), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1298), - [anon_sym_BSLASH] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [aux_sym_trait_declaration_token1] = ACTIONS(1298), - [aux_sym_interface_declaration_token1] = ACTIONS(1298), - [aux_sym_enum_declaration_token1] = ACTIONS(1298), - [aux_sym_enum_case_token1] = ACTIONS(1298), - [aux_sym_class_declaration_token1] = ACTIONS(1298), - [aux_sym_final_modifier_token1] = ACTIONS(1298), - [aux_sym_abstract_modifier_token1] = ACTIONS(1298), - [aux_sym_readonly_modifier_token1] = ACTIONS(1298), - [aux_sym_visibility_modifier_token1] = ACTIONS(1298), - [aux_sym_visibility_modifier_token2] = ACTIONS(1298), - [aux_sym_visibility_modifier_token3] = ACTIONS(1298), - [aux_sym__arrow_function_header_token1] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1296), - [aux_sym_cast_type_token1] = ACTIONS(1298), - [aux_sym_echo_statement_token1] = ACTIONS(1298), - [anon_sym_unset] = ACTIONS(1298), - [aux_sym_declare_statement_token1] = ACTIONS(1298), - [aux_sym_declare_statement_token2] = ACTIONS(1298), - [sym_float] = ACTIONS(1298), - [aux_sym_try_statement_token1] = ACTIONS(1298), - [aux_sym_goto_statement_token1] = ACTIONS(1298), - [aux_sym_continue_statement_token1] = ACTIONS(1298), - [aux_sym_break_statement_token1] = ACTIONS(1298), - [sym_integer] = ACTIONS(1298), - [aux_sym_return_statement_token1] = ACTIONS(1298), - [aux_sym_throw_expression_token1] = ACTIONS(1298), - [aux_sym_while_statement_token1] = ACTIONS(1298), - [aux_sym_while_statement_token2] = ACTIONS(1298), - [aux_sym_do_statement_token1] = ACTIONS(1298), - [aux_sym_for_statement_token1] = ACTIONS(1298), - [aux_sym_for_statement_token2] = ACTIONS(1298), - [aux_sym_foreach_statement_token1] = ACTIONS(1298), - [aux_sym_foreach_statement_token2] = ACTIONS(1298), - [aux_sym_if_statement_token1] = ACTIONS(1298), - [aux_sym_if_statement_token2] = ACTIONS(1298), - [aux_sym_else_if_clause_token1] = ACTIONS(1298), - [aux_sym_else_clause_token1] = ACTIONS(1298), - [aux_sym_match_expression_token1] = ACTIONS(1298), - [aux_sym_match_default_expression_token1] = ACTIONS(1298), - [aux_sym_switch_statement_token1] = ACTIONS(1298), - [aux_sym_switch_block_token1] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [aux_sym_clone_expression_token1] = ACTIONS(1298), - [aux_sym_print_intrinsic_token1] = ACTIONS(1298), - [aux_sym_object_creation_expression_token1] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [aux_sym__list_destructing_token1] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_self] = ACTIONS(1298), - [anon_sym_parent] = ACTIONS(1298), - [anon_sym_POUND_LBRACK] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [aux_sym_encapsed_string_token1] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [aux_sym_string_token1] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_boolean] = ACTIONS(1298), - [sym_null] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [aux_sym_yield_expression_token1] = ACTIONS(1298), - [aux_sym_include_expression_token1] = ACTIONS(1298), - [aux_sym_include_once_expression_token1] = ACTIONS(1298), - [aux_sym_require_expression_token1] = ACTIONS(1298), - [aux_sym_require_once_expression_token1] = ACTIONS(1298), - [sym_comment] = ACTIONS(5), - }, - [513] = { - [sym_text_interpolation] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_name] = ACTIONS(1302), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1300), - [aux_sym_function_static_declaration_token1] = ACTIONS(1302), - [aux_sym_global_declaration_token1] = ACTIONS(1302), - [aux_sym_namespace_definition_token1] = ACTIONS(1302), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1302), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1302), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1302), - [anon_sym_BSLASH] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [aux_sym_trait_declaration_token1] = ACTIONS(1302), - [aux_sym_interface_declaration_token1] = ACTIONS(1302), - [aux_sym_enum_declaration_token1] = ACTIONS(1302), - [aux_sym_enum_case_token1] = ACTIONS(1302), - [aux_sym_class_declaration_token1] = ACTIONS(1302), - [aux_sym_final_modifier_token1] = ACTIONS(1302), - [aux_sym_abstract_modifier_token1] = ACTIONS(1302), - [aux_sym_readonly_modifier_token1] = ACTIONS(1302), - [aux_sym_visibility_modifier_token1] = ACTIONS(1302), - [aux_sym_visibility_modifier_token2] = ACTIONS(1302), - [aux_sym_visibility_modifier_token3] = ACTIONS(1302), - [aux_sym__arrow_function_header_token1] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1300), - [aux_sym_cast_type_token1] = ACTIONS(1302), - [aux_sym_echo_statement_token1] = ACTIONS(1302), - [anon_sym_unset] = ACTIONS(1302), - [aux_sym_declare_statement_token1] = ACTIONS(1302), - [aux_sym_declare_statement_token2] = ACTIONS(1302), - [sym_float] = ACTIONS(1302), - [aux_sym_try_statement_token1] = ACTIONS(1302), - [aux_sym_goto_statement_token1] = ACTIONS(1302), - [aux_sym_continue_statement_token1] = ACTIONS(1302), - [aux_sym_break_statement_token1] = ACTIONS(1302), - [sym_integer] = ACTIONS(1302), - [aux_sym_return_statement_token1] = ACTIONS(1302), - [aux_sym_throw_expression_token1] = ACTIONS(1302), - [aux_sym_while_statement_token1] = ACTIONS(1302), - [aux_sym_while_statement_token2] = ACTIONS(1302), - [aux_sym_do_statement_token1] = ACTIONS(1302), - [aux_sym_for_statement_token1] = ACTIONS(1302), - [aux_sym_for_statement_token2] = ACTIONS(1302), - [aux_sym_foreach_statement_token1] = ACTIONS(1302), - [aux_sym_foreach_statement_token2] = ACTIONS(1302), - [aux_sym_if_statement_token1] = ACTIONS(1302), - [aux_sym_if_statement_token2] = ACTIONS(1302), - [aux_sym_else_if_clause_token1] = ACTIONS(1302), - [aux_sym_else_clause_token1] = ACTIONS(1302), - [aux_sym_match_expression_token1] = ACTIONS(1302), - [aux_sym_match_default_expression_token1] = ACTIONS(1302), - [aux_sym_switch_statement_token1] = ACTIONS(1302), - [aux_sym_switch_block_token1] = ACTIONS(1302), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [aux_sym_clone_expression_token1] = ACTIONS(1302), - [aux_sym_print_intrinsic_token1] = ACTIONS(1302), - [aux_sym_object_creation_expression_token1] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [aux_sym__list_destructing_token1] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_self] = ACTIONS(1302), - [anon_sym_parent] = ACTIONS(1302), - [anon_sym_POUND_LBRACK] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [aux_sym_encapsed_string_token1] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [aux_sym_string_token1] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [sym_boolean] = ACTIONS(1302), - [sym_null] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1300), - [aux_sym_yield_expression_token1] = ACTIONS(1302), - [aux_sym_include_expression_token1] = ACTIONS(1302), - [aux_sym_include_once_expression_token1] = ACTIONS(1302), - [aux_sym_require_expression_token1] = ACTIONS(1302), - [aux_sym_require_once_expression_token1] = ACTIONS(1302), - [sym_comment] = ACTIONS(5), - }, - [514] = { - [sym_text_interpolation] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_name] = ACTIONS(1306), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1304), - [aux_sym_function_static_declaration_token1] = ACTIONS(1306), - [aux_sym_global_declaration_token1] = ACTIONS(1306), - [aux_sym_namespace_definition_token1] = ACTIONS(1306), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1306), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1306), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1306), - [anon_sym_BSLASH] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [aux_sym_trait_declaration_token1] = ACTIONS(1306), - [aux_sym_interface_declaration_token1] = ACTIONS(1306), - [aux_sym_enum_declaration_token1] = ACTIONS(1306), - [aux_sym_enum_case_token1] = ACTIONS(1306), - [aux_sym_class_declaration_token1] = ACTIONS(1306), - [aux_sym_final_modifier_token1] = ACTIONS(1306), - [aux_sym_abstract_modifier_token1] = ACTIONS(1306), - [aux_sym_readonly_modifier_token1] = ACTIONS(1306), - [aux_sym_visibility_modifier_token1] = ACTIONS(1306), - [aux_sym_visibility_modifier_token2] = ACTIONS(1306), - [aux_sym_visibility_modifier_token3] = ACTIONS(1306), - [aux_sym__arrow_function_header_token1] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1304), - [aux_sym_cast_type_token1] = ACTIONS(1306), - [aux_sym_echo_statement_token1] = ACTIONS(1306), - [anon_sym_unset] = ACTIONS(1306), - [aux_sym_declare_statement_token1] = ACTIONS(1306), - [aux_sym_declare_statement_token2] = ACTIONS(1306), - [sym_float] = ACTIONS(1306), - [aux_sym_try_statement_token1] = ACTIONS(1306), - [aux_sym_goto_statement_token1] = ACTIONS(1306), - [aux_sym_continue_statement_token1] = ACTIONS(1306), - [aux_sym_break_statement_token1] = ACTIONS(1306), - [sym_integer] = ACTIONS(1306), - [aux_sym_return_statement_token1] = ACTIONS(1306), - [aux_sym_throw_expression_token1] = ACTIONS(1306), - [aux_sym_while_statement_token1] = ACTIONS(1306), - [aux_sym_while_statement_token2] = ACTIONS(1306), - [aux_sym_do_statement_token1] = ACTIONS(1306), - [aux_sym_for_statement_token1] = ACTIONS(1306), - [aux_sym_for_statement_token2] = ACTIONS(1306), - [aux_sym_foreach_statement_token1] = ACTIONS(1306), - [aux_sym_foreach_statement_token2] = ACTIONS(1306), - [aux_sym_if_statement_token1] = ACTIONS(1306), - [aux_sym_if_statement_token2] = ACTIONS(1306), - [aux_sym_else_if_clause_token1] = ACTIONS(1306), - [aux_sym_else_clause_token1] = ACTIONS(1306), - [aux_sym_match_expression_token1] = ACTIONS(1306), - [aux_sym_match_default_expression_token1] = ACTIONS(1306), - [aux_sym_switch_statement_token1] = ACTIONS(1306), - [aux_sym_switch_block_token1] = ACTIONS(1306), - [anon_sym_AT] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [aux_sym_clone_expression_token1] = ACTIONS(1306), - [aux_sym_print_intrinsic_token1] = ACTIONS(1306), - [aux_sym_object_creation_expression_token1] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [aux_sym__list_destructing_token1] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_self] = ACTIONS(1306), - [anon_sym_parent] = ACTIONS(1306), - [anon_sym_POUND_LBRACK] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [aux_sym_encapsed_string_token1] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [aux_sym_string_token1] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [sym_boolean] = ACTIONS(1306), - [sym_null] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1304), - [aux_sym_yield_expression_token1] = ACTIONS(1306), - [aux_sym_include_expression_token1] = ACTIONS(1306), - [aux_sym_include_once_expression_token1] = ACTIONS(1306), - [aux_sym_require_expression_token1] = ACTIONS(1306), - [aux_sym_require_once_expression_token1] = ACTIONS(1306), - [sym_comment] = ACTIONS(5), - }, - [515] = { - [sym_text_interpolation] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_name] = ACTIONS(1310), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1308), - [aux_sym_function_static_declaration_token1] = ACTIONS(1310), - [aux_sym_global_declaration_token1] = ACTIONS(1310), - [aux_sym_namespace_definition_token1] = ACTIONS(1310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1310), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1310), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1310), - [anon_sym_BSLASH] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [aux_sym_trait_declaration_token1] = ACTIONS(1310), - [aux_sym_interface_declaration_token1] = ACTIONS(1310), - [aux_sym_enum_declaration_token1] = ACTIONS(1310), - [aux_sym_enum_case_token1] = ACTIONS(1310), - [aux_sym_class_declaration_token1] = ACTIONS(1310), - [aux_sym_final_modifier_token1] = ACTIONS(1310), - [aux_sym_abstract_modifier_token1] = ACTIONS(1310), - [aux_sym_readonly_modifier_token1] = ACTIONS(1310), - [aux_sym_visibility_modifier_token1] = ACTIONS(1310), - [aux_sym_visibility_modifier_token2] = ACTIONS(1310), - [aux_sym_visibility_modifier_token3] = ACTIONS(1310), - [aux_sym__arrow_function_header_token1] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1308), - [aux_sym_cast_type_token1] = ACTIONS(1310), - [aux_sym_echo_statement_token1] = ACTIONS(1310), - [anon_sym_unset] = ACTIONS(1310), - [aux_sym_declare_statement_token1] = ACTIONS(1310), - [aux_sym_declare_statement_token2] = ACTIONS(1310), - [sym_float] = ACTIONS(1310), - [aux_sym_try_statement_token1] = ACTIONS(1310), - [aux_sym_goto_statement_token1] = ACTIONS(1310), - [aux_sym_continue_statement_token1] = ACTIONS(1310), - [aux_sym_break_statement_token1] = ACTIONS(1310), - [sym_integer] = ACTIONS(1310), - [aux_sym_return_statement_token1] = ACTIONS(1310), - [aux_sym_throw_expression_token1] = ACTIONS(1310), - [aux_sym_while_statement_token1] = ACTIONS(1310), - [aux_sym_while_statement_token2] = ACTIONS(1310), - [aux_sym_do_statement_token1] = ACTIONS(1310), - [aux_sym_for_statement_token1] = ACTIONS(1310), - [aux_sym_for_statement_token2] = ACTIONS(1310), - [aux_sym_foreach_statement_token1] = ACTIONS(1310), - [aux_sym_foreach_statement_token2] = ACTIONS(1310), - [aux_sym_if_statement_token1] = ACTIONS(1310), - [aux_sym_if_statement_token2] = ACTIONS(1310), - [aux_sym_else_if_clause_token1] = ACTIONS(1310), - [aux_sym_else_clause_token1] = ACTIONS(1310), - [aux_sym_match_expression_token1] = ACTIONS(1310), - [aux_sym_match_default_expression_token1] = ACTIONS(1310), - [aux_sym_switch_statement_token1] = ACTIONS(1310), - [aux_sym_switch_block_token1] = ACTIONS(1310), - [anon_sym_AT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [aux_sym_clone_expression_token1] = ACTIONS(1310), - [aux_sym_print_intrinsic_token1] = ACTIONS(1310), - [aux_sym_object_creation_expression_token1] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [aux_sym__list_destructing_token1] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_self] = ACTIONS(1310), - [anon_sym_parent] = ACTIONS(1310), - [anon_sym_POUND_LBRACK] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [aux_sym_encapsed_string_token1] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [aux_sym_string_token1] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_boolean] = ACTIONS(1310), - [sym_null] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [aux_sym_yield_expression_token1] = ACTIONS(1310), - [aux_sym_include_expression_token1] = ACTIONS(1310), - [aux_sym_include_once_expression_token1] = ACTIONS(1310), - [aux_sym_require_expression_token1] = ACTIONS(1310), - [aux_sym_require_once_expression_token1] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - }, - [516] = { - [sym_text_interpolation] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_name] = ACTIONS(1314), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1312), - [aux_sym_function_static_declaration_token1] = ACTIONS(1314), - [aux_sym_global_declaration_token1] = ACTIONS(1314), - [aux_sym_namespace_definition_token1] = ACTIONS(1314), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1314), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1314), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1314), - [anon_sym_BSLASH] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [aux_sym_trait_declaration_token1] = ACTIONS(1314), - [aux_sym_interface_declaration_token1] = ACTIONS(1314), - [aux_sym_enum_declaration_token1] = ACTIONS(1314), - [aux_sym_enum_case_token1] = ACTIONS(1314), - [aux_sym_class_declaration_token1] = ACTIONS(1314), - [aux_sym_final_modifier_token1] = ACTIONS(1314), - [aux_sym_abstract_modifier_token1] = ACTIONS(1314), - [aux_sym_readonly_modifier_token1] = ACTIONS(1314), - [aux_sym_visibility_modifier_token1] = ACTIONS(1314), - [aux_sym_visibility_modifier_token2] = ACTIONS(1314), - [aux_sym_visibility_modifier_token3] = ACTIONS(1314), - [aux_sym__arrow_function_header_token1] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1312), - [aux_sym_cast_type_token1] = ACTIONS(1314), - [aux_sym_echo_statement_token1] = ACTIONS(1314), - [anon_sym_unset] = ACTIONS(1314), - [aux_sym_declare_statement_token1] = ACTIONS(1314), - [aux_sym_declare_statement_token2] = ACTIONS(1314), - [sym_float] = ACTIONS(1314), - [aux_sym_try_statement_token1] = ACTIONS(1314), - [aux_sym_goto_statement_token1] = ACTIONS(1314), - [aux_sym_continue_statement_token1] = ACTIONS(1314), - [aux_sym_break_statement_token1] = ACTIONS(1314), - [sym_integer] = ACTIONS(1314), - [aux_sym_return_statement_token1] = ACTIONS(1314), - [aux_sym_throw_expression_token1] = ACTIONS(1314), - [aux_sym_while_statement_token1] = ACTIONS(1314), - [aux_sym_while_statement_token2] = ACTIONS(1314), - [aux_sym_do_statement_token1] = ACTIONS(1314), - [aux_sym_for_statement_token1] = ACTIONS(1314), - [aux_sym_for_statement_token2] = ACTIONS(1314), - [aux_sym_foreach_statement_token1] = ACTIONS(1314), - [aux_sym_foreach_statement_token2] = ACTIONS(1314), - [aux_sym_if_statement_token1] = ACTIONS(1314), - [aux_sym_if_statement_token2] = ACTIONS(1314), - [aux_sym_else_if_clause_token1] = ACTIONS(1314), - [aux_sym_else_clause_token1] = ACTIONS(1314), - [aux_sym_match_expression_token1] = ACTIONS(1314), - [aux_sym_match_default_expression_token1] = ACTIONS(1314), - [aux_sym_switch_statement_token1] = ACTIONS(1314), - [aux_sym_switch_block_token1] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [aux_sym_clone_expression_token1] = ACTIONS(1314), - [aux_sym_print_intrinsic_token1] = ACTIONS(1314), - [aux_sym_object_creation_expression_token1] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [aux_sym__list_destructing_token1] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_self] = ACTIONS(1314), - [anon_sym_parent] = ACTIONS(1314), - [anon_sym_POUND_LBRACK] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [aux_sym_encapsed_string_token1] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [aux_sym_string_token1] = ACTIONS(1312), - [anon_sym_LT_LT_LT] = ACTIONS(1312), - [anon_sym_BQUOTE] = ACTIONS(1312), - [sym_boolean] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1312), - [aux_sym_yield_expression_token1] = ACTIONS(1314), - [aux_sym_include_expression_token1] = ACTIONS(1314), - [aux_sym_include_once_expression_token1] = ACTIONS(1314), - [aux_sym_require_expression_token1] = ACTIONS(1314), - [aux_sym_require_once_expression_token1] = ACTIONS(1314), - [sym_comment] = ACTIONS(5), - }, - [517] = { - [sym_text_interpolation] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_name] = ACTIONS(1318), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1316), - [aux_sym_function_static_declaration_token1] = ACTIONS(1318), - [aux_sym_global_declaration_token1] = ACTIONS(1318), - [aux_sym_namespace_definition_token1] = ACTIONS(1318), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1318), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1318), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1318), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [aux_sym_trait_declaration_token1] = ACTIONS(1318), - [aux_sym_interface_declaration_token1] = ACTIONS(1318), - [aux_sym_enum_declaration_token1] = ACTIONS(1318), - [aux_sym_enum_case_token1] = ACTIONS(1318), - [aux_sym_class_declaration_token1] = ACTIONS(1318), - [aux_sym_final_modifier_token1] = ACTIONS(1318), - [aux_sym_abstract_modifier_token1] = ACTIONS(1318), - [aux_sym_readonly_modifier_token1] = ACTIONS(1318), - [aux_sym_visibility_modifier_token1] = ACTIONS(1318), - [aux_sym_visibility_modifier_token2] = ACTIONS(1318), - [aux_sym_visibility_modifier_token3] = ACTIONS(1318), - [aux_sym__arrow_function_header_token1] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [aux_sym_cast_type_token1] = ACTIONS(1318), - [aux_sym_echo_statement_token1] = ACTIONS(1318), - [anon_sym_unset] = ACTIONS(1318), - [aux_sym_declare_statement_token1] = ACTIONS(1318), - [aux_sym_declare_statement_token2] = ACTIONS(1318), - [sym_float] = ACTIONS(1318), - [aux_sym_try_statement_token1] = ACTIONS(1318), - [aux_sym_goto_statement_token1] = ACTIONS(1318), - [aux_sym_continue_statement_token1] = ACTIONS(1318), - [aux_sym_break_statement_token1] = ACTIONS(1318), - [sym_integer] = ACTIONS(1318), - [aux_sym_return_statement_token1] = ACTIONS(1318), - [aux_sym_throw_expression_token1] = ACTIONS(1318), - [aux_sym_while_statement_token1] = ACTIONS(1318), - [aux_sym_while_statement_token2] = ACTIONS(1318), - [aux_sym_do_statement_token1] = ACTIONS(1318), - [aux_sym_for_statement_token1] = ACTIONS(1318), - [aux_sym_for_statement_token2] = ACTIONS(1318), - [aux_sym_foreach_statement_token1] = ACTIONS(1318), - [aux_sym_foreach_statement_token2] = ACTIONS(1318), - [aux_sym_if_statement_token1] = ACTIONS(1318), - [aux_sym_if_statement_token2] = ACTIONS(1318), - [aux_sym_else_if_clause_token1] = ACTIONS(1318), - [aux_sym_else_clause_token1] = ACTIONS(1318), - [aux_sym_match_expression_token1] = ACTIONS(1318), - [aux_sym_match_default_expression_token1] = ACTIONS(1318), - [aux_sym_switch_statement_token1] = ACTIONS(1318), - [aux_sym_switch_block_token1] = ACTIONS(1318), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [aux_sym_clone_expression_token1] = ACTIONS(1318), - [aux_sym_print_intrinsic_token1] = ACTIONS(1318), - [aux_sym_object_creation_expression_token1] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [aux_sym__list_destructing_token1] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_self] = ACTIONS(1318), - [anon_sym_parent] = ACTIONS(1318), - [anon_sym_POUND_LBRACK] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [aux_sym_encapsed_string_token1] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [aux_sym_string_token1] = ACTIONS(1316), - [anon_sym_LT_LT_LT] = ACTIONS(1316), - [anon_sym_BQUOTE] = ACTIONS(1316), - [sym_boolean] = ACTIONS(1318), - [sym_null] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1316), - [aux_sym_yield_expression_token1] = ACTIONS(1318), - [aux_sym_include_expression_token1] = ACTIONS(1318), - [aux_sym_include_once_expression_token1] = ACTIONS(1318), - [aux_sym_require_expression_token1] = ACTIONS(1318), - [aux_sym_require_once_expression_token1] = ACTIONS(1318), - [sym_comment] = ACTIONS(5), - }, - [518] = { - [sym_text_interpolation] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_name] = ACTIONS(1322), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1320), - [aux_sym_function_static_declaration_token1] = ACTIONS(1322), - [aux_sym_global_declaration_token1] = ACTIONS(1322), - [aux_sym_namespace_definition_token1] = ACTIONS(1322), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1322), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1322), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [aux_sym_trait_declaration_token1] = ACTIONS(1322), - [aux_sym_interface_declaration_token1] = ACTIONS(1322), - [aux_sym_enum_declaration_token1] = ACTIONS(1322), - [aux_sym_enum_case_token1] = ACTIONS(1322), - [aux_sym_class_declaration_token1] = ACTIONS(1322), - [aux_sym_final_modifier_token1] = ACTIONS(1322), - [aux_sym_abstract_modifier_token1] = ACTIONS(1322), - [aux_sym_readonly_modifier_token1] = ACTIONS(1322), - [aux_sym_visibility_modifier_token1] = ACTIONS(1322), - [aux_sym_visibility_modifier_token2] = ACTIONS(1322), - [aux_sym_visibility_modifier_token3] = ACTIONS(1322), - [aux_sym__arrow_function_header_token1] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1320), - [aux_sym_cast_type_token1] = ACTIONS(1322), - [aux_sym_echo_statement_token1] = ACTIONS(1322), - [anon_sym_unset] = ACTIONS(1322), - [aux_sym_declare_statement_token1] = ACTIONS(1322), - [aux_sym_declare_statement_token2] = ACTIONS(1322), - [sym_float] = ACTIONS(1322), - [aux_sym_try_statement_token1] = ACTIONS(1322), - [aux_sym_goto_statement_token1] = ACTIONS(1322), - [aux_sym_continue_statement_token1] = ACTIONS(1322), - [aux_sym_break_statement_token1] = ACTIONS(1322), - [sym_integer] = ACTIONS(1322), - [aux_sym_return_statement_token1] = ACTIONS(1322), - [aux_sym_throw_expression_token1] = ACTIONS(1322), - [aux_sym_while_statement_token1] = ACTIONS(1322), - [aux_sym_while_statement_token2] = ACTIONS(1322), - [aux_sym_do_statement_token1] = ACTIONS(1322), - [aux_sym_for_statement_token1] = ACTIONS(1322), - [aux_sym_for_statement_token2] = ACTIONS(1322), - [aux_sym_foreach_statement_token1] = ACTIONS(1322), - [aux_sym_foreach_statement_token2] = ACTIONS(1322), - [aux_sym_if_statement_token1] = ACTIONS(1322), - [aux_sym_if_statement_token2] = ACTIONS(1322), - [aux_sym_else_if_clause_token1] = ACTIONS(1322), - [aux_sym_else_clause_token1] = ACTIONS(1322), - [aux_sym_match_expression_token1] = ACTIONS(1322), - [aux_sym_match_default_expression_token1] = ACTIONS(1322), - [aux_sym_switch_statement_token1] = ACTIONS(1322), - [aux_sym_switch_block_token1] = ACTIONS(1322), - [anon_sym_AT] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [aux_sym_clone_expression_token1] = ACTIONS(1322), - [aux_sym_print_intrinsic_token1] = ACTIONS(1322), - [aux_sym_object_creation_expression_token1] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [aux_sym__list_destructing_token1] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_self] = ACTIONS(1322), - [anon_sym_parent] = ACTIONS(1322), - [anon_sym_POUND_LBRACK] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [aux_sym_encapsed_string_token1] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [aux_sym_string_token1] = ACTIONS(1320), - [anon_sym_LT_LT_LT] = ACTIONS(1320), - [anon_sym_BQUOTE] = ACTIONS(1320), - [sym_boolean] = ACTIONS(1322), - [sym_null] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1320), - [aux_sym_yield_expression_token1] = ACTIONS(1322), - [aux_sym_include_expression_token1] = ACTIONS(1322), - [aux_sym_include_once_expression_token1] = ACTIONS(1322), - [aux_sym_require_expression_token1] = ACTIONS(1322), - [aux_sym_require_once_expression_token1] = ACTIONS(1322), - [sym_comment] = ACTIONS(5), - }, - [519] = { - [sym_text_interpolation] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_name] = ACTIONS(1326), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1324), - [aux_sym_function_static_declaration_token1] = ACTIONS(1326), - [aux_sym_global_declaration_token1] = ACTIONS(1326), - [aux_sym_namespace_definition_token1] = ACTIONS(1326), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1326), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1326), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [aux_sym_trait_declaration_token1] = ACTIONS(1326), - [aux_sym_interface_declaration_token1] = ACTIONS(1326), - [aux_sym_enum_declaration_token1] = ACTIONS(1326), - [aux_sym_enum_case_token1] = ACTIONS(1326), - [aux_sym_class_declaration_token1] = ACTIONS(1326), - [aux_sym_final_modifier_token1] = ACTIONS(1326), - [aux_sym_abstract_modifier_token1] = ACTIONS(1326), - [aux_sym_readonly_modifier_token1] = ACTIONS(1326), - [aux_sym_visibility_modifier_token1] = ACTIONS(1326), - [aux_sym_visibility_modifier_token2] = ACTIONS(1326), - [aux_sym_visibility_modifier_token3] = ACTIONS(1326), - [aux_sym__arrow_function_header_token1] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1324), - [aux_sym_cast_type_token1] = ACTIONS(1326), - [aux_sym_echo_statement_token1] = ACTIONS(1326), - [anon_sym_unset] = ACTIONS(1326), - [aux_sym_declare_statement_token1] = ACTIONS(1326), - [aux_sym_declare_statement_token2] = ACTIONS(1326), - [sym_float] = ACTIONS(1326), - [aux_sym_try_statement_token1] = ACTIONS(1326), - [aux_sym_goto_statement_token1] = ACTIONS(1326), - [aux_sym_continue_statement_token1] = ACTIONS(1326), - [aux_sym_break_statement_token1] = ACTIONS(1326), - [sym_integer] = ACTIONS(1326), - [aux_sym_return_statement_token1] = ACTIONS(1326), - [aux_sym_throw_expression_token1] = ACTIONS(1326), - [aux_sym_while_statement_token1] = ACTIONS(1326), - [aux_sym_while_statement_token2] = ACTIONS(1326), - [aux_sym_do_statement_token1] = ACTIONS(1326), - [aux_sym_for_statement_token1] = ACTIONS(1326), - [aux_sym_for_statement_token2] = ACTIONS(1326), - [aux_sym_foreach_statement_token1] = ACTIONS(1326), - [aux_sym_foreach_statement_token2] = ACTIONS(1326), - [aux_sym_if_statement_token1] = ACTIONS(1326), - [aux_sym_if_statement_token2] = ACTIONS(1326), - [aux_sym_else_if_clause_token1] = ACTIONS(1326), - [aux_sym_else_clause_token1] = ACTIONS(1326), - [aux_sym_match_expression_token1] = ACTIONS(1326), - [aux_sym_match_default_expression_token1] = ACTIONS(1326), - [aux_sym_switch_statement_token1] = ACTIONS(1326), - [aux_sym_switch_block_token1] = ACTIONS(1326), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [aux_sym_clone_expression_token1] = ACTIONS(1326), - [aux_sym_print_intrinsic_token1] = ACTIONS(1326), - [aux_sym_object_creation_expression_token1] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [aux_sym__list_destructing_token1] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_self] = ACTIONS(1326), - [anon_sym_parent] = ACTIONS(1326), - [anon_sym_POUND_LBRACK] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [aux_sym_encapsed_string_token1] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [aux_sym_string_token1] = ACTIONS(1324), - [anon_sym_LT_LT_LT] = ACTIONS(1324), - [anon_sym_BQUOTE] = ACTIONS(1324), - [sym_boolean] = ACTIONS(1326), - [sym_null] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1324), - [aux_sym_yield_expression_token1] = ACTIONS(1326), - [aux_sym_include_expression_token1] = ACTIONS(1326), - [aux_sym_include_once_expression_token1] = ACTIONS(1326), - [aux_sym_require_expression_token1] = ACTIONS(1326), - [aux_sym_require_once_expression_token1] = ACTIONS(1326), - [sym_comment] = ACTIONS(5), - }, - [520] = { - [sym_text_interpolation] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_name] = ACTIONS(1330), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1328), - [aux_sym_function_static_declaration_token1] = ACTIONS(1330), - [aux_sym_global_declaration_token1] = ACTIONS(1330), - [aux_sym_namespace_definition_token1] = ACTIONS(1330), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1330), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1330), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1330), - [anon_sym_BSLASH] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [aux_sym_trait_declaration_token1] = ACTIONS(1330), - [aux_sym_interface_declaration_token1] = ACTIONS(1330), - [aux_sym_enum_declaration_token1] = ACTIONS(1330), - [aux_sym_enum_case_token1] = ACTIONS(1330), - [aux_sym_class_declaration_token1] = ACTIONS(1330), - [aux_sym_final_modifier_token1] = ACTIONS(1330), - [aux_sym_abstract_modifier_token1] = ACTIONS(1330), - [aux_sym_readonly_modifier_token1] = ACTIONS(1330), - [aux_sym_visibility_modifier_token1] = ACTIONS(1330), - [aux_sym_visibility_modifier_token2] = ACTIONS(1330), - [aux_sym_visibility_modifier_token3] = ACTIONS(1330), - [aux_sym__arrow_function_header_token1] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [aux_sym_cast_type_token1] = ACTIONS(1330), - [aux_sym_echo_statement_token1] = ACTIONS(1330), - [anon_sym_unset] = ACTIONS(1330), - [aux_sym_declare_statement_token1] = ACTIONS(1330), - [aux_sym_declare_statement_token2] = ACTIONS(1330), - [sym_float] = ACTIONS(1330), - [aux_sym_try_statement_token1] = ACTIONS(1330), - [aux_sym_goto_statement_token1] = ACTIONS(1330), - [aux_sym_continue_statement_token1] = ACTIONS(1330), - [aux_sym_break_statement_token1] = ACTIONS(1330), - [sym_integer] = ACTIONS(1330), - [aux_sym_return_statement_token1] = ACTIONS(1330), - [aux_sym_throw_expression_token1] = ACTIONS(1330), - [aux_sym_while_statement_token1] = ACTIONS(1330), - [aux_sym_while_statement_token2] = ACTIONS(1330), - [aux_sym_do_statement_token1] = ACTIONS(1330), - [aux_sym_for_statement_token1] = ACTIONS(1330), - [aux_sym_for_statement_token2] = ACTIONS(1330), - [aux_sym_foreach_statement_token1] = ACTIONS(1330), - [aux_sym_foreach_statement_token2] = ACTIONS(1330), - [aux_sym_if_statement_token1] = ACTIONS(1330), - [aux_sym_if_statement_token2] = ACTIONS(1330), - [aux_sym_else_if_clause_token1] = ACTIONS(1330), - [aux_sym_else_clause_token1] = ACTIONS(1330), - [aux_sym_match_expression_token1] = ACTIONS(1330), - [aux_sym_match_default_expression_token1] = ACTIONS(1330), - [aux_sym_switch_statement_token1] = ACTIONS(1330), - [aux_sym_switch_block_token1] = ACTIONS(1330), - [anon_sym_AT] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [aux_sym_clone_expression_token1] = ACTIONS(1330), - [aux_sym_print_intrinsic_token1] = ACTIONS(1330), - [aux_sym_object_creation_expression_token1] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [aux_sym__list_destructing_token1] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_self] = ACTIONS(1330), - [anon_sym_parent] = ACTIONS(1330), - [anon_sym_POUND_LBRACK] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [aux_sym_encapsed_string_token1] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [aux_sym_string_token1] = ACTIONS(1328), - [anon_sym_LT_LT_LT] = ACTIONS(1328), - [anon_sym_BQUOTE] = ACTIONS(1328), - [sym_boolean] = ACTIONS(1330), - [sym_null] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1328), - [aux_sym_yield_expression_token1] = ACTIONS(1330), - [aux_sym_include_expression_token1] = ACTIONS(1330), - [aux_sym_include_once_expression_token1] = ACTIONS(1330), - [aux_sym_require_expression_token1] = ACTIONS(1330), - [aux_sym_require_once_expression_token1] = ACTIONS(1330), - [sym_comment] = ACTIONS(5), - }, - [521] = { - [sym_text_interpolation] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(984), - [sym_name] = ACTIONS(986), - [anon_sym_QMARK_GT] = ACTIONS(18), - [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_enum_declaration_token1] = ACTIONS(986), - [aux_sym_enum_case_token1] = ACTIONS(986), - [aux_sym_class_declaration_token1] = ACTIONS(986), - [aux_sym_final_modifier_token1] = ACTIONS(986), - [aux_sym_abstract_modifier_token1] = ACTIONS(986), - [aux_sym_readonly_modifier_token1] = ACTIONS(986), - [aux_sym_visibility_modifier_token1] = ACTIONS(986), - [aux_sym_visibility_modifier_token2] = ACTIONS(986), - [aux_sym_visibility_modifier_token3] = ACTIONS(986), - [aux_sym__arrow_function_header_token1] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(984), - [aux_sym_cast_type_token1] = ACTIONS(986), - [aux_sym_echo_statement_token1] = ACTIONS(986), - [anon_sym_unset] = ACTIONS(986), - [aux_sym_declare_statement_token1] = ACTIONS(986), - [aux_sym_declare_statement_token2] = 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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(986), - [aux_sym_print_intrinsic_token1] = ACTIONS(986), - [aux_sym_object_creation_expression_token1] = ACTIONS(986), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(984), - [aux_sym__list_destructing_token1] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_self] = ACTIONS(986), - [anon_sym_parent] = ACTIONS(986), - [anon_sym_POUND_LBRACK] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [aux_sym_encapsed_string_token1] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [aux_sym_string_token1] = ACTIONS(984), - [anon_sym_LT_LT_LT] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [sym_boolean] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [aux_sym_yield_expression_token1] = ACTIONS(986), - [aux_sym_include_expression_token1] = ACTIONS(986), - [aux_sym_include_once_expression_token1] = ACTIONS(986), - [aux_sym_require_expression_token1] = ACTIONS(986), - [aux_sym_require_once_expression_token1] = ACTIONS(986), - [sym_comment] = ACTIONS(5), - }, - [522] = { - [sym_text_interpolation] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_name] = ACTIONS(1334), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1332), - [aux_sym_function_static_declaration_token1] = ACTIONS(1334), - [aux_sym_global_declaration_token1] = ACTIONS(1334), - [aux_sym_namespace_definition_token1] = ACTIONS(1334), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1334), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1334), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [aux_sym_trait_declaration_token1] = ACTIONS(1334), - [aux_sym_interface_declaration_token1] = ACTIONS(1334), - [aux_sym_enum_declaration_token1] = ACTIONS(1334), - [aux_sym_enum_case_token1] = ACTIONS(1334), - [aux_sym_class_declaration_token1] = ACTIONS(1334), - [aux_sym_final_modifier_token1] = ACTIONS(1334), - [aux_sym_abstract_modifier_token1] = ACTIONS(1334), - [aux_sym_readonly_modifier_token1] = ACTIONS(1334), - [aux_sym_visibility_modifier_token1] = ACTIONS(1334), - [aux_sym_visibility_modifier_token2] = ACTIONS(1334), - [aux_sym_visibility_modifier_token3] = ACTIONS(1334), - [aux_sym__arrow_function_header_token1] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1332), - [aux_sym_cast_type_token1] = ACTIONS(1334), - [aux_sym_echo_statement_token1] = ACTIONS(1334), - [anon_sym_unset] = ACTIONS(1334), - [aux_sym_declare_statement_token1] = ACTIONS(1334), - [aux_sym_declare_statement_token2] = ACTIONS(1334), - [sym_float] = ACTIONS(1334), - [aux_sym_try_statement_token1] = ACTIONS(1334), - [aux_sym_goto_statement_token1] = ACTIONS(1334), - [aux_sym_continue_statement_token1] = ACTIONS(1334), - [aux_sym_break_statement_token1] = ACTIONS(1334), - [sym_integer] = ACTIONS(1334), - [aux_sym_return_statement_token1] = ACTIONS(1334), - [aux_sym_throw_expression_token1] = ACTIONS(1334), - [aux_sym_while_statement_token1] = ACTIONS(1334), - [aux_sym_while_statement_token2] = ACTIONS(1334), - [aux_sym_do_statement_token1] = ACTIONS(1334), - [aux_sym_for_statement_token1] = ACTIONS(1334), - [aux_sym_for_statement_token2] = ACTIONS(1334), - [aux_sym_foreach_statement_token1] = ACTIONS(1334), - [aux_sym_foreach_statement_token2] = ACTIONS(1334), - [aux_sym_if_statement_token1] = ACTIONS(1334), - [aux_sym_if_statement_token2] = ACTIONS(1334), - [aux_sym_else_if_clause_token1] = ACTIONS(1334), - [aux_sym_else_clause_token1] = ACTIONS(1334), - [aux_sym_match_expression_token1] = ACTIONS(1334), - [aux_sym_match_default_expression_token1] = ACTIONS(1334), - [aux_sym_switch_statement_token1] = ACTIONS(1334), - [aux_sym_switch_block_token1] = ACTIONS(1334), - [anon_sym_AT] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [aux_sym_clone_expression_token1] = ACTIONS(1334), - [aux_sym_print_intrinsic_token1] = ACTIONS(1334), - [aux_sym_object_creation_expression_token1] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [aux_sym__list_destructing_token1] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_self] = ACTIONS(1334), - [anon_sym_parent] = ACTIONS(1334), - [anon_sym_POUND_LBRACK] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [aux_sym_encapsed_string_token1] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [aux_sym_string_token1] = ACTIONS(1332), - [anon_sym_LT_LT_LT] = ACTIONS(1332), - [anon_sym_BQUOTE] = ACTIONS(1332), - [sym_boolean] = ACTIONS(1334), - [sym_null] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1332), - [aux_sym_yield_expression_token1] = ACTIONS(1334), - [aux_sym_include_expression_token1] = ACTIONS(1334), - [aux_sym_include_once_expression_token1] = ACTIONS(1334), - [aux_sym_require_expression_token1] = ACTIONS(1334), - [aux_sym_require_once_expression_token1] = ACTIONS(1334), - [sym_comment] = ACTIONS(5), - }, - [523] = { - [sym_text_interpolation] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_name] = ACTIONS(1338), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1336), - [aux_sym_function_static_declaration_token1] = ACTIONS(1338), - [aux_sym_global_declaration_token1] = ACTIONS(1338), - [aux_sym_namespace_definition_token1] = ACTIONS(1338), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1338), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1338), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1338), - [anon_sym_BSLASH] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [aux_sym_trait_declaration_token1] = ACTIONS(1338), - [aux_sym_interface_declaration_token1] = ACTIONS(1338), - [aux_sym_enum_declaration_token1] = ACTIONS(1338), - [aux_sym_enum_case_token1] = ACTIONS(1338), - [aux_sym_class_declaration_token1] = ACTIONS(1338), - [aux_sym_final_modifier_token1] = ACTIONS(1338), - [aux_sym_abstract_modifier_token1] = ACTIONS(1338), - [aux_sym_readonly_modifier_token1] = ACTIONS(1338), - [aux_sym_visibility_modifier_token1] = ACTIONS(1338), - [aux_sym_visibility_modifier_token2] = ACTIONS(1338), - [aux_sym_visibility_modifier_token3] = ACTIONS(1338), - [aux_sym__arrow_function_header_token1] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1336), - [aux_sym_cast_type_token1] = ACTIONS(1338), - [aux_sym_echo_statement_token1] = ACTIONS(1338), - [anon_sym_unset] = ACTIONS(1338), - [aux_sym_declare_statement_token1] = ACTIONS(1338), - [aux_sym_declare_statement_token2] = ACTIONS(1338), - [sym_float] = ACTIONS(1338), - [aux_sym_try_statement_token1] = ACTIONS(1338), - [aux_sym_goto_statement_token1] = ACTIONS(1338), - [aux_sym_continue_statement_token1] = ACTIONS(1338), - [aux_sym_break_statement_token1] = ACTIONS(1338), - [sym_integer] = ACTIONS(1338), - [aux_sym_return_statement_token1] = ACTIONS(1338), - [aux_sym_throw_expression_token1] = ACTIONS(1338), - [aux_sym_while_statement_token1] = ACTIONS(1338), - [aux_sym_while_statement_token2] = ACTIONS(1338), - [aux_sym_do_statement_token1] = ACTIONS(1338), - [aux_sym_for_statement_token1] = ACTIONS(1338), - [aux_sym_for_statement_token2] = ACTIONS(1338), - [aux_sym_foreach_statement_token1] = ACTIONS(1338), - [aux_sym_foreach_statement_token2] = ACTIONS(1338), - [aux_sym_if_statement_token1] = ACTIONS(1338), - [aux_sym_if_statement_token2] = ACTIONS(1338), - [aux_sym_else_if_clause_token1] = ACTIONS(1338), - [aux_sym_else_clause_token1] = ACTIONS(1338), - [aux_sym_match_expression_token1] = ACTIONS(1338), - [aux_sym_match_default_expression_token1] = ACTIONS(1338), - [aux_sym_switch_statement_token1] = ACTIONS(1338), - [aux_sym_switch_block_token1] = ACTIONS(1338), - [anon_sym_AT] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [aux_sym_clone_expression_token1] = ACTIONS(1338), - [aux_sym_print_intrinsic_token1] = ACTIONS(1338), - [aux_sym_object_creation_expression_token1] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [aux_sym__list_destructing_token1] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_self] = ACTIONS(1338), - [anon_sym_parent] = ACTIONS(1338), - [anon_sym_POUND_LBRACK] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [aux_sym_encapsed_string_token1] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [aux_sym_string_token1] = ACTIONS(1336), - [anon_sym_LT_LT_LT] = ACTIONS(1336), - [anon_sym_BQUOTE] = ACTIONS(1336), - [sym_boolean] = ACTIONS(1338), - [sym_null] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1336), - [aux_sym_yield_expression_token1] = ACTIONS(1338), - [aux_sym_include_expression_token1] = ACTIONS(1338), - [aux_sym_include_once_expression_token1] = ACTIONS(1338), - [aux_sym_require_expression_token1] = ACTIONS(1338), - [aux_sym_require_once_expression_token1] = ACTIONS(1338), - [sym_comment] = ACTIONS(5), - }, - [524] = { - [sym_text_interpolation] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_name] = ACTIONS(1342), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1340), - [aux_sym_function_static_declaration_token1] = ACTIONS(1342), - [aux_sym_global_declaration_token1] = ACTIONS(1342), - [aux_sym_namespace_definition_token1] = ACTIONS(1342), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1342), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1342), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1342), - [anon_sym_BSLASH] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [aux_sym_trait_declaration_token1] = ACTIONS(1342), - [aux_sym_interface_declaration_token1] = ACTIONS(1342), - [aux_sym_enum_declaration_token1] = ACTIONS(1342), - [aux_sym_enum_case_token1] = ACTIONS(1342), - [aux_sym_class_declaration_token1] = ACTIONS(1342), - [aux_sym_final_modifier_token1] = ACTIONS(1342), - [aux_sym_abstract_modifier_token1] = ACTIONS(1342), - [aux_sym_readonly_modifier_token1] = ACTIONS(1342), - [aux_sym_visibility_modifier_token1] = ACTIONS(1342), - [aux_sym_visibility_modifier_token2] = ACTIONS(1342), - [aux_sym_visibility_modifier_token3] = ACTIONS(1342), - [aux_sym__arrow_function_header_token1] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [aux_sym_cast_type_token1] = ACTIONS(1342), - [aux_sym_echo_statement_token1] = ACTIONS(1342), - [anon_sym_unset] = ACTIONS(1342), - [aux_sym_declare_statement_token1] = ACTIONS(1342), - [aux_sym_declare_statement_token2] = ACTIONS(1342), - [sym_float] = ACTIONS(1342), - [aux_sym_try_statement_token1] = ACTIONS(1342), - [aux_sym_goto_statement_token1] = ACTIONS(1342), - [aux_sym_continue_statement_token1] = ACTIONS(1342), - [aux_sym_break_statement_token1] = ACTIONS(1342), - [sym_integer] = ACTIONS(1342), - [aux_sym_return_statement_token1] = ACTIONS(1342), - [aux_sym_throw_expression_token1] = ACTIONS(1342), - [aux_sym_while_statement_token1] = ACTIONS(1342), - [aux_sym_while_statement_token2] = ACTIONS(1342), - [aux_sym_do_statement_token1] = ACTIONS(1342), - [aux_sym_for_statement_token1] = ACTIONS(1342), - [aux_sym_for_statement_token2] = ACTIONS(1342), - [aux_sym_foreach_statement_token1] = ACTIONS(1342), - [aux_sym_foreach_statement_token2] = ACTIONS(1342), - [aux_sym_if_statement_token1] = ACTIONS(1342), - [aux_sym_if_statement_token2] = ACTIONS(1342), - [aux_sym_else_if_clause_token1] = ACTIONS(1342), - [aux_sym_else_clause_token1] = ACTIONS(1342), - [aux_sym_match_expression_token1] = ACTIONS(1342), - [aux_sym_match_default_expression_token1] = ACTIONS(1342), - [aux_sym_switch_statement_token1] = ACTIONS(1342), - [aux_sym_switch_block_token1] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [aux_sym_clone_expression_token1] = ACTIONS(1342), - [aux_sym_print_intrinsic_token1] = ACTIONS(1342), - [aux_sym_object_creation_expression_token1] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [aux_sym__list_destructing_token1] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_self] = ACTIONS(1342), - [anon_sym_parent] = ACTIONS(1342), - [anon_sym_POUND_LBRACK] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [aux_sym_encapsed_string_token1] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [aux_sym_string_token1] = ACTIONS(1340), - [anon_sym_LT_LT_LT] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [sym_boolean] = ACTIONS(1342), - [sym_null] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1340), - [aux_sym_yield_expression_token1] = ACTIONS(1342), - [aux_sym_include_expression_token1] = ACTIONS(1342), - [aux_sym_include_once_expression_token1] = ACTIONS(1342), - [aux_sym_require_expression_token1] = ACTIONS(1342), - [aux_sym_require_once_expression_token1] = ACTIONS(1342), - [sym_comment] = ACTIONS(5), - }, - [525] = { - [sym_text_interpolation] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_name] = ACTIONS(1346), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1344), - [aux_sym_function_static_declaration_token1] = ACTIONS(1346), - [aux_sym_global_declaration_token1] = ACTIONS(1346), - [aux_sym_namespace_definition_token1] = ACTIONS(1346), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1346), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1346), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1346), - [anon_sym_BSLASH] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [aux_sym_trait_declaration_token1] = ACTIONS(1346), - [aux_sym_interface_declaration_token1] = ACTIONS(1346), - [aux_sym_enum_declaration_token1] = ACTIONS(1346), - [aux_sym_enum_case_token1] = ACTIONS(1346), - [aux_sym_class_declaration_token1] = ACTIONS(1346), - [aux_sym_final_modifier_token1] = ACTIONS(1346), - [aux_sym_abstract_modifier_token1] = ACTIONS(1346), - [aux_sym_readonly_modifier_token1] = ACTIONS(1346), - [aux_sym_visibility_modifier_token1] = ACTIONS(1346), - [aux_sym_visibility_modifier_token2] = ACTIONS(1346), - [aux_sym_visibility_modifier_token3] = ACTIONS(1346), - [aux_sym__arrow_function_header_token1] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1344), - [aux_sym_cast_type_token1] = ACTIONS(1346), - [aux_sym_echo_statement_token1] = ACTIONS(1346), - [anon_sym_unset] = ACTIONS(1346), - [aux_sym_declare_statement_token1] = ACTIONS(1346), - [aux_sym_declare_statement_token2] = ACTIONS(1346), - [sym_float] = ACTIONS(1346), - [aux_sym_try_statement_token1] = ACTIONS(1346), - [aux_sym_goto_statement_token1] = ACTIONS(1346), - [aux_sym_continue_statement_token1] = ACTIONS(1346), - [aux_sym_break_statement_token1] = ACTIONS(1346), - [sym_integer] = ACTIONS(1346), - [aux_sym_return_statement_token1] = ACTIONS(1346), - [aux_sym_throw_expression_token1] = ACTIONS(1346), - [aux_sym_while_statement_token1] = ACTIONS(1346), - [aux_sym_while_statement_token2] = ACTIONS(1346), - [aux_sym_do_statement_token1] = ACTIONS(1346), - [aux_sym_for_statement_token1] = ACTIONS(1346), - [aux_sym_for_statement_token2] = ACTIONS(1346), - [aux_sym_foreach_statement_token1] = ACTIONS(1346), - [aux_sym_foreach_statement_token2] = ACTIONS(1346), - [aux_sym_if_statement_token1] = ACTIONS(1346), - [aux_sym_if_statement_token2] = ACTIONS(1346), - [aux_sym_else_if_clause_token1] = ACTIONS(1346), - [aux_sym_else_clause_token1] = ACTIONS(1346), - [aux_sym_match_expression_token1] = ACTIONS(1346), - [aux_sym_match_default_expression_token1] = ACTIONS(1346), - [aux_sym_switch_statement_token1] = ACTIONS(1346), - [aux_sym_switch_block_token1] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [aux_sym_clone_expression_token1] = ACTIONS(1346), - [aux_sym_print_intrinsic_token1] = ACTIONS(1346), - [aux_sym_object_creation_expression_token1] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [aux_sym__list_destructing_token1] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_self] = ACTIONS(1346), - [anon_sym_parent] = ACTIONS(1346), - [anon_sym_POUND_LBRACK] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [aux_sym_encapsed_string_token1] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [aux_sym_string_token1] = ACTIONS(1344), - [anon_sym_LT_LT_LT] = ACTIONS(1344), - [anon_sym_BQUOTE] = ACTIONS(1344), - [sym_boolean] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1344), - [aux_sym_yield_expression_token1] = ACTIONS(1346), - [aux_sym_include_expression_token1] = ACTIONS(1346), - [aux_sym_include_once_expression_token1] = ACTIONS(1346), - [aux_sym_require_expression_token1] = ACTIONS(1346), - [aux_sym_require_once_expression_token1] = ACTIONS(1346), - [sym_comment] = ACTIONS(5), - }, - [526] = { - [sym_text_interpolation] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_name] = ACTIONS(1350), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1348), - [aux_sym_function_static_declaration_token1] = ACTIONS(1350), - [aux_sym_global_declaration_token1] = ACTIONS(1350), - [aux_sym_namespace_definition_token1] = ACTIONS(1350), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1350), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1350), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1350), - [anon_sym_BSLASH] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [aux_sym_trait_declaration_token1] = ACTIONS(1350), - [aux_sym_interface_declaration_token1] = ACTIONS(1350), - [aux_sym_enum_declaration_token1] = ACTIONS(1350), - [aux_sym_enum_case_token1] = ACTIONS(1350), - [aux_sym_class_declaration_token1] = ACTIONS(1350), - [aux_sym_final_modifier_token1] = ACTIONS(1350), - [aux_sym_abstract_modifier_token1] = ACTIONS(1350), - [aux_sym_readonly_modifier_token1] = ACTIONS(1350), - [aux_sym_visibility_modifier_token1] = ACTIONS(1350), - [aux_sym_visibility_modifier_token2] = ACTIONS(1350), - [aux_sym_visibility_modifier_token3] = ACTIONS(1350), - [aux_sym__arrow_function_header_token1] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1348), - [aux_sym_cast_type_token1] = ACTIONS(1350), - [aux_sym_echo_statement_token1] = ACTIONS(1350), - [anon_sym_unset] = ACTIONS(1350), - [aux_sym_declare_statement_token1] = ACTIONS(1350), - [aux_sym_declare_statement_token2] = ACTIONS(1350), - [sym_float] = ACTIONS(1350), - [aux_sym_try_statement_token1] = ACTIONS(1350), - [aux_sym_goto_statement_token1] = ACTIONS(1350), - [aux_sym_continue_statement_token1] = ACTIONS(1350), - [aux_sym_break_statement_token1] = ACTIONS(1350), - [sym_integer] = ACTIONS(1350), - [aux_sym_return_statement_token1] = ACTIONS(1350), - [aux_sym_throw_expression_token1] = ACTIONS(1350), - [aux_sym_while_statement_token1] = ACTIONS(1350), - [aux_sym_while_statement_token2] = ACTIONS(1350), - [aux_sym_do_statement_token1] = ACTIONS(1350), - [aux_sym_for_statement_token1] = ACTIONS(1350), - [aux_sym_for_statement_token2] = ACTIONS(1350), - [aux_sym_foreach_statement_token1] = ACTIONS(1350), - [aux_sym_foreach_statement_token2] = ACTIONS(1350), - [aux_sym_if_statement_token1] = ACTIONS(1350), - [aux_sym_if_statement_token2] = ACTIONS(1350), - [aux_sym_else_if_clause_token1] = ACTIONS(1350), - [aux_sym_else_clause_token1] = ACTIONS(1350), - [aux_sym_match_expression_token1] = ACTIONS(1350), - [aux_sym_match_default_expression_token1] = ACTIONS(1350), - [aux_sym_switch_statement_token1] = ACTIONS(1350), - [aux_sym_switch_block_token1] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [aux_sym_clone_expression_token1] = ACTIONS(1350), - [aux_sym_print_intrinsic_token1] = ACTIONS(1350), - [aux_sym_object_creation_expression_token1] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [aux_sym__list_destructing_token1] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_self] = ACTIONS(1350), - [anon_sym_parent] = ACTIONS(1350), - [anon_sym_POUND_LBRACK] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [aux_sym_encapsed_string_token1] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [aux_sym_string_token1] = ACTIONS(1348), - [anon_sym_LT_LT_LT] = ACTIONS(1348), - [anon_sym_BQUOTE] = ACTIONS(1348), - [sym_boolean] = ACTIONS(1350), - [sym_null] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1348), - [aux_sym_yield_expression_token1] = ACTIONS(1350), - [aux_sym_include_expression_token1] = ACTIONS(1350), - [aux_sym_include_once_expression_token1] = ACTIONS(1350), - [aux_sym_require_expression_token1] = ACTIONS(1350), - [aux_sym_require_once_expression_token1] = ACTIONS(1350), - [sym_comment] = ACTIONS(5), - }, - [527] = { - [sym_text_interpolation] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_name] = ACTIONS(1354), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1352), - [aux_sym_function_static_declaration_token1] = ACTIONS(1354), - [aux_sym_global_declaration_token1] = ACTIONS(1354), - [aux_sym_namespace_definition_token1] = ACTIONS(1354), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1354), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1354), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [aux_sym_trait_declaration_token1] = ACTIONS(1354), - [aux_sym_interface_declaration_token1] = ACTIONS(1354), - [aux_sym_enum_declaration_token1] = ACTIONS(1354), - [aux_sym_enum_case_token1] = ACTIONS(1354), - [aux_sym_class_declaration_token1] = ACTIONS(1354), - [aux_sym_final_modifier_token1] = ACTIONS(1354), - [aux_sym_abstract_modifier_token1] = ACTIONS(1354), - [aux_sym_readonly_modifier_token1] = ACTIONS(1354), - [aux_sym_visibility_modifier_token1] = ACTIONS(1354), - [aux_sym_visibility_modifier_token2] = ACTIONS(1354), - [aux_sym_visibility_modifier_token3] = ACTIONS(1354), - [aux_sym__arrow_function_header_token1] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1352), - [aux_sym_cast_type_token1] = ACTIONS(1354), - [aux_sym_echo_statement_token1] = ACTIONS(1354), - [anon_sym_unset] = ACTIONS(1354), - [aux_sym_declare_statement_token1] = ACTIONS(1354), - [aux_sym_declare_statement_token2] = ACTIONS(1354), - [sym_float] = ACTIONS(1354), - [aux_sym_try_statement_token1] = ACTIONS(1354), - [aux_sym_goto_statement_token1] = ACTIONS(1354), - [aux_sym_continue_statement_token1] = ACTIONS(1354), - [aux_sym_break_statement_token1] = ACTIONS(1354), - [sym_integer] = ACTIONS(1354), - [aux_sym_return_statement_token1] = ACTIONS(1354), - [aux_sym_throw_expression_token1] = ACTIONS(1354), - [aux_sym_while_statement_token1] = ACTIONS(1354), - [aux_sym_while_statement_token2] = ACTIONS(1354), - [aux_sym_do_statement_token1] = ACTIONS(1354), - [aux_sym_for_statement_token1] = ACTIONS(1354), - [aux_sym_for_statement_token2] = ACTIONS(1354), - [aux_sym_foreach_statement_token1] = ACTIONS(1354), - [aux_sym_foreach_statement_token2] = ACTIONS(1354), - [aux_sym_if_statement_token1] = ACTIONS(1354), - [aux_sym_if_statement_token2] = ACTIONS(1354), - [aux_sym_else_if_clause_token1] = ACTIONS(1354), - [aux_sym_else_clause_token1] = ACTIONS(1354), - [aux_sym_match_expression_token1] = ACTIONS(1354), - [aux_sym_match_default_expression_token1] = ACTIONS(1354), - [aux_sym_switch_statement_token1] = ACTIONS(1354), - [aux_sym_switch_block_token1] = ACTIONS(1354), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [aux_sym_clone_expression_token1] = ACTIONS(1354), - [aux_sym_print_intrinsic_token1] = ACTIONS(1354), - [aux_sym_object_creation_expression_token1] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [aux_sym__list_destructing_token1] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_self] = ACTIONS(1354), - [anon_sym_parent] = ACTIONS(1354), - [anon_sym_POUND_LBRACK] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [aux_sym_encapsed_string_token1] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [aux_sym_string_token1] = ACTIONS(1352), - [anon_sym_LT_LT_LT] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [sym_boolean] = ACTIONS(1354), - [sym_null] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1352), - [aux_sym_yield_expression_token1] = ACTIONS(1354), - [aux_sym_include_expression_token1] = ACTIONS(1354), - [aux_sym_include_once_expression_token1] = ACTIONS(1354), - [aux_sym_require_expression_token1] = ACTIONS(1354), - [aux_sym_require_once_expression_token1] = ACTIONS(1354), - [sym_comment] = ACTIONS(5), - }, - [528] = { - [sym_text_interpolation] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_name] = ACTIONS(1358), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1356), - [aux_sym_function_static_declaration_token1] = ACTIONS(1358), - [aux_sym_global_declaration_token1] = ACTIONS(1358), - [aux_sym_namespace_definition_token1] = ACTIONS(1358), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1358), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1358), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1358), - [anon_sym_BSLASH] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [aux_sym_trait_declaration_token1] = ACTIONS(1358), - [aux_sym_interface_declaration_token1] = ACTIONS(1358), - [aux_sym_enum_declaration_token1] = ACTIONS(1358), - [aux_sym_enum_case_token1] = ACTIONS(1358), - [aux_sym_class_declaration_token1] = ACTIONS(1358), - [aux_sym_final_modifier_token1] = ACTIONS(1358), - [aux_sym_abstract_modifier_token1] = ACTIONS(1358), - [aux_sym_readonly_modifier_token1] = ACTIONS(1358), - [aux_sym_visibility_modifier_token1] = ACTIONS(1358), - [aux_sym_visibility_modifier_token2] = ACTIONS(1358), - [aux_sym_visibility_modifier_token3] = ACTIONS(1358), - [aux_sym__arrow_function_header_token1] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1356), - [aux_sym_cast_type_token1] = ACTIONS(1358), - [aux_sym_echo_statement_token1] = ACTIONS(1358), - [anon_sym_unset] = ACTIONS(1358), - [aux_sym_declare_statement_token1] = ACTIONS(1358), - [aux_sym_declare_statement_token2] = ACTIONS(1358), - [sym_float] = ACTIONS(1358), - [aux_sym_try_statement_token1] = ACTIONS(1358), - [aux_sym_goto_statement_token1] = ACTIONS(1358), - [aux_sym_continue_statement_token1] = ACTIONS(1358), - [aux_sym_break_statement_token1] = ACTIONS(1358), - [sym_integer] = ACTIONS(1358), - [aux_sym_return_statement_token1] = ACTIONS(1358), - [aux_sym_throw_expression_token1] = ACTIONS(1358), - [aux_sym_while_statement_token1] = ACTIONS(1358), - [aux_sym_while_statement_token2] = ACTIONS(1358), - [aux_sym_do_statement_token1] = ACTIONS(1358), - [aux_sym_for_statement_token1] = ACTIONS(1358), - [aux_sym_for_statement_token2] = ACTIONS(1358), - [aux_sym_foreach_statement_token1] = ACTIONS(1358), - [aux_sym_foreach_statement_token2] = ACTIONS(1358), - [aux_sym_if_statement_token1] = ACTIONS(1358), - [aux_sym_if_statement_token2] = ACTIONS(1358), - [aux_sym_else_if_clause_token1] = ACTIONS(1358), - [aux_sym_else_clause_token1] = ACTIONS(1358), - [aux_sym_match_expression_token1] = ACTIONS(1358), - [aux_sym_match_default_expression_token1] = ACTIONS(1358), - [aux_sym_switch_statement_token1] = ACTIONS(1358), - [aux_sym_switch_block_token1] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [aux_sym_clone_expression_token1] = ACTIONS(1358), - [aux_sym_print_intrinsic_token1] = ACTIONS(1358), - [aux_sym_object_creation_expression_token1] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [aux_sym__list_destructing_token1] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_self] = ACTIONS(1358), - [anon_sym_parent] = ACTIONS(1358), - [anon_sym_POUND_LBRACK] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [aux_sym_encapsed_string_token1] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [aux_sym_string_token1] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_boolean] = ACTIONS(1358), - [sym_null] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1356), - [aux_sym_yield_expression_token1] = ACTIONS(1358), - [aux_sym_include_expression_token1] = ACTIONS(1358), - [aux_sym_include_once_expression_token1] = ACTIONS(1358), - [aux_sym_require_expression_token1] = ACTIONS(1358), - [aux_sym_require_once_expression_token1] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - }, - [529] = { - [sym_text_interpolation] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_name] = ACTIONS(1362), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1360), - [aux_sym_function_static_declaration_token1] = ACTIONS(1362), - [aux_sym_global_declaration_token1] = ACTIONS(1362), - [aux_sym_namespace_definition_token1] = ACTIONS(1362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1362), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1362), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1362), - [anon_sym_BSLASH] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [aux_sym_trait_declaration_token1] = ACTIONS(1362), - [aux_sym_interface_declaration_token1] = ACTIONS(1362), - [aux_sym_enum_declaration_token1] = ACTIONS(1362), - [aux_sym_enum_case_token1] = ACTIONS(1362), - [aux_sym_class_declaration_token1] = ACTIONS(1362), - [aux_sym_final_modifier_token1] = ACTIONS(1362), - [aux_sym_abstract_modifier_token1] = ACTIONS(1362), - [aux_sym_readonly_modifier_token1] = ACTIONS(1362), - [aux_sym_visibility_modifier_token1] = ACTIONS(1362), - [aux_sym_visibility_modifier_token2] = ACTIONS(1362), - [aux_sym_visibility_modifier_token3] = ACTIONS(1362), - [aux_sym__arrow_function_header_token1] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1360), - [aux_sym_cast_type_token1] = ACTIONS(1362), - [aux_sym_echo_statement_token1] = ACTIONS(1362), - [anon_sym_unset] = ACTIONS(1362), - [aux_sym_declare_statement_token1] = ACTIONS(1362), - [aux_sym_declare_statement_token2] = ACTIONS(1362), - [sym_float] = ACTIONS(1362), - [aux_sym_try_statement_token1] = ACTIONS(1362), - [aux_sym_goto_statement_token1] = ACTIONS(1362), - [aux_sym_continue_statement_token1] = ACTIONS(1362), - [aux_sym_break_statement_token1] = ACTIONS(1362), - [sym_integer] = ACTIONS(1362), - [aux_sym_return_statement_token1] = ACTIONS(1362), - [aux_sym_throw_expression_token1] = ACTIONS(1362), - [aux_sym_while_statement_token1] = ACTIONS(1362), - [aux_sym_while_statement_token2] = ACTIONS(1362), - [aux_sym_do_statement_token1] = ACTIONS(1362), - [aux_sym_for_statement_token1] = ACTIONS(1362), - [aux_sym_for_statement_token2] = ACTIONS(1362), - [aux_sym_foreach_statement_token1] = ACTIONS(1362), - [aux_sym_foreach_statement_token2] = ACTIONS(1362), - [aux_sym_if_statement_token1] = ACTIONS(1362), - [aux_sym_if_statement_token2] = ACTIONS(1362), - [aux_sym_else_if_clause_token1] = ACTIONS(1362), - [aux_sym_else_clause_token1] = ACTIONS(1362), - [aux_sym_match_expression_token1] = ACTIONS(1362), - [aux_sym_match_default_expression_token1] = ACTIONS(1362), - [aux_sym_switch_statement_token1] = ACTIONS(1362), - [aux_sym_switch_block_token1] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [aux_sym_clone_expression_token1] = ACTIONS(1362), - [aux_sym_print_intrinsic_token1] = ACTIONS(1362), - [aux_sym_object_creation_expression_token1] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [aux_sym__list_destructing_token1] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_self] = ACTIONS(1362), - [anon_sym_parent] = ACTIONS(1362), - [anon_sym_POUND_LBRACK] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [aux_sym_encapsed_string_token1] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [aux_sym_string_token1] = ACTIONS(1360), - [anon_sym_LT_LT_LT] = ACTIONS(1360), - [anon_sym_BQUOTE] = ACTIONS(1360), - [sym_boolean] = ACTIONS(1362), - [sym_null] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1360), - [aux_sym_yield_expression_token1] = ACTIONS(1362), - [aux_sym_include_expression_token1] = ACTIONS(1362), - [aux_sym_include_once_expression_token1] = ACTIONS(1362), - [aux_sym_require_expression_token1] = ACTIONS(1362), - [aux_sym_require_once_expression_token1] = ACTIONS(1362), - [sym_comment] = ACTIONS(5), - }, - [530] = { - [sym_text_interpolation] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_name] = ACTIONS(1366), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1364), - [aux_sym_function_static_declaration_token1] = ACTIONS(1366), - [aux_sym_global_declaration_token1] = ACTIONS(1366), - [aux_sym_namespace_definition_token1] = ACTIONS(1366), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1366), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1366), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1366), - [anon_sym_BSLASH] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [aux_sym_trait_declaration_token1] = ACTIONS(1366), - [aux_sym_interface_declaration_token1] = ACTIONS(1366), - [aux_sym_enum_declaration_token1] = ACTIONS(1366), - [aux_sym_enum_case_token1] = ACTIONS(1366), - [aux_sym_class_declaration_token1] = ACTIONS(1366), - [aux_sym_final_modifier_token1] = ACTIONS(1366), - [aux_sym_abstract_modifier_token1] = ACTIONS(1366), - [aux_sym_readonly_modifier_token1] = ACTIONS(1366), - [aux_sym_visibility_modifier_token1] = ACTIONS(1366), - [aux_sym_visibility_modifier_token2] = ACTIONS(1366), - [aux_sym_visibility_modifier_token3] = ACTIONS(1366), - [aux_sym__arrow_function_header_token1] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1364), - [aux_sym_cast_type_token1] = ACTIONS(1366), - [aux_sym_echo_statement_token1] = ACTIONS(1366), - [anon_sym_unset] = ACTIONS(1366), - [aux_sym_declare_statement_token1] = ACTIONS(1366), - [aux_sym_declare_statement_token2] = ACTIONS(1366), - [sym_float] = ACTIONS(1366), - [aux_sym_try_statement_token1] = ACTIONS(1366), - [aux_sym_goto_statement_token1] = ACTIONS(1366), - [aux_sym_continue_statement_token1] = ACTIONS(1366), - [aux_sym_break_statement_token1] = ACTIONS(1366), - [sym_integer] = ACTIONS(1366), - [aux_sym_return_statement_token1] = ACTIONS(1366), - [aux_sym_throw_expression_token1] = ACTIONS(1366), - [aux_sym_while_statement_token1] = ACTIONS(1366), - [aux_sym_while_statement_token2] = ACTIONS(1366), - [aux_sym_do_statement_token1] = ACTIONS(1366), - [aux_sym_for_statement_token1] = ACTIONS(1366), - [aux_sym_for_statement_token2] = ACTIONS(1366), - [aux_sym_foreach_statement_token1] = ACTIONS(1366), - [aux_sym_foreach_statement_token2] = ACTIONS(1366), - [aux_sym_if_statement_token1] = ACTIONS(1366), - [aux_sym_if_statement_token2] = ACTIONS(1366), - [aux_sym_else_if_clause_token1] = ACTIONS(1366), - [aux_sym_else_clause_token1] = ACTIONS(1366), - [aux_sym_match_expression_token1] = ACTIONS(1366), - [aux_sym_match_default_expression_token1] = ACTIONS(1366), - [aux_sym_switch_statement_token1] = ACTIONS(1366), - [aux_sym_switch_block_token1] = ACTIONS(1366), - [anon_sym_AT] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [aux_sym_clone_expression_token1] = ACTIONS(1366), - [aux_sym_print_intrinsic_token1] = ACTIONS(1366), - [aux_sym_object_creation_expression_token1] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [aux_sym__list_destructing_token1] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_self] = ACTIONS(1366), - [anon_sym_parent] = ACTIONS(1366), - [anon_sym_POUND_LBRACK] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [aux_sym_encapsed_string_token1] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [aux_sym_string_token1] = ACTIONS(1364), - [anon_sym_LT_LT_LT] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_boolean] = ACTIONS(1366), - [sym_null] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1364), - [aux_sym_yield_expression_token1] = ACTIONS(1366), - [aux_sym_include_expression_token1] = ACTIONS(1366), - [aux_sym_include_once_expression_token1] = ACTIONS(1366), - [aux_sym_require_expression_token1] = ACTIONS(1366), - [aux_sym_require_once_expression_token1] = ACTIONS(1366), - [sym_comment] = ACTIONS(5), - }, - [531] = { - [sym_text_interpolation] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_name] = ACTIONS(1370), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1368), - [aux_sym_function_static_declaration_token1] = ACTIONS(1370), - [aux_sym_global_declaration_token1] = ACTIONS(1370), - [aux_sym_namespace_definition_token1] = ACTIONS(1370), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1370), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1370), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1370), - [anon_sym_BSLASH] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [aux_sym_trait_declaration_token1] = ACTIONS(1370), - [aux_sym_interface_declaration_token1] = ACTIONS(1370), - [aux_sym_enum_declaration_token1] = ACTIONS(1370), - [aux_sym_enum_case_token1] = ACTIONS(1370), - [aux_sym_class_declaration_token1] = ACTIONS(1370), - [aux_sym_final_modifier_token1] = ACTIONS(1370), - [aux_sym_abstract_modifier_token1] = ACTIONS(1370), - [aux_sym_readonly_modifier_token1] = ACTIONS(1370), - [aux_sym_visibility_modifier_token1] = ACTIONS(1370), - [aux_sym_visibility_modifier_token2] = ACTIONS(1370), - [aux_sym_visibility_modifier_token3] = ACTIONS(1370), - [aux_sym__arrow_function_header_token1] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [aux_sym_cast_type_token1] = ACTIONS(1370), - [aux_sym_echo_statement_token1] = ACTIONS(1370), - [anon_sym_unset] = ACTIONS(1370), - [aux_sym_declare_statement_token1] = ACTIONS(1370), - [aux_sym_declare_statement_token2] = ACTIONS(1370), - [sym_float] = ACTIONS(1370), - [aux_sym_try_statement_token1] = ACTIONS(1370), - [aux_sym_goto_statement_token1] = ACTIONS(1370), - [aux_sym_continue_statement_token1] = ACTIONS(1370), - [aux_sym_break_statement_token1] = ACTIONS(1370), - [sym_integer] = ACTIONS(1370), - [aux_sym_return_statement_token1] = ACTIONS(1370), - [aux_sym_throw_expression_token1] = ACTIONS(1370), - [aux_sym_while_statement_token1] = ACTIONS(1370), - [aux_sym_while_statement_token2] = ACTIONS(1370), - [aux_sym_do_statement_token1] = ACTIONS(1370), - [aux_sym_for_statement_token1] = ACTIONS(1370), - [aux_sym_for_statement_token2] = ACTIONS(1370), - [aux_sym_foreach_statement_token1] = ACTIONS(1370), - [aux_sym_foreach_statement_token2] = ACTIONS(1370), - [aux_sym_if_statement_token1] = ACTIONS(1370), - [aux_sym_if_statement_token2] = ACTIONS(1370), - [aux_sym_else_if_clause_token1] = ACTIONS(1370), - [aux_sym_else_clause_token1] = ACTIONS(1370), - [aux_sym_match_expression_token1] = ACTIONS(1370), - [aux_sym_match_default_expression_token1] = ACTIONS(1370), - [aux_sym_switch_statement_token1] = ACTIONS(1370), - [aux_sym_switch_block_token1] = ACTIONS(1370), - [anon_sym_AT] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [aux_sym_clone_expression_token1] = ACTIONS(1370), - [aux_sym_print_intrinsic_token1] = ACTIONS(1370), - [aux_sym_object_creation_expression_token1] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [aux_sym__list_destructing_token1] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_self] = ACTIONS(1370), - [anon_sym_parent] = ACTIONS(1370), - [anon_sym_POUND_LBRACK] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [aux_sym_encapsed_string_token1] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [aux_sym_string_token1] = ACTIONS(1368), - [anon_sym_LT_LT_LT] = ACTIONS(1368), - [anon_sym_BQUOTE] = ACTIONS(1368), - [sym_boolean] = ACTIONS(1370), - [sym_null] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [aux_sym_yield_expression_token1] = ACTIONS(1370), - [aux_sym_include_expression_token1] = ACTIONS(1370), - [aux_sym_include_once_expression_token1] = ACTIONS(1370), - [aux_sym_require_expression_token1] = ACTIONS(1370), - [aux_sym_require_once_expression_token1] = ACTIONS(1370), - [sym_comment] = ACTIONS(5), - }, - [532] = { - [sym_text_interpolation] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_name] = ACTIONS(1374), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1372), - [aux_sym_function_static_declaration_token1] = ACTIONS(1374), - [aux_sym_global_declaration_token1] = ACTIONS(1374), - [aux_sym_namespace_definition_token1] = ACTIONS(1374), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1374), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1374), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1374), - [anon_sym_BSLASH] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [aux_sym_trait_declaration_token1] = ACTIONS(1374), - [aux_sym_interface_declaration_token1] = ACTIONS(1374), - [aux_sym_enum_declaration_token1] = ACTIONS(1374), - [aux_sym_enum_case_token1] = ACTIONS(1374), - [aux_sym_class_declaration_token1] = ACTIONS(1374), - [aux_sym_final_modifier_token1] = ACTIONS(1374), - [aux_sym_abstract_modifier_token1] = ACTIONS(1374), - [aux_sym_readonly_modifier_token1] = ACTIONS(1374), - [aux_sym_visibility_modifier_token1] = ACTIONS(1374), - [aux_sym_visibility_modifier_token2] = ACTIONS(1374), - [aux_sym_visibility_modifier_token3] = ACTIONS(1374), - [aux_sym__arrow_function_header_token1] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1372), - [aux_sym_cast_type_token1] = ACTIONS(1374), - [aux_sym_echo_statement_token1] = ACTIONS(1374), - [anon_sym_unset] = ACTIONS(1374), - [aux_sym_declare_statement_token1] = ACTIONS(1374), - [aux_sym_declare_statement_token2] = ACTIONS(1374), - [sym_float] = ACTIONS(1374), - [aux_sym_try_statement_token1] = ACTIONS(1374), - [aux_sym_goto_statement_token1] = ACTIONS(1374), - [aux_sym_continue_statement_token1] = ACTIONS(1374), - [aux_sym_break_statement_token1] = ACTIONS(1374), - [sym_integer] = ACTIONS(1374), - [aux_sym_return_statement_token1] = ACTIONS(1374), - [aux_sym_throw_expression_token1] = ACTIONS(1374), - [aux_sym_while_statement_token1] = ACTIONS(1374), - [aux_sym_while_statement_token2] = ACTIONS(1374), - [aux_sym_do_statement_token1] = ACTIONS(1374), - [aux_sym_for_statement_token1] = ACTIONS(1374), - [aux_sym_for_statement_token2] = ACTIONS(1374), - [aux_sym_foreach_statement_token1] = ACTIONS(1374), - [aux_sym_foreach_statement_token2] = ACTIONS(1374), - [aux_sym_if_statement_token1] = ACTIONS(1374), - [aux_sym_if_statement_token2] = ACTIONS(1374), - [aux_sym_else_if_clause_token1] = ACTIONS(1374), - [aux_sym_else_clause_token1] = ACTIONS(1374), - [aux_sym_match_expression_token1] = ACTIONS(1374), - [aux_sym_match_default_expression_token1] = ACTIONS(1374), - [aux_sym_switch_statement_token1] = ACTIONS(1374), - [aux_sym_switch_block_token1] = ACTIONS(1374), - [anon_sym_AT] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [aux_sym_clone_expression_token1] = ACTIONS(1374), - [aux_sym_print_intrinsic_token1] = ACTIONS(1374), - [aux_sym_object_creation_expression_token1] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [aux_sym__list_destructing_token1] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_self] = ACTIONS(1374), - [anon_sym_parent] = ACTIONS(1374), - [anon_sym_POUND_LBRACK] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [aux_sym_encapsed_string_token1] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [aux_sym_string_token1] = ACTIONS(1372), - [anon_sym_LT_LT_LT] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_boolean] = ACTIONS(1374), - [sym_null] = ACTIONS(1374), - [anon_sym_DOLLAR] = ACTIONS(1372), - [aux_sym_yield_expression_token1] = ACTIONS(1374), - [aux_sym_include_expression_token1] = ACTIONS(1374), - [aux_sym_include_once_expression_token1] = ACTIONS(1374), - [aux_sym_require_expression_token1] = ACTIONS(1374), - [aux_sym_require_once_expression_token1] = ACTIONS(1374), - [sym_comment] = ACTIONS(5), - }, - [533] = { - [sym_text_interpolation] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_name] = ACTIONS(1378), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1376), - [aux_sym_function_static_declaration_token1] = ACTIONS(1378), - [aux_sym_global_declaration_token1] = ACTIONS(1378), - [aux_sym_namespace_definition_token1] = ACTIONS(1378), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1378), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1378), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1378), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [aux_sym_trait_declaration_token1] = ACTIONS(1378), - [aux_sym_interface_declaration_token1] = ACTIONS(1378), - [aux_sym_enum_declaration_token1] = ACTIONS(1378), - [aux_sym_enum_case_token1] = ACTIONS(1378), - [aux_sym_class_declaration_token1] = ACTIONS(1378), - [aux_sym_final_modifier_token1] = ACTIONS(1378), - [aux_sym_abstract_modifier_token1] = ACTIONS(1378), - [aux_sym_readonly_modifier_token1] = ACTIONS(1378), - [aux_sym_visibility_modifier_token1] = ACTIONS(1378), - [aux_sym_visibility_modifier_token2] = ACTIONS(1378), - [aux_sym_visibility_modifier_token3] = ACTIONS(1378), - [aux_sym__arrow_function_header_token1] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [aux_sym_cast_type_token1] = ACTIONS(1378), - [aux_sym_echo_statement_token1] = ACTIONS(1378), - [anon_sym_unset] = ACTIONS(1378), - [aux_sym_declare_statement_token1] = ACTIONS(1378), - [aux_sym_declare_statement_token2] = ACTIONS(1378), - [sym_float] = ACTIONS(1378), - [aux_sym_try_statement_token1] = ACTIONS(1378), - [aux_sym_goto_statement_token1] = ACTIONS(1378), - [aux_sym_continue_statement_token1] = ACTIONS(1378), - [aux_sym_break_statement_token1] = ACTIONS(1378), - [sym_integer] = ACTIONS(1378), - [aux_sym_return_statement_token1] = ACTIONS(1378), - [aux_sym_throw_expression_token1] = ACTIONS(1378), - [aux_sym_while_statement_token1] = ACTIONS(1378), - [aux_sym_while_statement_token2] = ACTIONS(1378), - [aux_sym_do_statement_token1] = ACTIONS(1378), - [aux_sym_for_statement_token1] = ACTIONS(1378), - [aux_sym_for_statement_token2] = ACTIONS(1378), - [aux_sym_foreach_statement_token1] = ACTIONS(1378), - [aux_sym_foreach_statement_token2] = ACTIONS(1378), - [aux_sym_if_statement_token1] = ACTIONS(1378), - [aux_sym_if_statement_token2] = ACTIONS(1378), - [aux_sym_else_if_clause_token1] = ACTIONS(1378), - [aux_sym_else_clause_token1] = ACTIONS(1378), - [aux_sym_match_expression_token1] = ACTIONS(1378), - [aux_sym_match_default_expression_token1] = ACTIONS(1378), - [aux_sym_switch_statement_token1] = ACTIONS(1378), - [aux_sym_switch_block_token1] = ACTIONS(1378), - [anon_sym_AT] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [aux_sym_clone_expression_token1] = ACTIONS(1378), - [aux_sym_print_intrinsic_token1] = ACTIONS(1378), - [aux_sym_object_creation_expression_token1] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [aux_sym__list_destructing_token1] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_self] = ACTIONS(1378), - [anon_sym_parent] = ACTIONS(1378), - [anon_sym_POUND_LBRACK] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [aux_sym_encapsed_string_token1] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1376), - [anon_sym_LT_LT_LT] = ACTIONS(1376), - [anon_sym_BQUOTE] = ACTIONS(1376), - [sym_boolean] = ACTIONS(1378), - [sym_null] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1376), - [aux_sym_yield_expression_token1] = ACTIONS(1378), - [aux_sym_include_expression_token1] = ACTIONS(1378), - [aux_sym_include_once_expression_token1] = ACTIONS(1378), - [aux_sym_require_expression_token1] = ACTIONS(1378), - [aux_sym_require_once_expression_token1] = ACTIONS(1378), - [sym_comment] = ACTIONS(5), - }, - [534] = { - [sym_text_interpolation] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_name] = ACTIONS(1382), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1380), - [aux_sym_function_static_declaration_token1] = ACTIONS(1382), - [aux_sym_global_declaration_token1] = ACTIONS(1382), - [aux_sym_namespace_definition_token1] = ACTIONS(1382), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1382), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1382), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1382), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [aux_sym_trait_declaration_token1] = ACTIONS(1382), - [aux_sym_interface_declaration_token1] = ACTIONS(1382), - [aux_sym_enum_declaration_token1] = ACTIONS(1382), - [aux_sym_enum_case_token1] = ACTIONS(1382), - [aux_sym_class_declaration_token1] = ACTIONS(1382), - [aux_sym_final_modifier_token1] = ACTIONS(1382), - [aux_sym_abstract_modifier_token1] = ACTIONS(1382), - [aux_sym_readonly_modifier_token1] = ACTIONS(1382), - [aux_sym_visibility_modifier_token1] = ACTIONS(1382), - [aux_sym_visibility_modifier_token2] = ACTIONS(1382), - [aux_sym_visibility_modifier_token3] = ACTIONS(1382), - [aux_sym__arrow_function_header_token1] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1380), - [aux_sym_cast_type_token1] = ACTIONS(1382), - [aux_sym_echo_statement_token1] = ACTIONS(1382), - [anon_sym_unset] = ACTIONS(1382), - [aux_sym_declare_statement_token1] = ACTIONS(1382), - [aux_sym_declare_statement_token2] = ACTIONS(1382), - [sym_float] = ACTIONS(1382), - [aux_sym_try_statement_token1] = ACTIONS(1382), - [aux_sym_goto_statement_token1] = ACTIONS(1382), - [aux_sym_continue_statement_token1] = ACTIONS(1382), - [aux_sym_break_statement_token1] = ACTIONS(1382), - [sym_integer] = ACTIONS(1382), - [aux_sym_return_statement_token1] = ACTIONS(1382), - [aux_sym_throw_expression_token1] = ACTIONS(1382), - [aux_sym_while_statement_token1] = ACTIONS(1382), - [aux_sym_while_statement_token2] = ACTIONS(1382), - [aux_sym_do_statement_token1] = ACTIONS(1382), - [aux_sym_for_statement_token1] = ACTIONS(1382), - [aux_sym_for_statement_token2] = ACTIONS(1382), - [aux_sym_foreach_statement_token1] = ACTIONS(1382), - [aux_sym_foreach_statement_token2] = ACTIONS(1382), - [aux_sym_if_statement_token1] = ACTIONS(1382), - [aux_sym_if_statement_token2] = ACTIONS(1382), - [aux_sym_else_if_clause_token1] = ACTIONS(1382), - [aux_sym_else_clause_token1] = ACTIONS(1382), - [aux_sym_match_expression_token1] = ACTIONS(1382), - [aux_sym_match_default_expression_token1] = ACTIONS(1382), - [aux_sym_switch_statement_token1] = ACTIONS(1382), - [aux_sym_switch_block_token1] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [aux_sym_clone_expression_token1] = ACTIONS(1382), - [aux_sym_print_intrinsic_token1] = ACTIONS(1382), - [aux_sym_object_creation_expression_token1] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [aux_sym__list_destructing_token1] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_self] = ACTIONS(1382), - [anon_sym_parent] = ACTIONS(1382), - [anon_sym_POUND_LBRACK] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [aux_sym_encapsed_string_token1] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [aux_sym_string_token1] = ACTIONS(1380), - [anon_sym_LT_LT_LT] = ACTIONS(1380), - [anon_sym_BQUOTE] = ACTIONS(1380), - [sym_boolean] = ACTIONS(1382), - [sym_null] = ACTIONS(1382), - [anon_sym_DOLLAR] = ACTIONS(1380), - [aux_sym_yield_expression_token1] = ACTIONS(1382), - [aux_sym_include_expression_token1] = ACTIONS(1382), - [aux_sym_include_once_expression_token1] = ACTIONS(1382), - [aux_sym_require_expression_token1] = ACTIONS(1382), - [aux_sym_require_once_expression_token1] = ACTIONS(1382), - [sym_comment] = ACTIONS(5), - }, - [535] = { - [sym_text_interpolation] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_name] = ACTIONS(1386), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1384), - [aux_sym_function_static_declaration_token1] = ACTIONS(1386), - [aux_sym_global_declaration_token1] = ACTIONS(1386), - [aux_sym_namespace_definition_token1] = ACTIONS(1386), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1386), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [aux_sym_trait_declaration_token1] = ACTIONS(1386), - [aux_sym_interface_declaration_token1] = ACTIONS(1386), - [aux_sym_enum_declaration_token1] = ACTIONS(1386), - [aux_sym_enum_case_token1] = ACTIONS(1386), - [aux_sym_class_declaration_token1] = ACTIONS(1386), - [aux_sym_final_modifier_token1] = ACTIONS(1386), - [aux_sym_abstract_modifier_token1] = ACTIONS(1386), - [aux_sym_readonly_modifier_token1] = ACTIONS(1386), - [aux_sym_visibility_modifier_token1] = ACTIONS(1386), - [aux_sym_visibility_modifier_token2] = ACTIONS(1386), - [aux_sym_visibility_modifier_token3] = ACTIONS(1386), - [aux_sym__arrow_function_header_token1] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1384), - [aux_sym_cast_type_token1] = ACTIONS(1386), - [aux_sym_echo_statement_token1] = ACTIONS(1386), - [anon_sym_unset] = ACTIONS(1386), - [aux_sym_declare_statement_token1] = ACTIONS(1386), - [aux_sym_declare_statement_token2] = ACTIONS(1386), - [sym_float] = ACTIONS(1386), - [aux_sym_try_statement_token1] = ACTIONS(1386), - [aux_sym_goto_statement_token1] = ACTIONS(1386), - [aux_sym_continue_statement_token1] = ACTIONS(1386), - [aux_sym_break_statement_token1] = ACTIONS(1386), - [sym_integer] = ACTIONS(1386), - [aux_sym_return_statement_token1] = ACTIONS(1386), - [aux_sym_throw_expression_token1] = ACTIONS(1386), - [aux_sym_while_statement_token1] = ACTIONS(1386), - [aux_sym_while_statement_token2] = ACTIONS(1386), - [aux_sym_do_statement_token1] = ACTIONS(1386), - [aux_sym_for_statement_token1] = ACTIONS(1386), - [aux_sym_for_statement_token2] = ACTIONS(1386), - [aux_sym_foreach_statement_token1] = ACTIONS(1386), - [aux_sym_foreach_statement_token2] = ACTIONS(1386), - [aux_sym_if_statement_token1] = ACTIONS(1386), - [aux_sym_if_statement_token2] = ACTIONS(1386), - [aux_sym_else_if_clause_token1] = ACTIONS(1386), - [aux_sym_else_clause_token1] = ACTIONS(1386), - [aux_sym_match_expression_token1] = ACTIONS(1386), - [aux_sym_match_default_expression_token1] = ACTIONS(1386), - [aux_sym_switch_statement_token1] = ACTIONS(1386), - [aux_sym_switch_block_token1] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [aux_sym_clone_expression_token1] = ACTIONS(1386), - [aux_sym_print_intrinsic_token1] = ACTIONS(1386), - [aux_sym_object_creation_expression_token1] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [aux_sym__list_destructing_token1] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_self] = ACTIONS(1386), - [anon_sym_parent] = ACTIONS(1386), - [anon_sym_POUND_LBRACK] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [aux_sym_encapsed_string_token1] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [aux_sym_string_token1] = ACTIONS(1384), - [anon_sym_LT_LT_LT] = ACTIONS(1384), - [anon_sym_BQUOTE] = ACTIONS(1384), - [sym_boolean] = ACTIONS(1386), - [sym_null] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1384), - [aux_sym_yield_expression_token1] = ACTIONS(1386), - [aux_sym_include_expression_token1] = ACTIONS(1386), - [aux_sym_include_once_expression_token1] = ACTIONS(1386), - [aux_sym_require_expression_token1] = ACTIONS(1386), - [aux_sym_require_once_expression_token1] = ACTIONS(1386), - [sym_comment] = ACTIONS(5), - }, - [536] = { - [sym_text_interpolation] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_name] = ACTIONS(1390), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1388), - [aux_sym_function_static_declaration_token1] = ACTIONS(1390), - [aux_sym_global_declaration_token1] = ACTIONS(1390), - [aux_sym_namespace_definition_token1] = ACTIONS(1390), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1390), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1390), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1390), - [anon_sym_BSLASH] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [aux_sym_trait_declaration_token1] = ACTIONS(1390), - [aux_sym_interface_declaration_token1] = ACTIONS(1390), - [aux_sym_enum_declaration_token1] = ACTIONS(1390), - [aux_sym_enum_case_token1] = ACTIONS(1390), - [aux_sym_class_declaration_token1] = ACTIONS(1390), - [aux_sym_final_modifier_token1] = ACTIONS(1390), - [aux_sym_abstract_modifier_token1] = ACTIONS(1390), - [aux_sym_readonly_modifier_token1] = ACTIONS(1390), - [aux_sym_visibility_modifier_token1] = ACTIONS(1390), - [aux_sym_visibility_modifier_token2] = ACTIONS(1390), - [aux_sym_visibility_modifier_token3] = ACTIONS(1390), - [aux_sym__arrow_function_header_token1] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1388), - [aux_sym_cast_type_token1] = ACTIONS(1390), - [aux_sym_echo_statement_token1] = ACTIONS(1390), - [anon_sym_unset] = ACTIONS(1390), - [aux_sym_declare_statement_token1] = ACTIONS(1390), - [aux_sym_declare_statement_token2] = ACTIONS(1390), - [sym_float] = ACTIONS(1390), - [aux_sym_try_statement_token1] = ACTIONS(1390), - [aux_sym_goto_statement_token1] = ACTIONS(1390), - [aux_sym_continue_statement_token1] = ACTIONS(1390), - [aux_sym_break_statement_token1] = ACTIONS(1390), - [sym_integer] = ACTIONS(1390), - [aux_sym_return_statement_token1] = ACTIONS(1390), - [aux_sym_throw_expression_token1] = ACTIONS(1390), - [aux_sym_while_statement_token1] = ACTIONS(1390), - [aux_sym_while_statement_token2] = ACTIONS(1390), - [aux_sym_do_statement_token1] = ACTIONS(1390), - [aux_sym_for_statement_token1] = ACTIONS(1390), - [aux_sym_for_statement_token2] = ACTIONS(1390), - [aux_sym_foreach_statement_token1] = ACTIONS(1390), - [aux_sym_foreach_statement_token2] = ACTIONS(1390), - [aux_sym_if_statement_token1] = ACTIONS(1390), - [aux_sym_if_statement_token2] = ACTIONS(1390), - [aux_sym_else_if_clause_token1] = ACTIONS(1390), - [aux_sym_else_clause_token1] = ACTIONS(1390), - [aux_sym_match_expression_token1] = ACTIONS(1390), - [aux_sym_match_default_expression_token1] = ACTIONS(1390), - [aux_sym_switch_statement_token1] = ACTIONS(1390), - [aux_sym_switch_block_token1] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [aux_sym_clone_expression_token1] = ACTIONS(1390), - [aux_sym_print_intrinsic_token1] = ACTIONS(1390), - [aux_sym_object_creation_expression_token1] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym__list_destructing_token1] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_self] = ACTIONS(1390), - [anon_sym_parent] = ACTIONS(1390), - [anon_sym_POUND_LBRACK] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [aux_sym_encapsed_string_token1] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [aux_sym_string_token1] = ACTIONS(1388), - [anon_sym_LT_LT_LT] = ACTIONS(1388), - [anon_sym_BQUOTE] = ACTIONS(1388), - [sym_boolean] = ACTIONS(1390), - [sym_null] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1388), - [aux_sym_yield_expression_token1] = ACTIONS(1390), - [aux_sym_include_expression_token1] = ACTIONS(1390), - [aux_sym_include_once_expression_token1] = ACTIONS(1390), - [aux_sym_require_expression_token1] = ACTIONS(1390), - [aux_sym_require_once_expression_token1] = ACTIONS(1390), - [sym_comment] = ACTIONS(5), - }, - [537] = { - [sym_text_interpolation] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_name] = ACTIONS(1394), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1392), - [aux_sym_function_static_declaration_token1] = ACTIONS(1394), - [aux_sym_global_declaration_token1] = ACTIONS(1394), - [aux_sym_namespace_definition_token1] = ACTIONS(1394), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1394), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1394), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1394), - [anon_sym_BSLASH] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [aux_sym_trait_declaration_token1] = ACTIONS(1394), - [aux_sym_interface_declaration_token1] = ACTIONS(1394), - [aux_sym_enum_declaration_token1] = ACTIONS(1394), - [aux_sym_enum_case_token1] = ACTIONS(1394), - [aux_sym_class_declaration_token1] = ACTIONS(1394), - [aux_sym_final_modifier_token1] = ACTIONS(1394), - [aux_sym_abstract_modifier_token1] = ACTIONS(1394), - [aux_sym_readonly_modifier_token1] = ACTIONS(1394), - [aux_sym_visibility_modifier_token1] = ACTIONS(1394), - [aux_sym_visibility_modifier_token2] = ACTIONS(1394), - [aux_sym_visibility_modifier_token3] = ACTIONS(1394), - [aux_sym__arrow_function_header_token1] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1392), - [aux_sym_cast_type_token1] = ACTIONS(1394), - [aux_sym_echo_statement_token1] = ACTIONS(1394), - [anon_sym_unset] = ACTIONS(1394), - [aux_sym_declare_statement_token1] = ACTIONS(1394), - [aux_sym_declare_statement_token2] = ACTIONS(1394), - [sym_float] = ACTIONS(1394), - [aux_sym_try_statement_token1] = ACTIONS(1394), - [aux_sym_goto_statement_token1] = ACTIONS(1394), - [aux_sym_continue_statement_token1] = ACTIONS(1394), - [aux_sym_break_statement_token1] = ACTIONS(1394), - [sym_integer] = ACTIONS(1394), - [aux_sym_return_statement_token1] = ACTIONS(1394), - [aux_sym_throw_expression_token1] = ACTIONS(1394), - [aux_sym_while_statement_token1] = ACTIONS(1394), - [aux_sym_while_statement_token2] = ACTIONS(1394), - [aux_sym_do_statement_token1] = ACTIONS(1394), - [aux_sym_for_statement_token1] = ACTIONS(1394), - [aux_sym_for_statement_token2] = ACTIONS(1394), - [aux_sym_foreach_statement_token1] = ACTIONS(1394), - [aux_sym_foreach_statement_token2] = ACTIONS(1394), - [aux_sym_if_statement_token1] = ACTIONS(1394), - [aux_sym_if_statement_token2] = ACTIONS(1394), - [aux_sym_else_if_clause_token1] = ACTIONS(1394), - [aux_sym_else_clause_token1] = ACTIONS(1394), - [aux_sym_match_expression_token1] = ACTIONS(1394), - [aux_sym_match_default_expression_token1] = ACTIONS(1394), - [aux_sym_switch_statement_token1] = ACTIONS(1394), - [aux_sym_switch_block_token1] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [aux_sym_clone_expression_token1] = ACTIONS(1394), - [aux_sym_print_intrinsic_token1] = ACTIONS(1394), - [aux_sym_object_creation_expression_token1] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [aux_sym__list_destructing_token1] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_self] = ACTIONS(1394), - [anon_sym_parent] = ACTIONS(1394), - [anon_sym_POUND_LBRACK] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [aux_sym_encapsed_string_token1] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [aux_sym_string_token1] = ACTIONS(1392), - [anon_sym_LT_LT_LT] = ACTIONS(1392), - [anon_sym_BQUOTE] = ACTIONS(1392), - [sym_boolean] = ACTIONS(1394), - [sym_null] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(1392), - [aux_sym_yield_expression_token1] = ACTIONS(1394), - [aux_sym_include_expression_token1] = ACTIONS(1394), - [aux_sym_include_once_expression_token1] = ACTIONS(1394), - [aux_sym_require_expression_token1] = ACTIONS(1394), - [aux_sym_require_once_expression_token1] = ACTIONS(1394), - [sym_comment] = ACTIONS(5), - }, - [538] = { - [sym_text_interpolation] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_name] = ACTIONS(1398), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1396), - [aux_sym_function_static_declaration_token1] = ACTIONS(1398), - [aux_sym_global_declaration_token1] = ACTIONS(1398), - [aux_sym_namespace_definition_token1] = ACTIONS(1398), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1398), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1398), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1398), - [anon_sym_BSLASH] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [aux_sym_trait_declaration_token1] = ACTIONS(1398), - [aux_sym_interface_declaration_token1] = ACTIONS(1398), - [aux_sym_enum_declaration_token1] = ACTIONS(1398), - [aux_sym_enum_case_token1] = ACTIONS(1398), - [aux_sym_class_declaration_token1] = ACTIONS(1398), - [aux_sym_final_modifier_token1] = ACTIONS(1398), - [aux_sym_abstract_modifier_token1] = ACTIONS(1398), - [aux_sym_readonly_modifier_token1] = ACTIONS(1398), - [aux_sym_visibility_modifier_token1] = ACTIONS(1398), - [aux_sym_visibility_modifier_token2] = ACTIONS(1398), - [aux_sym_visibility_modifier_token3] = ACTIONS(1398), - [aux_sym__arrow_function_header_token1] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1396), - [aux_sym_cast_type_token1] = ACTIONS(1398), - [aux_sym_echo_statement_token1] = ACTIONS(1398), - [anon_sym_unset] = ACTIONS(1398), - [aux_sym_declare_statement_token1] = ACTIONS(1398), - [aux_sym_declare_statement_token2] = ACTIONS(1398), - [sym_float] = ACTIONS(1398), - [aux_sym_try_statement_token1] = ACTIONS(1398), - [aux_sym_goto_statement_token1] = ACTIONS(1398), - [aux_sym_continue_statement_token1] = ACTIONS(1398), - [aux_sym_break_statement_token1] = ACTIONS(1398), - [sym_integer] = ACTIONS(1398), - [aux_sym_return_statement_token1] = ACTIONS(1398), - [aux_sym_throw_expression_token1] = ACTIONS(1398), - [aux_sym_while_statement_token1] = ACTIONS(1398), - [aux_sym_while_statement_token2] = ACTIONS(1398), - [aux_sym_do_statement_token1] = ACTIONS(1398), - [aux_sym_for_statement_token1] = ACTIONS(1398), - [aux_sym_for_statement_token2] = ACTIONS(1398), - [aux_sym_foreach_statement_token1] = ACTIONS(1398), - [aux_sym_foreach_statement_token2] = ACTIONS(1398), - [aux_sym_if_statement_token1] = ACTIONS(1398), - [aux_sym_if_statement_token2] = ACTIONS(1398), - [aux_sym_else_if_clause_token1] = ACTIONS(1398), - [aux_sym_else_clause_token1] = ACTIONS(1398), - [aux_sym_match_expression_token1] = ACTIONS(1398), - [aux_sym_match_default_expression_token1] = ACTIONS(1398), - [aux_sym_switch_statement_token1] = ACTIONS(1398), - [aux_sym_switch_block_token1] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [aux_sym_clone_expression_token1] = ACTIONS(1398), - [aux_sym_print_intrinsic_token1] = ACTIONS(1398), - [aux_sym_object_creation_expression_token1] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [aux_sym__list_destructing_token1] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_self] = ACTIONS(1398), - [anon_sym_parent] = ACTIONS(1398), - [anon_sym_POUND_LBRACK] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [aux_sym_encapsed_string_token1] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [aux_sym_string_token1] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [sym_boolean] = ACTIONS(1398), - [sym_null] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1396), - [aux_sym_yield_expression_token1] = ACTIONS(1398), - [aux_sym_include_expression_token1] = ACTIONS(1398), - [aux_sym_include_once_expression_token1] = ACTIONS(1398), - [aux_sym_require_expression_token1] = ACTIONS(1398), - [aux_sym_require_once_expression_token1] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - }, - [539] = { - [sym_text_interpolation] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_name] = ACTIONS(1402), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1400), - [aux_sym_function_static_declaration_token1] = ACTIONS(1402), - [aux_sym_global_declaration_token1] = ACTIONS(1402), - [aux_sym_namespace_definition_token1] = ACTIONS(1402), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1402), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1402), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1402), - [anon_sym_BSLASH] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [aux_sym_trait_declaration_token1] = ACTIONS(1402), - [aux_sym_interface_declaration_token1] = ACTIONS(1402), - [aux_sym_enum_declaration_token1] = ACTIONS(1402), - [aux_sym_enum_case_token1] = ACTIONS(1402), - [aux_sym_class_declaration_token1] = ACTIONS(1402), - [aux_sym_final_modifier_token1] = ACTIONS(1402), - [aux_sym_abstract_modifier_token1] = ACTIONS(1402), - [aux_sym_readonly_modifier_token1] = ACTIONS(1402), - [aux_sym_visibility_modifier_token1] = ACTIONS(1402), - [aux_sym_visibility_modifier_token2] = ACTIONS(1402), - [aux_sym_visibility_modifier_token3] = ACTIONS(1402), - [aux_sym__arrow_function_header_token1] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [aux_sym_cast_type_token1] = ACTIONS(1402), - [aux_sym_echo_statement_token1] = ACTIONS(1402), - [anon_sym_unset] = ACTIONS(1402), - [aux_sym_declare_statement_token1] = ACTIONS(1402), - [aux_sym_declare_statement_token2] = ACTIONS(1402), - [sym_float] = ACTIONS(1402), - [aux_sym_try_statement_token1] = ACTIONS(1402), - [aux_sym_goto_statement_token1] = ACTIONS(1402), - [aux_sym_continue_statement_token1] = ACTIONS(1402), - [aux_sym_break_statement_token1] = ACTIONS(1402), - [sym_integer] = ACTIONS(1402), - [aux_sym_return_statement_token1] = ACTIONS(1402), - [aux_sym_throw_expression_token1] = ACTIONS(1402), - [aux_sym_while_statement_token1] = ACTIONS(1402), - [aux_sym_while_statement_token2] = ACTIONS(1402), - [aux_sym_do_statement_token1] = ACTIONS(1402), - [aux_sym_for_statement_token1] = ACTIONS(1402), - [aux_sym_for_statement_token2] = ACTIONS(1402), - [aux_sym_foreach_statement_token1] = ACTIONS(1402), - [aux_sym_foreach_statement_token2] = ACTIONS(1402), - [aux_sym_if_statement_token1] = ACTIONS(1402), - [aux_sym_if_statement_token2] = ACTIONS(1402), - [aux_sym_else_if_clause_token1] = ACTIONS(1402), - [aux_sym_else_clause_token1] = ACTIONS(1402), - [aux_sym_match_expression_token1] = ACTIONS(1402), - [aux_sym_match_default_expression_token1] = ACTIONS(1402), - [aux_sym_switch_statement_token1] = ACTIONS(1402), - [aux_sym_switch_block_token1] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [aux_sym_clone_expression_token1] = ACTIONS(1402), - [aux_sym_print_intrinsic_token1] = ACTIONS(1402), - [aux_sym_object_creation_expression_token1] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [aux_sym__list_destructing_token1] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_self] = ACTIONS(1402), - [anon_sym_parent] = ACTIONS(1402), - [anon_sym_POUND_LBRACK] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [aux_sym_encapsed_string_token1] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [aux_sym_string_token1] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_boolean] = ACTIONS(1402), - [sym_null] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1400), - [aux_sym_yield_expression_token1] = ACTIONS(1402), - [aux_sym_include_expression_token1] = ACTIONS(1402), - [aux_sym_include_once_expression_token1] = ACTIONS(1402), - [aux_sym_require_expression_token1] = ACTIONS(1402), - [aux_sym_require_once_expression_token1] = ACTIONS(1402), - [sym_comment] = ACTIONS(5), - }, - [540] = { - [sym_text_interpolation] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_name] = ACTIONS(1406), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1404), - [aux_sym_function_static_declaration_token1] = ACTIONS(1406), - [aux_sym_global_declaration_token1] = ACTIONS(1406), - [aux_sym_namespace_definition_token1] = ACTIONS(1406), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1406), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1406), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1406), - [anon_sym_BSLASH] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [aux_sym_trait_declaration_token1] = ACTIONS(1406), - [aux_sym_interface_declaration_token1] = ACTIONS(1406), - [aux_sym_enum_declaration_token1] = ACTIONS(1406), - [aux_sym_enum_case_token1] = ACTIONS(1406), - [aux_sym_class_declaration_token1] = ACTIONS(1406), - [aux_sym_final_modifier_token1] = ACTIONS(1406), - [aux_sym_abstract_modifier_token1] = ACTIONS(1406), - [aux_sym_readonly_modifier_token1] = ACTIONS(1406), - [aux_sym_visibility_modifier_token1] = ACTIONS(1406), - [aux_sym_visibility_modifier_token2] = ACTIONS(1406), - [aux_sym_visibility_modifier_token3] = ACTIONS(1406), - [aux_sym__arrow_function_header_token1] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1404), - [aux_sym_cast_type_token1] = ACTIONS(1406), - [aux_sym_echo_statement_token1] = ACTIONS(1406), - [anon_sym_unset] = ACTIONS(1406), - [aux_sym_declare_statement_token1] = ACTIONS(1406), - [aux_sym_declare_statement_token2] = ACTIONS(1406), - [sym_float] = ACTIONS(1406), - [aux_sym_try_statement_token1] = ACTIONS(1406), - [aux_sym_goto_statement_token1] = ACTIONS(1406), - [aux_sym_continue_statement_token1] = ACTIONS(1406), - [aux_sym_break_statement_token1] = ACTIONS(1406), - [sym_integer] = ACTIONS(1406), - [aux_sym_return_statement_token1] = ACTIONS(1406), - [aux_sym_throw_expression_token1] = ACTIONS(1406), - [aux_sym_while_statement_token1] = ACTIONS(1406), - [aux_sym_while_statement_token2] = ACTIONS(1406), - [aux_sym_do_statement_token1] = ACTIONS(1406), - [aux_sym_for_statement_token1] = ACTIONS(1406), - [aux_sym_for_statement_token2] = ACTIONS(1406), - [aux_sym_foreach_statement_token1] = ACTIONS(1406), - [aux_sym_foreach_statement_token2] = ACTIONS(1406), - [aux_sym_if_statement_token1] = ACTIONS(1406), - [aux_sym_if_statement_token2] = ACTIONS(1406), - [aux_sym_else_if_clause_token1] = ACTIONS(1406), - [aux_sym_else_clause_token1] = ACTIONS(1406), - [aux_sym_match_expression_token1] = ACTIONS(1406), - [aux_sym_match_default_expression_token1] = ACTIONS(1406), - [aux_sym_switch_statement_token1] = ACTIONS(1406), - [aux_sym_switch_block_token1] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [aux_sym_clone_expression_token1] = ACTIONS(1406), - [aux_sym_print_intrinsic_token1] = ACTIONS(1406), - [aux_sym_object_creation_expression_token1] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [aux_sym__list_destructing_token1] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_self] = ACTIONS(1406), - [anon_sym_parent] = ACTIONS(1406), - [anon_sym_POUND_LBRACK] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [aux_sym_encapsed_string_token1] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [aux_sym_string_token1] = ACTIONS(1404), - [anon_sym_LT_LT_LT] = ACTIONS(1404), - [anon_sym_BQUOTE] = ACTIONS(1404), - [sym_boolean] = ACTIONS(1406), - [sym_null] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1404), - [aux_sym_yield_expression_token1] = ACTIONS(1406), - [aux_sym_include_expression_token1] = ACTIONS(1406), - [aux_sym_include_once_expression_token1] = ACTIONS(1406), - [aux_sym_require_expression_token1] = ACTIONS(1406), - [aux_sym_require_once_expression_token1] = ACTIONS(1406), - [sym_comment] = ACTIONS(5), - }, - [541] = { - [sym_text_interpolation] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_name] = ACTIONS(1410), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1408), - [aux_sym_function_static_declaration_token1] = ACTIONS(1410), - [aux_sym_global_declaration_token1] = ACTIONS(1410), - [aux_sym_namespace_definition_token1] = ACTIONS(1410), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1410), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1410), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1410), - [anon_sym_BSLASH] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [aux_sym_trait_declaration_token1] = ACTIONS(1410), - [aux_sym_interface_declaration_token1] = ACTIONS(1410), - [aux_sym_enum_declaration_token1] = ACTIONS(1410), - [aux_sym_enum_case_token1] = ACTIONS(1410), - [aux_sym_class_declaration_token1] = ACTIONS(1410), - [aux_sym_final_modifier_token1] = ACTIONS(1410), - [aux_sym_abstract_modifier_token1] = ACTIONS(1410), - [aux_sym_readonly_modifier_token1] = ACTIONS(1410), - [aux_sym_visibility_modifier_token1] = ACTIONS(1410), - [aux_sym_visibility_modifier_token2] = ACTIONS(1410), - [aux_sym_visibility_modifier_token3] = ACTIONS(1410), - [aux_sym__arrow_function_header_token1] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1408), - [aux_sym_cast_type_token1] = ACTIONS(1410), - [aux_sym_echo_statement_token1] = ACTIONS(1410), - [anon_sym_unset] = ACTIONS(1410), - [aux_sym_declare_statement_token1] = ACTIONS(1410), - [aux_sym_declare_statement_token2] = ACTIONS(1410), - [sym_float] = ACTIONS(1410), - [aux_sym_try_statement_token1] = ACTIONS(1410), - [aux_sym_goto_statement_token1] = ACTIONS(1410), - [aux_sym_continue_statement_token1] = ACTIONS(1410), - [aux_sym_break_statement_token1] = ACTIONS(1410), - [sym_integer] = ACTIONS(1410), - [aux_sym_return_statement_token1] = ACTIONS(1410), - [aux_sym_throw_expression_token1] = ACTIONS(1410), - [aux_sym_while_statement_token1] = ACTIONS(1410), - [aux_sym_while_statement_token2] = ACTIONS(1410), - [aux_sym_do_statement_token1] = ACTIONS(1410), - [aux_sym_for_statement_token1] = ACTIONS(1410), - [aux_sym_for_statement_token2] = ACTIONS(1410), - [aux_sym_foreach_statement_token1] = ACTIONS(1410), - [aux_sym_foreach_statement_token2] = ACTIONS(1410), - [aux_sym_if_statement_token1] = ACTIONS(1410), - [aux_sym_if_statement_token2] = ACTIONS(1410), - [aux_sym_else_if_clause_token1] = ACTIONS(1410), - [aux_sym_else_clause_token1] = ACTIONS(1410), - [aux_sym_match_expression_token1] = ACTIONS(1410), - [aux_sym_match_default_expression_token1] = ACTIONS(1410), - [aux_sym_switch_statement_token1] = ACTIONS(1410), - [aux_sym_switch_block_token1] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [aux_sym_clone_expression_token1] = ACTIONS(1410), - [aux_sym_print_intrinsic_token1] = ACTIONS(1410), - [aux_sym_object_creation_expression_token1] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [aux_sym__list_destructing_token1] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_self] = ACTIONS(1410), - [anon_sym_parent] = ACTIONS(1410), - [anon_sym_POUND_LBRACK] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [aux_sym_encapsed_string_token1] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [aux_sym_string_token1] = ACTIONS(1408), - [anon_sym_LT_LT_LT] = ACTIONS(1408), - [anon_sym_BQUOTE] = ACTIONS(1408), - [sym_boolean] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1408), - [aux_sym_yield_expression_token1] = ACTIONS(1410), - [aux_sym_include_expression_token1] = ACTIONS(1410), - [aux_sym_include_once_expression_token1] = ACTIONS(1410), - [aux_sym_require_expression_token1] = ACTIONS(1410), - [aux_sym_require_once_expression_token1] = ACTIONS(1410), - [sym_comment] = ACTIONS(5), - }, - [542] = { - [sym_text_interpolation] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_name] = ACTIONS(1402), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1400), - [aux_sym_function_static_declaration_token1] = ACTIONS(1402), - [aux_sym_global_declaration_token1] = ACTIONS(1402), - [aux_sym_namespace_definition_token1] = ACTIONS(1402), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1402), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1402), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1402), - [anon_sym_BSLASH] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [aux_sym_trait_declaration_token1] = ACTIONS(1402), - [aux_sym_interface_declaration_token1] = ACTIONS(1402), - [aux_sym_enum_declaration_token1] = ACTIONS(1402), - [aux_sym_enum_case_token1] = ACTIONS(1402), - [aux_sym_class_declaration_token1] = ACTIONS(1402), - [aux_sym_final_modifier_token1] = ACTIONS(1402), - [aux_sym_abstract_modifier_token1] = ACTIONS(1402), - [aux_sym_readonly_modifier_token1] = ACTIONS(1402), - [aux_sym_visibility_modifier_token1] = ACTIONS(1402), - [aux_sym_visibility_modifier_token2] = ACTIONS(1402), - [aux_sym_visibility_modifier_token3] = ACTIONS(1402), - [aux_sym__arrow_function_header_token1] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [aux_sym_cast_type_token1] = ACTIONS(1402), - [aux_sym_echo_statement_token1] = ACTIONS(1402), - [anon_sym_unset] = ACTIONS(1402), - [aux_sym_declare_statement_token1] = ACTIONS(1402), - [aux_sym_declare_statement_token2] = ACTIONS(1402), - [sym_float] = ACTIONS(1402), - [aux_sym_try_statement_token1] = ACTIONS(1402), - [aux_sym_goto_statement_token1] = ACTIONS(1402), - [aux_sym_continue_statement_token1] = ACTIONS(1402), - [aux_sym_break_statement_token1] = ACTIONS(1402), - [sym_integer] = ACTIONS(1402), - [aux_sym_return_statement_token1] = ACTIONS(1402), - [aux_sym_throw_expression_token1] = ACTIONS(1402), - [aux_sym_while_statement_token1] = ACTIONS(1402), - [aux_sym_while_statement_token2] = ACTIONS(1402), - [aux_sym_do_statement_token1] = ACTIONS(1402), - [aux_sym_for_statement_token1] = ACTIONS(1402), - [aux_sym_for_statement_token2] = ACTIONS(1402), - [aux_sym_foreach_statement_token1] = ACTIONS(1402), - [aux_sym_foreach_statement_token2] = ACTIONS(1402), - [aux_sym_if_statement_token1] = ACTIONS(1402), - [aux_sym_if_statement_token2] = ACTIONS(1402), - [aux_sym_else_if_clause_token1] = ACTIONS(1402), - [aux_sym_else_clause_token1] = ACTIONS(1402), - [aux_sym_match_expression_token1] = ACTIONS(1402), - [aux_sym_match_default_expression_token1] = ACTIONS(1402), - [aux_sym_switch_statement_token1] = ACTIONS(1402), - [aux_sym_switch_block_token1] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [aux_sym_clone_expression_token1] = ACTIONS(1402), - [aux_sym_print_intrinsic_token1] = ACTIONS(1402), - [aux_sym_object_creation_expression_token1] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [aux_sym__list_destructing_token1] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_self] = ACTIONS(1402), - [anon_sym_parent] = ACTIONS(1402), - [anon_sym_POUND_LBRACK] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [aux_sym_encapsed_string_token1] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [aux_sym_string_token1] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_boolean] = ACTIONS(1402), - [sym_null] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1400), - [aux_sym_yield_expression_token1] = ACTIONS(1402), - [aux_sym_include_expression_token1] = ACTIONS(1402), - [aux_sym_include_once_expression_token1] = ACTIONS(1402), - [aux_sym_require_expression_token1] = ACTIONS(1402), - [aux_sym_require_once_expression_token1] = ACTIONS(1402), - [sym_comment] = ACTIONS(5), - }, - [543] = { - [sym_text_interpolation] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_name] = ACTIONS(1414), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1412), - [aux_sym_function_static_declaration_token1] = ACTIONS(1414), - [aux_sym_global_declaration_token1] = ACTIONS(1414), - [aux_sym_namespace_definition_token1] = ACTIONS(1414), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1414), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1414), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1414), - [anon_sym_BSLASH] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [aux_sym_trait_declaration_token1] = ACTIONS(1414), - [aux_sym_interface_declaration_token1] = ACTIONS(1414), - [aux_sym_enum_declaration_token1] = ACTIONS(1414), - [aux_sym_enum_case_token1] = ACTIONS(1414), - [aux_sym_class_declaration_token1] = ACTIONS(1414), - [aux_sym_final_modifier_token1] = ACTIONS(1414), - [aux_sym_abstract_modifier_token1] = ACTIONS(1414), - [aux_sym_readonly_modifier_token1] = ACTIONS(1414), - [aux_sym_visibility_modifier_token1] = ACTIONS(1414), - [aux_sym_visibility_modifier_token2] = ACTIONS(1414), - [aux_sym_visibility_modifier_token3] = ACTIONS(1414), - [aux_sym__arrow_function_header_token1] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1412), - [aux_sym_cast_type_token1] = ACTIONS(1414), - [aux_sym_echo_statement_token1] = ACTIONS(1414), - [anon_sym_unset] = ACTIONS(1414), - [aux_sym_declare_statement_token1] = ACTIONS(1414), - [aux_sym_declare_statement_token2] = ACTIONS(1414), - [sym_float] = ACTIONS(1414), - [aux_sym_try_statement_token1] = ACTIONS(1414), - [aux_sym_goto_statement_token1] = ACTIONS(1414), - [aux_sym_continue_statement_token1] = ACTIONS(1414), - [aux_sym_break_statement_token1] = ACTIONS(1414), - [sym_integer] = ACTIONS(1414), - [aux_sym_return_statement_token1] = ACTIONS(1414), - [aux_sym_throw_expression_token1] = ACTIONS(1414), - [aux_sym_while_statement_token1] = ACTIONS(1414), - [aux_sym_while_statement_token2] = ACTIONS(1414), - [aux_sym_do_statement_token1] = ACTIONS(1414), - [aux_sym_for_statement_token1] = ACTIONS(1414), - [aux_sym_for_statement_token2] = ACTIONS(1414), - [aux_sym_foreach_statement_token1] = ACTIONS(1414), - [aux_sym_foreach_statement_token2] = ACTIONS(1414), - [aux_sym_if_statement_token1] = ACTIONS(1414), - [aux_sym_if_statement_token2] = ACTIONS(1414), - [aux_sym_else_if_clause_token1] = ACTIONS(1414), - [aux_sym_else_clause_token1] = ACTIONS(1414), - [aux_sym_match_expression_token1] = ACTIONS(1414), - [aux_sym_match_default_expression_token1] = ACTIONS(1414), - [aux_sym_switch_statement_token1] = ACTIONS(1414), - [aux_sym_switch_block_token1] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [aux_sym_clone_expression_token1] = ACTIONS(1414), - [aux_sym_print_intrinsic_token1] = ACTIONS(1414), - [aux_sym_object_creation_expression_token1] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [aux_sym__list_destructing_token1] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_self] = ACTIONS(1414), - [anon_sym_parent] = ACTIONS(1414), - [anon_sym_POUND_LBRACK] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [aux_sym_encapsed_string_token1] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [aux_sym_string_token1] = ACTIONS(1412), - [anon_sym_LT_LT_LT] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_boolean] = ACTIONS(1414), - [sym_null] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1412), - [aux_sym_yield_expression_token1] = ACTIONS(1414), - [aux_sym_include_expression_token1] = ACTIONS(1414), - [aux_sym_include_once_expression_token1] = ACTIONS(1414), - [aux_sym_require_expression_token1] = ACTIONS(1414), - [aux_sym_require_once_expression_token1] = ACTIONS(1414), - [sym_comment] = ACTIONS(5), - }, - [544] = { - [sym_text_interpolation] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_name] = ACTIONS(1418), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1416), - [aux_sym_function_static_declaration_token1] = ACTIONS(1418), - [aux_sym_global_declaration_token1] = ACTIONS(1418), - [aux_sym_namespace_definition_token1] = ACTIONS(1418), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1418), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1418), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1418), - [anon_sym_BSLASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [aux_sym_trait_declaration_token1] = ACTIONS(1418), - [aux_sym_interface_declaration_token1] = ACTIONS(1418), - [aux_sym_enum_declaration_token1] = ACTIONS(1418), - [aux_sym_enum_case_token1] = ACTIONS(1418), - [aux_sym_class_declaration_token1] = ACTIONS(1418), - [aux_sym_final_modifier_token1] = ACTIONS(1418), - [aux_sym_abstract_modifier_token1] = ACTIONS(1418), - [aux_sym_readonly_modifier_token1] = ACTIONS(1418), - [aux_sym_visibility_modifier_token1] = ACTIONS(1418), - [aux_sym_visibility_modifier_token2] = ACTIONS(1418), - [aux_sym_visibility_modifier_token3] = ACTIONS(1418), - [aux_sym__arrow_function_header_token1] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1416), - [aux_sym_cast_type_token1] = ACTIONS(1418), - [aux_sym_echo_statement_token1] = ACTIONS(1418), - [anon_sym_unset] = ACTIONS(1418), - [aux_sym_declare_statement_token1] = ACTIONS(1418), - [aux_sym_declare_statement_token2] = ACTIONS(1418), - [sym_float] = ACTIONS(1418), - [aux_sym_try_statement_token1] = ACTIONS(1418), - [aux_sym_goto_statement_token1] = ACTIONS(1418), - [aux_sym_continue_statement_token1] = ACTIONS(1418), - [aux_sym_break_statement_token1] = ACTIONS(1418), - [sym_integer] = ACTIONS(1418), - [aux_sym_return_statement_token1] = ACTIONS(1418), - [aux_sym_throw_expression_token1] = ACTIONS(1418), - [aux_sym_while_statement_token1] = ACTIONS(1418), - [aux_sym_while_statement_token2] = ACTIONS(1418), - [aux_sym_do_statement_token1] = ACTIONS(1418), - [aux_sym_for_statement_token1] = ACTIONS(1418), - [aux_sym_for_statement_token2] = ACTIONS(1418), - [aux_sym_foreach_statement_token1] = ACTIONS(1418), - [aux_sym_foreach_statement_token2] = ACTIONS(1418), - [aux_sym_if_statement_token1] = ACTIONS(1418), - [aux_sym_if_statement_token2] = ACTIONS(1418), - [aux_sym_else_if_clause_token1] = ACTIONS(1418), - [aux_sym_else_clause_token1] = ACTIONS(1418), - [aux_sym_match_expression_token1] = ACTIONS(1418), - [aux_sym_match_default_expression_token1] = ACTIONS(1418), - [aux_sym_switch_statement_token1] = ACTIONS(1418), - [aux_sym_switch_block_token1] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [aux_sym_clone_expression_token1] = ACTIONS(1418), - [aux_sym_print_intrinsic_token1] = ACTIONS(1418), - [aux_sym_object_creation_expression_token1] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [aux_sym__list_destructing_token1] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_self] = ACTIONS(1418), - [anon_sym_parent] = ACTIONS(1418), - [anon_sym_POUND_LBRACK] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [aux_sym_encapsed_string_token1] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [aux_sym_string_token1] = ACTIONS(1416), - [anon_sym_LT_LT_LT] = ACTIONS(1416), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_boolean] = ACTIONS(1418), - [sym_null] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1416), - [aux_sym_yield_expression_token1] = ACTIONS(1418), - [aux_sym_include_expression_token1] = ACTIONS(1418), - [aux_sym_include_once_expression_token1] = ACTIONS(1418), - [aux_sym_require_expression_token1] = ACTIONS(1418), - [aux_sym_require_once_expression_token1] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - }, - [545] = { - [sym_text_interpolation] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_name] = ACTIONS(1378), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1376), - [aux_sym_function_static_declaration_token1] = ACTIONS(1378), - [aux_sym_global_declaration_token1] = ACTIONS(1378), - [aux_sym_namespace_definition_token1] = ACTIONS(1378), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1378), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1378), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1378), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [aux_sym_trait_declaration_token1] = ACTIONS(1378), - [aux_sym_interface_declaration_token1] = ACTIONS(1378), - [aux_sym_enum_declaration_token1] = ACTIONS(1378), - [aux_sym_enum_case_token1] = ACTIONS(1378), - [aux_sym_class_declaration_token1] = ACTIONS(1378), - [aux_sym_final_modifier_token1] = ACTIONS(1378), - [aux_sym_abstract_modifier_token1] = ACTIONS(1378), - [aux_sym_readonly_modifier_token1] = ACTIONS(1378), - [aux_sym_visibility_modifier_token1] = ACTIONS(1378), - [aux_sym_visibility_modifier_token2] = ACTIONS(1378), - [aux_sym_visibility_modifier_token3] = ACTIONS(1378), - [aux_sym__arrow_function_header_token1] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [aux_sym_cast_type_token1] = ACTIONS(1378), - [aux_sym_echo_statement_token1] = ACTIONS(1378), - [anon_sym_unset] = ACTIONS(1378), - [aux_sym_declare_statement_token1] = ACTIONS(1378), - [aux_sym_declare_statement_token2] = ACTIONS(1378), - [sym_float] = ACTIONS(1378), - [aux_sym_try_statement_token1] = ACTIONS(1378), - [aux_sym_goto_statement_token1] = ACTIONS(1378), - [aux_sym_continue_statement_token1] = ACTIONS(1378), - [aux_sym_break_statement_token1] = ACTIONS(1378), - [sym_integer] = ACTIONS(1378), - [aux_sym_return_statement_token1] = ACTIONS(1378), - [aux_sym_throw_expression_token1] = ACTIONS(1378), - [aux_sym_while_statement_token1] = ACTIONS(1378), - [aux_sym_while_statement_token2] = ACTIONS(1378), - [aux_sym_do_statement_token1] = ACTIONS(1378), - [aux_sym_for_statement_token1] = ACTIONS(1378), - [aux_sym_for_statement_token2] = ACTIONS(1378), - [aux_sym_foreach_statement_token1] = ACTIONS(1378), - [aux_sym_foreach_statement_token2] = ACTIONS(1378), - [aux_sym_if_statement_token1] = ACTIONS(1378), - [aux_sym_if_statement_token2] = ACTIONS(1378), - [aux_sym_else_if_clause_token1] = ACTIONS(1378), - [aux_sym_else_clause_token1] = ACTIONS(1378), - [aux_sym_match_expression_token1] = ACTIONS(1378), - [aux_sym_match_default_expression_token1] = ACTIONS(1378), - [aux_sym_switch_statement_token1] = ACTIONS(1378), - [aux_sym_switch_block_token1] = ACTIONS(1378), - [anon_sym_AT] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [aux_sym_clone_expression_token1] = ACTIONS(1378), - [aux_sym_print_intrinsic_token1] = ACTIONS(1378), - [aux_sym_object_creation_expression_token1] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [aux_sym__list_destructing_token1] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_self] = ACTIONS(1378), - [anon_sym_parent] = ACTIONS(1378), - [anon_sym_POUND_LBRACK] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [aux_sym_encapsed_string_token1] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1376), - [anon_sym_LT_LT_LT] = ACTIONS(1376), - [anon_sym_BQUOTE] = ACTIONS(1376), - [sym_boolean] = ACTIONS(1378), - [sym_null] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1376), - [aux_sym_yield_expression_token1] = ACTIONS(1378), - [aux_sym_include_expression_token1] = ACTIONS(1378), - [aux_sym_include_once_expression_token1] = ACTIONS(1378), - [aux_sym_require_expression_token1] = ACTIONS(1378), - [aux_sym_require_once_expression_token1] = ACTIONS(1378), - [sym_comment] = ACTIONS(5), - }, - [546] = { - [sym_text_interpolation] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_name] = ACTIONS(1422), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1420), - [aux_sym_function_static_declaration_token1] = ACTIONS(1422), - [aux_sym_global_declaration_token1] = ACTIONS(1422), - [aux_sym_namespace_definition_token1] = ACTIONS(1422), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1422), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1422), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1422), - [anon_sym_BSLASH] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [aux_sym_trait_declaration_token1] = ACTIONS(1422), - [aux_sym_interface_declaration_token1] = ACTIONS(1422), - [aux_sym_enum_declaration_token1] = ACTIONS(1422), - [aux_sym_enum_case_token1] = ACTIONS(1422), - [aux_sym_class_declaration_token1] = ACTIONS(1422), - [aux_sym_final_modifier_token1] = ACTIONS(1422), - [aux_sym_abstract_modifier_token1] = ACTIONS(1422), - [aux_sym_readonly_modifier_token1] = ACTIONS(1422), - [aux_sym_visibility_modifier_token1] = ACTIONS(1422), - [aux_sym_visibility_modifier_token2] = ACTIONS(1422), - [aux_sym_visibility_modifier_token3] = ACTIONS(1422), - [aux_sym__arrow_function_header_token1] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [aux_sym_cast_type_token1] = ACTIONS(1422), - [aux_sym_echo_statement_token1] = ACTIONS(1422), - [anon_sym_unset] = ACTIONS(1422), - [aux_sym_declare_statement_token1] = ACTIONS(1422), - [aux_sym_declare_statement_token2] = ACTIONS(1422), - [sym_float] = ACTIONS(1422), - [aux_sym_try_statement_token1] = ACTIONS(1422), - [aux_sym_goto_statement_token1] = ACTIONS(1422), - [aux_sym_continue_statement_token1] = ACTIONS(1422), - [aux_sym_break_statement_token1] = ACTIONS(1422), - [sym_integer] = ACTIONS(1422), - [aux_sym_return_statement_token1] = ACTIONS(1422), - [aux_sym_throw_expression_token1] = ACTIONS(1422), - [aux_sym_while_statement_token1] = ACTIONS(1422), - [aux_sym_while_statement_token2] = ACTIONS(1422), - [aux_sym_do_statement_token1] = ACTIONS(1422), - [aux_sym_for_statement_token1] = ACTIONS(1422), - [aux_sym_for_statement_token2] = ACTIONS(1422), - [aux_sym_foreach_statement_token1] = ACTIONS(1422), - [aux_sym_foreach_statement_token2] = ACTIONS(1422), - [aux_sym_if_statement_token1] = ACTIONS(1422), - [aux_sym_if_statement_token2] = ACTIONS(1422), - [aux_sym_else_if_clause_token1] = ACTIONS(1422), - [aux_sym_else_clause_token1] = ACTIONS(1422), - [aux_sym_match_expression_token1] = ACTIONS(1422), - [aux_sym_match_default_expression_token1] = ACTIONS(1422), - [aux_sym_switch_statement_token1] = ACTIONS(1422), - [aux_sym_switch_block_token1] = ACTIONS(1422), - [anon_sym_AT] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [aux_sym_clone_expression_token1] = ACTIONS(1422), - [aux_sym_print_intrinsic_token1] = ACTIONS(1422), - [aux_sym_object_creation_expression_token1] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [aux_sym__list_destructing_token1] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_self] = ACTIONS(1422), - [anon_sym_parent] = ACTIONS(1422), - [anon_sym_POUND_LBRACK] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [aux_sym_encapsed_string_token1] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [aux_sym_string_token1] = ACTIONS(1420), - [anon_sym_LT_LT_LT] = ACTIONS(1420), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_boolean] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [aux_sym_yield_expression_token1] = ACTIONS(1422), - [aux_sym_include_expression_token1] = ACTIONS(1422), - [aux_sym_include_once_expression_token1] = ACTIONS(1422), - [aux_sym_require_expression_token1] = ACTIONS(1422), - [aux_sym_require_once_expression_token1] = ACTIONS(1422), - [sym_comment] = ACTIONS(5), - }, - [547] = { - [sym_text_interpolation] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_name] = ACTIONS(1426), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1424), - [aux_sym_function_static_declaration_token1] = ACTIONS(1426), - [aux_sym_global_declaration_token1] = ACTIONS(1426), - [aux_sym_namespace_definition_token1] = ACTIONS(1426), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1426), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1426), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1426), - [anon_sym_BSLASH] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [aux_sym_trait_declaration_token1] = ACTIONS(1426), - [aux_sym_interface_declaration_token1] = ACTIONS(1426), - [aux_sym_enum_declaration_token1] = ACTIONS(1426), - [aux_sym_enum_case_token1] = ACTIONS(1426), - [aux_sym_class_declaration_token1] = ACTIONS(1426), - [aux_sym_final_modifier_token1] = ACTIONS(1426), - [aux_sym_abstract_modifier_token1] = ACTIONS(1426), - [aux_sym_readonly_modifier_token1] = ACTIONS(1426), - [aux_sym_visibility_modifier_token1] = ACTIONS(1426), - [aux_sym_visibility_modifier_token2] = ACTIONS(1426), - [aux_sym_visibility_modifier_token3] = ACTIONS(1426), - [aux_sym__arrow_function_header_token1] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [aux_sym_cast_type_token1] = ACTIONS(1426), - [aux_sym_echo_statement_token1] = ACTIONS(1426), - [anon_sym_unset] = ACTIONS(1426), - [aux_sym_declare_statement_token1] = ACTIONS(1426), - [aux_sym_declare_statement_token2] = ACTIONS(1426), - [sym_float] = ACTIONS(1426), - [aux_sym_try_statement_token1] = ACTIONS(1426), - [aux_sym_goto_statement_token1] = ACTIONS(1426), - [aux_sym_continue_statement_token1] = ACTIONS(1426), - [aux_sym_break_statement_token1] = ACTIONS(1426), - [sym_integer] = ACTIONS(1426), - [aux_sym_return_statement_token1] = ACTIONS(1426), - [aux_sym_throw_expression_token1] = ACTIONS(1426), - [aux_sym_while_statement_token1] = ACTIONS(1426), - [aux_sym_while_statement_token2] = ACTIONS(1426), - [aux_sym_do_statement_token1] = ACTIONS(1426), - [aux_sym_for_statement_token1] = ACTIONS(1426), - [aux_sym_for_statement_token2] = ACTIONS(1426), - [aux_sym_foreach_statement_token1] = ACTIONS(1426), - [aux_sym_foreach_statement_token2] = ACTIONS(1426), - [aux_sym_if_statement_token1] = ACTIONS(1426), - [aux_sym_if_statement_token2] = ACTIONS(1426), - [aux_sym_else_if_clause_token1] = ACTIONS(1426), - [aux_sym_else_clause_token1] = ACTIONS(1426), - [aux_sym_match_expression_token1] = ACTIONS(1426), - [aux_sym_match_default_expression_token1] = ACTIONS(1426), - [aux_sym_switch_statement_token1] = ACTIONS(1426), - [aux_sym_switch_block_token1] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [aux_sym_clone_expression_token1] = ACTIONS(1426), - [aux_sym_print_intrinsic_token1] = ACTIONS(1426), - [aux_sym_object_creation_expression_token1] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [aux_sym__list_destructing_token1] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_self] = ACTIONS(1426), - [anon_sym_parent] = ACTIONS(1426), - [anon_sym_POUND_LBRACK] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [aux_sym_encapsed_string_token1] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [aux_sym_string_token1] = ACTIONS(1424), - [anon_sym_LT_LT_LT] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1424), - [sym_boolean] = ACTIONS(1426), - [sym_null] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1424), - [aux_sym_yield_expression_token1] = ACTIONS(1426), - [aux_sym_include_expression_token1] = ACTIONS(1426), - [aux_sym_include_once_expression_token1] = ACTIONS(1426), - [aux_sym_require_expression_token1] = ACTIONS(1426), - [aux_sym_require_once_expression_token1] = ACTIONS(1426), - [sym_comment] = ACTIONS(5), - }, - [548] = { - [sym_text_interpolation] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_name] = ACTIONS(1430), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1428), - [aux_sym_function_static_declaration_token1] = ACTIONS(1430), - [aux_sym_global_declaration_token1] = ACTIONS(1430), - [aux_sym_namespace_definition_token1] = ACTIONS(1430), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1430), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1430), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1430), - [anon_sym_BSLASH] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [aux_sym_trait_declaration_token1] = ACTIONS(1430), - [aux_sym_interface_declaration_token1] = ACTIONS(1430), - [aux_sym_enum_declaration_token1] = ACTIONS(1430), - [aux_sym_enum_case_token1] = ACTIONS(1430), - [aux_sym_class_declaration_token1] = ACTIONS(1430), - [aux_sym_final_modifier_token1] = ACTIONS(1430), - [aux_sym_abstract_modifier_token1] = ACTIONS(1430), - [aux_sym_readonly_modifier_token1] = ACTIONS(1430), - [aux_sym_visibility_modifier_token1] = ACTIONS(1430), - [aux_sym_visibility_modifier_token2] = ACTIONS(1430), - [aux_sym_visibility_modifier_token3] = ACTIONS(1430), - [aux_sym__arrow_function_header_token1] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [aux_sym_cast_type_token1] = ACTIONS(1430), - [aux_sym_echo_statement_token1] = ACTIONS(1430), - [anon_sym_unset] = ACTIONS(1430), - [aux_sym_declare_statement_token1] = ACTIONS(1430), - [aux_sym_declare_statement_token2] = ACTIONS(1430), - [sym_float] = ACTIONS(1430), - [aux_sym_try_statement_token1] = ACTIONS(1430), - [aux_sym_goto_statement_token1] = ACTIONS(1430), - [aux_sym_continue_statement_token1] = ACTIONS(1430), - [aux_sym_break_statement_token1] = ACTIONS(1430), - [sym_integer] = ACTIONS(1430), - [aux_sym_return_statement_token1] = ACTIONS(1430), - [aux_sym_throw_expression_token1] = ACTIONS(1430), - [aux_sym_while_statement_token1] = ACTIONS(1430), - [aux_sym_while_statement_token2] = ACTIONS(1430), - [aux_sym_do_statement_token1] = ACTIONS(1430), - [aux_sym_for_statement_token1] = ACTIONS(1430), - [aux_sym_for_statement_token2] = ACTIONS(1430), - [aux_sym_foreach_statement_token1] = ACTIONS(1430), - [aux_sym_foreach_statement_token2] = ACTIONS(1430), - [aux_sym_if_statement_token1] = ACTIONS(1430), - [aux_sym_if_statement_token2] = ACTIONS(1430), - [aux_sym_else_if_clause_token1] = ACTIONS(1430), - [aux_sym_else_clause_token1] = ACTIONS(1430), - [aux_sym_match_expression_token1] = ACTIONS(1430), - [aux_sym_match_default_expression_token1] = ACTIONS(1430), - [aux_sym_switch_statement_token1] = ACTIONS(1430), - [aux_sym_switch_block_token1] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [aux_sym_clone_expression_token1] = ACTIONS(1430), - [aux_sym_print_intrinsic_token1] = ACTIONS(1430), - [aux_sym_object_creation_expression_token1] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [aux_sym__list_destructing_token1] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_self] = ACTIONS(1430), - [anon_sym_parent] = ACTIONS(1430), - [anon_sym_POUND_LBRACK] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [aux_sym_encapsed_string_token1] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [aux_sym_string_token1] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_boolean] = ACTIONS(1430), - [sym_null] = ACTIONS(1430), - [anon_sym_DOLLAR] = ACTIONS(1428), - [aux_sym_yield_expression_token1] = ACTIONS(1430), - [aux_sym_include_expression_token1] = ACTIONS(1430), - [aux_sym_include_once_expression_token1] = ACTIONS(1430), - [aux_sym_require_expression_token1] = ACTIONS(1430), - [aux_sym_require_once_expression_token1] = ACTIONS(1430), - [sym_comment] = ACTIONS(5), - }, - [549] = { - [sym_text_interpolation] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_name] = ACTIONS(1434), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1432), - [aux_sym_function_static_declaration_token1] = ACTIONS(1434), - [aux_sym_global_declaration_token1] = ACTIONS(1434), - [aux_sym_namespace_definition_token1] = ACTIONS(1434), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1434), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1434), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1434), - [anon_sym_BSLASH] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [aux_sym_trait_declaration_token1] = ACTIONS(1434), - [aux_sym_interface_declaration_token1] = ACTIONS(1434), - [aux_sym_enum_declaration_token1] = ACTIONS(1434), - [aux_sym_enum_case_token1] = ACTIONS(1434), - [aux_sym_class_declaration_token1] = ACTIONS(1434), - [aux_sym_final_modifier_token1] = ACTIONS(1434), - [aux_sym_abstract_modifier_token1] = ACTIONS(1434), - [aux_sym_readonly_modifier_token1] = ACTIONS(1434), - [aux_sym_visibility_modifier_token1] = ACTIONS(1434), - [aux_sym_visibility_modifier_token2] = ACTIONS(1434), - [aux_sym_visibility_modifier_token3] = ACTIONS(1434), - [aux_sym__arrow_function_header_token1] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1432), - [aux_sym_cast_type_token1] = ACTIONS(1434), - [aux_sym_echo_statement_token1] = ACTIONS(1434), - [anon_sym_unset] = ACTIONS(1434), - [aux_sym_declare_statement_token1] = ACTIONS(1434), - [aux_sym_declare_statement_token2] = ACTIONS(1434), - [sym_float] = ACTIONS(1434), - [aux_sym_try_statement_token1] = ACTIONS(1434), - [aux_sym_goto_statement_token1] = ACTIONS(1434), - [aux_sym_continue_statement_token1] = ACTIONS(1434), - [aux_sym_break_statement_token1] = ACTIONS(1434), - [sym_integer] = ACTIONS(1434), - [aux_sym_return_statement_token1] = ACTIONS(1434), - [aux_sym_throw_expression_token1] = ACTIONS(1434), - [aux_sym_while_statement_token1] = ACTIONS(1434), - [aux_sym_while_statement_token2] = ACTIONS(1434), - [aux_sym_do_statement_token1] = ACTIONS(1434), - [aux_sym_for_statement_token1] = ACTIONS(1434), - [aux_sym_for_statement_token2] = ACTIONS(1434), - [aux_sym_foreach_statement_token1] = ACTIONS(1434), - [aux_sym_foreach_statement_token2] = ACTIONS(1434), - [aux_sym_if_statement_token1] = ACTIONS(1434), - [aux_sym_if_statement_token2] = ACTIONS(1434), - [aux_sym_else_if_clause_token1] = ACTIONS(1434), - [aux_sym_else_clause_token1] = ACTIONS(1434), - [aux_sym_match_expression_token1] = ACTIONS(1434), - [aux_sym_match_default_expression_token1] = ACTIONS(1434), - [aux_sym_switch_statement_token1] = ACTIONS(1434), - [aux_sym_switch_block_token1] = ACTIONS(1434), - [anon_sym_AT] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [aux_sym_clone_expression_token1] = ACTIONS(1434), - [aux_sym_print_intrinsic_token1] = ACTIONS(1434), - [aux_sym_object_creation_expression_token1] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [aux_sym__list_destructing_token1] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_self] = ACTIONS(1434), - [anon_sym_parent] = ACTIONS(1434), - [anon_sym_POUND_LBRACK] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [aux_sym_encapsed_string_token1] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1432), - [anon_sym_LT_LT_LT] = ACTIONS(1432), - [anon_sym_BQUOTE] = ACTIONS(1432), - [sym_boolean] = ACTIONS(1434), - [sym_null] = ACTIONS(1434), - [anon_sym_DOLLAR] = ACTIONS(1432), - [aux_sym_yield_expression_token1] = ACTIONS(1434), - [aux_sym_include_expression_token1] = ACTIONS(1434), - [aux_sym_include_once_expression_token1] = ACTIONS(1434), - [aux_sym_require_expression_token1] = ACTIONS(1434), - [aux_sym_require_once_expression_token1] = ACTIONS(1434), - [sym_comment] = ACTIONS(5), - }, - [550] = { - [sym_text_interpolation] = STATE(550), - [sym_name] = ACTIONS(1436), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1438), - [aux_sym_function_static_declaration_token1] = ACTIONS(1436), - [aux_sym_global_declaration_token1] = ACTIONS(1436), - [aux_sym_namespace_definition_token1] = ACTIONS(1436), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1436), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1436), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1436), - [anon_sym_BSLASH] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [aux_sym_trait_declaration_token1] = ACTIONS(1436), - [aux_sym_interface_declaration_token1] = ACTIONS(1436), - [aux_sym_enum_declaration_token1] = ACTIONS(1436), - [anon_sym_COLON] = ACTIONS(1438), - [aux_sym_class_declaration_token1] = ACTIONS(1436), - [aux_sym_final_modifier_token1] = ACTIONS(1436), - [aux_sym_abstract_modifier_token1] = ACTIONS(1436), - [aux_sym_readonly_modifier_token1] = ACTIONS(1436), - [aux_sym_visibility_modifier_token1] = ACTIONS(1436), - [aux_sym_visibility_modifier_token2] = ACTIONS(1436), - [aux_sym_visibility_modifier_token3] = ACTIONS(1436), - [aux_sym__arrow_function_header_token1] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [aux_sym_cast_type_token1] = ACTIONS(1436), - [aux_sym_echo_statement_token1] = ACTIONS(1436), - [anon_sym_unset] = ACTIONS(1436), - [aux_sym_declare_statement_token1] = ACTIONS(1436), - [sym_float] = ACTIONS(1436), - [aux_sym_try_statement_token1] = ACTIONS(1436), - [aux_sym_goto_statement_token1] = ACTIONS(1436), - [aux_sym_continue_statement_token1] = ACTIONS(1436), - [aux_sym_break_statement_token1] = ACTIONS(1436), - [sym_integer] = ACTIONS(1436), - [aux_sym_return_statement_token1] = ACTIONS(1436), - [aux_sym_throw_expression_token1] = ACTIONS(1436), - [aux_sym_while_statement_token1] = ACTIONS(1436), - [aux_sym_do_statement_token1] = ACTIONS(1436), - [aux_sym_for_statement_token1] = ACTIONS(1436), - [aux_sym_foreach_statement_token1] = ACTIONS(1436), - [aux_sym_if_statement_token1] = ACTIONS(1436), - [aux_sym_match_expression_token1] = ACTIONS(1436), - [aux_sym_switch_statement_token1] = ACTIONS(1436), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [aux_sym_clone_expression_token1] = ACTIONS(1436), - [aux_sym_print_intrinsic_token1] = ACTIONS(1436), - [aux_sym_object_creation_expression_token1] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [aux_sym__list_destructing_token1] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_self] = ACTIONS(1436), - [anon_sym_parent] = ACTIONS(1436), - [anon_sym_POUND_LBRACK] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [aux_sym_encapsed_string_token1] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [aux_sym_string_token1] = ACTIONS(1438), - [anon_sym_LT_LT_LT] = ACTIONS(1438), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_boolean] = ACTIONS(1436), - [sym_null] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1438), - [aux_sym_yield_expression_token1] = ACTIONS(1436), - [aux_sym_include_expression_token1] = ACTIONS(1436), - [aux_sym_include_once_expression_token1] = ACTIONS(1436), - [aux_sym_require_expression_token1] = ACTIONS(1436), - [aux_sym_require_once_expression_token1] = ACTIONS(1436), - [sym_comment] = ACTIONS(5), - }, - [551] = { - [sym_text_interpolation] = STATE(551), - [sym_qualified_name] = STATE(821), - [sym_namespace_name_as_prefix] = STATE(2536), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2527), - [sym_arrow_function] = STATE(1047), - [sym_throw_expression] = STATE(1047), - [sym__primary_expression] = STATE(1060), - [sym_parenthesized_expression] = STATE(823), - [sym_class_constant_access_expression] = STATE(883), - [sym_print_intrinsic] = STATE(1047), - [sym_anonymous_function_creation_expression] = STATE(1047), - [sym_object_creation_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_cast_variable] = STATE(813), - [sym_member_access_expression] = STATE(813), - [sym_nullsafe_member_access_expression] = STATE(813), - [sym_scoped_property_access_expression] = STATE(813), - [sym_function_call_expression] = STATE(764), - [sym_scoped_call_expression] = STATE(764), - [sym__scope_resolution_qualifier] = STATE(2482), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(764), - [sym_nullsafe_member_call_expression] = STATE(764), - [sym_subscript_expression] = STATE(764), - [sym__dereferencable_expression] = STATE(1708), - [sym_array_creation_expression] = STATE(823), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1733), - [sym_encapsed_string] = STATE(869), - [sym_string] = STATE(869), - [sym_heredoc] = STATE(869), - [sym_nowdoc] = STATE(869), - [sym_shell_command_expression] = STATE(1047), - [sym__string] = STATE(823), - [sym_dynamic_variable_name] = STATE(764), - [sym_variable_name] = STATE(764), - [sym__reserved_identifier] = STATE(1540), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(1440), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(1442), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(1444), - [sym_comment] = ACTIONS(5), - }, - [552] = { - [sym_text_interpolation] = STATE(552), - [sym_qualified_name] = STATE(687), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2388), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__primary_expression] = STATE(918), - [sym_parenthesized_expression] = STATE(681), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_variable] = STATE(683), - [sym_member_access_expression] = STATE(683), - [sym_nullsafe_member_access_expression] = STATE(683), - [sym_scoped_property_access_expression] = STATE(683), - [sym_function_call_expression] = STATE(640), - [sym_scoped_call_expression] = STATE(640), - [sym__scope_resolution_qualifier] = STATE(2567), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(640), - [sym_nullsafe_member_call_expression] = STATE(640), - [sym_subscript_expression] = STATE(640), - [sym__dereferencable_expression] = STATE(1618), - [sym_array_creation_expression] = STATE(681), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(681), - [sym_dynamic_variable_name] = STATE(640), - [sym_variable_name] = STATE(640), - [sym__reserved_identifier] = STATE(1521), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(1446), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(1448), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1450), - [sym_comment] = ACTIONS(5), - }, - [553] = { - [sym_text_interpolation] = STATE(553), - [sym_qualified_name] = STATE(687), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2440), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__primary_expression] = STATE(918), - [sym_parenthesized_expression] = STATE(681), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_variable] = STATE(683), - [sym_member_access_expression] = STATE(683), - [sym_nullsafe_member_access_expression] = STATE(683), - [sym_scoped_property_access_expression] = STATE(683), - [sym_function_call_expression] = STATE(640), - [sym_scoped_call_expression] = STATE(640), - [sym__scope_resolution_qualifier] = STATE(2567), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(640), - [sym_nullsafe_member_call_expression] = STATE(640), - [sym_subscript_expression] = STATE(640), - [sym__dereferencable_expression] = STATE(1618), - [sym_array_creation_expression] = STATE(681), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(681), - [sym_dynamic_variable_name] = STATE(640), - [sym_variable_name] = STATE(640), - [sym__reserved_identifier] = STATE(1521), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(1446), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(1448), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1450), - [sym_comment] = ACTIONS(5), - }, - [554] = { - [sym_text_interpolation] = STATE(554), - [sym_qualified_name] = STATE(687), - [sym_namespace_name_as_prefix] = STATE(2452), - [sym_namespace_name] = STATE(2535), - [sym_static_modifier] = STATE(2532), - [sym__arrow_function_header] = STATE(2456), - [sym_arrow_function] = STATE(911), - [sym_throw_expression] = STATE(911), - [sym__primary_expression] = STATE(918), - [sym_parenthesized_expression] = STATE(681), - [sym_class_constant_access_expression] = STATE(763), - [sym_print_intrinsic] = STATE(911), - [sym_anonymous_function_creation_expression] = STATE(911), - [sym_object_creation_expression] = STATE(911), - [sym_update_expression] = STATE(911), - [sym_cast_variable] = STATE(683), - [sym_member_access_expression] = STATE(683), - [sym_nullsafe_member_access_expression] = STATE(683), - [sym_scoped_property_access_expression] = STATE(683), - [sym_function_call_expression] = STATE(640), - [sym_scoped_call_expression] = STATE(640), - [sym__scope_resolution_qualifier] = STATE(2567), - [sym_relative_scope] = STATE(2523), - [sym_member_call_expression] = STATE(640), - [sym_nullsafe_member_call_expression] = STATE(640), - [sym_subscript_expression] = STATE(640), - [sym__dereferencable_expression] = STATE(1618), - [sym_array_creation_expression] = STATE(681), - [sym_attribute_group] = STATE(1328), - [sym_attribute_list] = STATE(1755), - [sym_encapsed_string] = STATE(731), - [sym_string] = STATE(731), - [sym_heredoc] = STATE(731), - [sym_nowdoc] = STATE(731), - [sym_shell_command_expression] = STATE(911), - [sym__string] = STATE(681), - [sym_dynamic_variable_name] = STATE(640), - [sym_variable_name] = STATE(640), - [sym__reserved_identifier] = STATE(1521), - [aux_sym_attribute_list_repeat1] = STATE(1319), - [sym_name] = ACTIONS(1446), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(1448), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1450), - [sym_comment] = ACTIONS(5), - }, - [555] = { - [sym_text_interpolation] = STATE(555), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_COMMA] = ACTIONS(1452), - [anon_sym_EQ] = ACTIONS(1454), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [aux_sym_base_clause_token1] = ACTIONS(1452), - [anon_sym_COLON] = ACTIONS(1454), - [aux_sym_class_interface_clause_token1] = ACTIONS(1452), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_STAR_STAR] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1452), - [anon_sym_STAR_EQ] = ACTIONS(1452), - [anon_sym_SLASH_EQ] = ACTIONS(1452), - [anon_sym_PERCENT_EQ] = ACTIONS(1452), - [anon_sym_PLUS_EQ] = ACTIONS(1452), - [anon_sym_DASH_EQ] = ACTIONS(1452), - [anon_sym_DOT_EQ] = ACTIONS(1452), - [anon_sym_LT_LT_EQ] = ACTIONS(1452), - [anon_sym_GT_GT_EQ] = ACTIONS(1452), - [anon_sym_AMP_EQ] = ACTIONS(1452), - [anon_sym_CARET_EQ] = ACTIONS(1452), - [anon_sym_PIPE_EQ] = ACTIONS(1452), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_RBRACK] = ACTIONS(1452), - [aux_sym_binary_expression_token1] = ACTIONS(1452), - [anon_sym_QMARK_QMARK] = ACTIONS(1454), - [aux_sym_binary_expression_token2] = ACTIONS(1452), - [aux_sym_binary_expression_token3] = ACTIONS(1452), - [aux_sym_binary_expression_token4] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT_GT] = ACTIONS(1452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1452), - [anon_sym_LT_EQ_GT] = ACTIONS(1452), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_PERCENT] = ACTIONS(1454), - [sym_comment] = ACTIONS(1456), - }, - [556] = { - [sym_text_interpolation] = STATE(556), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_COMMA] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1460), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [aux_sym_base_clause_token1] = ACTIONS(1458), - [anon_sym_COLON] = ACTIONS(1460), - [aux_sym_class_interface_clause_token1] = ACTIONS(1458), - [anon_sym_EQ_GT] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_QMARK] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_STAR_STAR] = ACTIONS(1460), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_PERCENT_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_DOT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_GT_EQ] = ACTIONS(1458), - [anon_sym_AMP_EQ] = ACTIONS(1458), - [anon_sym_CARET_EQ] = ACTIONS(1458), - [anon_sym_PIPE_EQ] = ACTIONS(1458), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1458), - [anon_sym_DASH_GT] = ACTIONS(1458), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_RBRACK] = ACTIONS(1458), - [aux_sym_binary_expression_token1] = ACTIONS(1458), - [anon_sym_QMARK_QMARK] = ACTIONS(1460), - [aux_sym_binary_expression_token2] = ACTIONS(1458), - [aux_sym_binary_expression_token3] = ACTIONS(1458), - [aux_sym_binary_expression_token4] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1460), - [anon_sym_BANG_EQ] = ACTIONS(1460), - [anon_sym_LT_GT] = ACTIONS(1458), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1458), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_LT_EQ] = ACTIONS(1460), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_EQ_GT] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_SLASH] = ACTIONS(1460), - [anon_sym_PERCENT] = ACTIONS(1460), - [sym_comment] = ACTIONS(1456), - }, - [557] = { - [sym_text_interpolation] = STATE(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_EQ] = ACTIONS(1464), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [aux_sym_base_clause_token1] = ACTIONS(1462), - [anon_sym_COLON] = ACTIONS(1464), - [aux_sym_class_interface_clause_token1] = ACTIONS(1462), - [anon_sym_EQ_GT] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_RPAREN] = ACTIONS(1462), - [anon_sym_QMARK] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_STAR_STAR] = ACTIONS(1464), - [anon_sym_COLON_COLON] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1462), - [anon_sym_STAR_EQ] = ACTIONS(1462), - [anon_sym_SLASH_EQ] = ACTIONS(1462), - [anon_sym_PERCENT_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1462), - [anon_sym_DASH_EQ] = ACTIONS(1462), - [anon_sym_DOT_EQ] = ACTIONS(1462), - [anon_sym_LT_LT_EQ] = ACTIONS(1462), - [anon_sym_GT_GT_EQ] = ACTIONS(1462), - [anon_sym_AMP_EQ] = ACTIONS(1462), - [anon_sym_CARET_EQ] = ACTIONS(1462), - [anon_sym_PIPE_EQ] = ACTIONS(1462), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1462), - [anon_sym_DASH_GT] = ACTIONS(1462), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_RBRACK] = ACTIONS(1462), - [aux_sym_binary_expression_token1] = ACTIONS(1462), - [anon_sym_QMARK_QMARK] = ACTIONS(1464), - [aux_sym_binary_expression_token2] = ACTIONS(1462), - [aux_sym_binary_expression_token3] = ACTIONS(1462), - [aux_sym_binary_expression_token4] = ACTIONS(1462), - [anon_sym_PIPE_PIPE] = ACTIONS(1462), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT_GT] = ACTIONS(1462), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1462), - [anon_sym_LT_EQ_GT] = ACTIONS(1462), - [anon_sym_LT_LT] = ACTIONS(1464), - [anon_sym_GT_GT] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_PERCENT] = ACTIONS(1464), - [sym_comment] = ACTIONS(1456), - }, - [558] = { - [sym_text_interpolation] = STATE(558), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_COMMA] = ACTIONS(1466), - [anon_sym_EQ] = ACTIONS(1468), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [aux_sym_base_clause_token1] = ACTIONS(1466), - [anon_sym_COLON] = ACTIONS(1468), - [aux_sym_class_interface_clause_token1] = ACTIONS(1466), - [anon_sym_EQ_GT] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_RPAREN] = ACTIONS(1466), - [anon_sym_QMARK] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_STAR_STAR] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1466), - [anon_sym_STAR_EQ] = ACTIONS(1466), - [anon_sym_SLASH_EQ] = ACTIONS(1466), - [anon_sym_PERCENT_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [anon_sym_DASH_EQ] = ACTIONS(1466), - [anon_sym_DOT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_GT_EQ] = ACTIONS(1466), - [anon_sym_AMP_EQ] = ACTIONS(1466), - [anon_sym_CARET_EQ] = ACTIONS(1466), - [anon_sym_PIPE_EQ] = ACTIONS(1466), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1466), - [anon_sym_DASH_GT] = ACTIONS(1466), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_RBRACK] = ACTIONS(1466), - [aux_sym_binary_expression_token1] = ACTIONS(1466), - [anon_sym_QMARK_QMARK] = ACTIONS(1468), - [aux_sym_binary_expression_token2] = ACTIONS(1466), - [aux_sym_binary_expression_token3] = ACTIONS(1466), - [aux_sym_binary_expression_token4] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_CARET] = ACTIONS(1468), - [anon_sym_EQ_EQ] = ACTIONS(1468), - [anon_sym_BANG_EQ] = ACTIONS(1468), - [anon_sym_LT_GT] = ACTIONS(1466), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1466), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1468), - [anon_sym_LT_EQ] = ACTIONS(1468), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_EQ_GT] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym_PERCENT] = ACTIONS(1468), - [sym_comment] = ACTIONS(1456), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(559), 1, - sym_text_interpolation, - STATE(574), 1, - sym_arguments, - ACTIONS(1472), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1470), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [79] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(560), 1, - sym_text_interpolation, - STATE(575), 1, - sym_arguments, - ACTIONS(1478), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1476), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [158] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(561), 1, - sym_text_interpolation, - STATE(573), 1, - sym_arguments, - ACTIONS(1482), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1480), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [237] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(562), 1, - sym_text_interpolation, - STATE(571), 1, - sym_arguments, - ACTIONS(1486), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1484), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [316] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(563), 1, - sym_text_interpolation, - STATE(570), 1, - sym_arguments, - ACTIONS(1490), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1488), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [395] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1496), 1, - anon_sym_EQ, - STATE(564), 1, - sym_text_interpolation, - STATE(565), 1, - sym_arguments, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1502), 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(1492), 18, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1494), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [482] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(565), 1, - sym_text_interpolation, - ACTIONS(1506), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1504), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [556] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(566), 1, - sym_text_interpolation, - ACTIONS(1510), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1508), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [630] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(567), 1, - sym_text_interpolation, - ACTIONS(1514), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1512), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [704] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(568), 1, - sym_text_interpolation, - ACTIONS(1518), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1516), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [778] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(569), 1, - sym_text_interpolation, - ACTIONS(1522), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1520), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [852] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(570), 1, - sym_text_interpolation, - ACTIONS(1526), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1524), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [926] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(571), 1, - sym_text_interpolation, - ACTIONS(1530), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1528), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1000] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(572), 1, - sym_text_interpolation, - ACTIONS(1534), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1532), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1074] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(573), 1, - sym_text_interpolation, - ACTIONS(1538), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1536), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1148] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(574), 1, - sym_text_interpolation, - ACTIONS(1542), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1540), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1222] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(575), 1, - sym_text_interpolation, - ACTIONS(1546), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1544), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1296] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(576), 1, - sym_text_interpolation, - ACTIONS(1550), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1548), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1370] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(577), 1, - sym_text_interpolation, - ACTIONS(1554), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1552), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1444] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1556), 1, - anon_sym_EQ, - STATE(565), 1, - sym_arguments, - STATE(578), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1558), 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(1492), 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(1494), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1529] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1496), 1, - anon_sym_EQ, - STATE(579), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1502), 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(1492), 18, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1494), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1610] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1560), 1, - anon_sym_EQ, - STATE(565), 1, - sym_arguments, - STATE(580), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1558), 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(1492), 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(1494), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1695] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1562), 1, - anon_sym_EQ, - STATE(565), 1, - sym_arguments, - STATE(581), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1564), 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(1492), 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(1494), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1779] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1566), 1, - anon_sym_EQ, - STATE(565), 1, - sym_arguments, - STATE(582), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1564), 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(1492), 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(1494), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1863] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1496), 1, - anon_sym_EQ, - ACTIONS(1568), 1, - anon_sym_LPAREN, - STATE(583), 1, - sym_text_interpolation, - STATE(613), 1, - sym_arguments, - ACTIONS(1570), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1502), 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(1492), 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(1494), 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, - [1946] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym_text_interpolation, - STATE(598), 1, - sym_arguments, - ACTIONS(1472), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1470), 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, - [2021] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - ACTIONS(1572), 1, - anon_sym_EQ, - STATE(585), 1, - sym_text_interpolation, - STATE(613), 1, - sym_arguments, - ACTIONS(1570), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1574), 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(1492), 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(1494), 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, - [2104] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1560), 1, - anon_sym_EQ, - STATE(586), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1558), 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(1492), 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(1494), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2183] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_EQ, - STATE(587), 1, - sym_text_interpolation, - STATE(613), 1, - sym_arguments, - ACTIONS(1570), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1574), 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(1492), 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(1494), 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, - [2266] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - STATE(588), 1, - sym_text_interpolation, - STATE(605), 1, - sym_arguments, - ACTIONS(1478), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1476), 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, - [2341] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1560), 1, - anon_sym_EQ, - ACTIONS(1578), 1, - anon_sym_RPAREN, - STATE(565), 1, - sym_arguments, - STATE(589), 1, - sym_text_interpolation, - STATE(2036), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1558), 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(1494), 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, - [2430] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1556), 1, - anon_sym_EQ, - STATE(590), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1558), 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(1492), 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(1494), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2509] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - STATE(591), 1, - sym_text_interpolation, - STATE(614), 1, - sym_arguments, - ACTIONS(1490), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1488), 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, - [2584] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_text_interpolation, - STATE(595), 1, - sym_arguments, - ACTIONS(1482), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1480), 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, - [2659] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - STATE(593), 1, - sym_text_interpolation, - STATE(606), 1, - sym_arguments, - ACTIONS(1486), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1484), 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, - [2734] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1496), 1, - anon_sym_EQ, - STATE(565), 1, - sym_arguments, - STATE(594), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1502), 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(1494), 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, - [2817] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(595), 1, - sym_text_interpolation, - ACTIONS(1538), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1536), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [2887] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1560), 1, - anon_sym_EQ, - STATE(565), 1, - sym_arguments, - STATE(596), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1580), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1558), 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(1494), 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, - [2971] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1582), 1, - anon_sym_EQ, - STATE(565), 1, - sym_arguments, - STATE(597), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1584), 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(1492), 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(1494), 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, - [3053] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(598), 1, - sym_text_interpolation, - ACTIONS(1542), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1540), 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, - [3123] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(599), 1, - sym_text_interpolation, - ACTIONS(1460), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1458), 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, - [3193] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1560), 1, - anon_sym_EQ, - STATE(565), 1, - sym_arguments, - STATE(600), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1586), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1558), 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(1494), 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, - [3277] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(601), 1, - sym_text_interpolation, - ACTIONS(1554), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1552), 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, - [3347] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(602), 1, - sym_text_interpolation, - ACTIONS(1468), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1466), 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, - [3417] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(603), 1, - sym_text_interpolation, - ACTIONS(1522), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1520), 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, - [3487] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1562), 1, - anon_sym_EQ, - STATE(604), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1564), 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(1492), 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(1494), 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, - [3565] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(605), 1, - sym_text_interpolation, - ACTIONS(1546), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1544), 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, - [3635] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(606), 1, - sym_text_interpolation, - ACTIONS(1530), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1528), 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, - [3705] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(607), 1, - sym_text_interpolation, - ACTIONS(1518), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1516), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - 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, - [3775] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(608), 1, - sym_text_interpolation, - ACTIONS(1550), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1548), 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, - [3845] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(609), 1, - sym_text_interpolation, - ACTIONS(1510), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1508), 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, - [3915] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(610), 1, - sym_text_interpolation, - ACTIONS(1514), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1512), 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, - [3985] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(611), 1, - sym_text_interpolation, - ACTIONS(1534), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1532), 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, - [4055] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(612), 1, - sym_text_interpolation, - ACTIONS(1454), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1452), 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, - [4125] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(613), 1, - sym_text_interpolation, - ACTIONS(1506), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1504), 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, - [4195] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(614), 1, - sym_text_interpolation, - ACTIONS(1526), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1524), 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, - [4265] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_EQ, - STATE(565), 1, - sym_arguments, - STATE(615), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1584), 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(1492), 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(1494), 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, - [4347] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1566), 1, - anon_sym_EQ, - STATE(616), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1564), 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(1492), 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(1494), 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, - [4425] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1566), 1, - anon_sym_EQ, - STATE(565), 1, - sym_arguments, - STATE(617), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1590), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1564), 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(1494), 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, - [4509] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(618), 1, - sym_text_interpolation, - ACTIONS(1464), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1462), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [4579] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1576), 1, - anon_sym_EQ, - STATE(619), 1, - sym_text_interpolation, - ACTIONS(1570), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1574), 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(1492), 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(1494), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4656] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1566), 1, - anon_sym_EQ, - STATE(565), 1, - sym_arguments, - STATE(620), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1593), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1564), 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(1494), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4739] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1572), 1, - anon_sym_EQ, - STATE(621), 1, - sym_text_interpolation, - ACTIONS(1570), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1574), 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(1492), 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(1494), 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, - [4816] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1560), 1, - anon_sym_EQ, - ACTIONS(1578), 1, - anon_sym_RPAREN, - STATE(622), 1, - sym_text_interpolation, - STATE(2036), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1558), 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(1494), 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, - [4899] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1496), 1, - anon_sym_EQ, - STATE(623), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1502), 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(1494), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4976] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1496), 1, - anon_sym_EQ, - STATE(624), 1, - sym_text_interpolation, - ACTIONS(1570), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1502), 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(1492), 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(1494), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5053] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1566), 1, - anon_sym_EQ, - STATE(625), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1590), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1564), 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(1494), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5131] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1588), 1, - anon_sym_EQ, - STATE(626), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1584), 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(1492), 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(1494), 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, - [5207] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1582), 1, - anon_sym_EQ, - STATE(627), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1584), 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(1492), 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(1494), 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, - [5283] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1560), 1, - anon_sym_EQ, - STATE(628), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1586), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1558), 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(1494), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5361] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1560), 1, - anon_sym_EQ, - STATE(629), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1580), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1558), 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(1494), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5439] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1566), 1, - anon_sym_EQ, - STATE(630), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1593), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1492), 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(1564), 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(1494), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5516] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(631), 1, - sym_text_interpolation, - STATE(661), 1, - sym_arguments, - ACTIONS(1490), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1488), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5581] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(632), 1, - sym_text_interpolation, - STATE(645), 1, - sym_arguments, - ACTIONS(1482), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1480), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5646] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(633), 1, - sym_text_interpolation, - ACTIONS(1510), 13, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1508), 34, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_class_interface_clause_token1, - aux_sym_use_instead_of_clause_token1, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5707] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(634), 1, - sym_text_interpolation, - STATE(649), 1, - sym_arguments, - ACTIONS(1486), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1484), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5772] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(565), 1, - sym_arguments, - STATE(635), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1492), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5843] = 29, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(228), 1, - aux_sym_final_modifier_token1, - ACTIONS(230), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1603), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1605), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1609), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(1611), 1, - sym_var_modifier, - ACTIONS(1615), 1, - anon_sym_QMARK, - ACTIONS(1617), 1, - anon_sym_DOLLAR, - STATE(636), 1, - sym_text_interpolation, - STATE(1072), 1, - aux_sym_property_declaration_repeat1, - STATE(1292), 1, - sym__modifier, - STATE(1531), 1, - sym__types, - STATE(1539), 1, - sym_qualified_name, - STATE(1662), 1, - sym_variable_name, - STATE(1859), 1, - sym__function_definition_header, - STATE(1860), 1, - sym_property_element, - STATE(1864), 1, - sym__type, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(1613), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1290), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [5952] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(637), 1, - sym_text_interpolation, - STATE(656), 1, - sym_arguments, - ACTIONS(1472), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1470), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6017] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(638), 1, - sym_text_interpolation, - STATE(647), 1, - sym_arguments, - ACTIONS(1478), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1476), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6082] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(639), 1, - sym_text_interpolation, - STATE(653), 1, - sym_arguments, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1492), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6153] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(640), 1, - sym_text_interpolation, - STATE(653), 1, - sym_arguments, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1492), 25, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6222] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(641), 1, - sym_text_interpolation, - STATE(653), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1496), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1502), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6289] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(565), 1, - sym_arguments, - STATE(642), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1621), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1619), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6360] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(643), 1, - sym_text_interpolation, - STATE(713), 1, - sym_arguments, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1625), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6431] = 29, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(228), 1, - aux_sym_final_modifier_token1, - ACTIONS(230), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1603), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1605), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1609), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(1611), 1, - sym_var_modifier, - ACTIONS(1615), 1, - anon_sym_QMARK, - ACTIONS(1617), 1, - anon_sym_DOLLAR, - STATE(644), 1, - sym_text_interpolation, - STATE(1072), 1, - aux_sym_property_declaration_repeat1, - STATE(1292), 1, - sym__modifier, - STATE(1531), 1, - sym__types, - STATE(1539), 1, - sym_qualified_name, - STATE(1662), 1, - sym_variable_name, - STATE(1845), 1, - sym__function_definition_header, - STATE(1847), 1, - sym_property_element, - STATE(2054), 1, - sym__type, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(1613), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1290), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [6540] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(645), 1, - sym_text_interpolation, - ACTIONS(1538), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1536), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6600] = 30, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1629), 1, - sym_name, - ACTIONS(1631), 1, - aux_sym_class_declaration_token1, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - STATE(646), 1, - sym_text_interpolation, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1676), 1, - sym__dereferencable_expression, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2476), 1, - sym_attribute_list, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - STATE(2578), 1, - sym__scope_resolution_qualifier, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(691), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1675), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(697), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(699), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1526), 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, - [6710] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(647), 1, - sym_text_interpolation, - ACTIONS(1546), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1544), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6770] = 30, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1637), 1, - sym_name, - ACTIONS(1641), 1, - aux_sym_class_declaration_token1, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - STATE(648), 1, - sym_text_interpolation, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1667), 1, - sym__dereferencable_expression, - STATE(2454), 1, - sym_attribute_list, - STATE(2486), 1, - sym__scope_resolution_qualifier, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(810), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1675), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(1639), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(805), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(809), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1526), 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, - [6880] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(649), 1, - sym_text_interpolation, - ACTIONS(1530), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1528), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6940] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(650), 1, - sym_text_interpolation, - ACTIONS(1534), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1532), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7000] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(651), 1, - sym_text_interpolation, - ACTIONS(1647), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1645), 34, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOLLAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7060] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(652), 1, - sym_text_interpolation, - ACTIONS(1454), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1452), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7120] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(653), 1, - sym_text_interpolation, - ACTIONS(1506), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1504), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7180] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(654), 1, - sym_text_interpolation, - ACTIONS(1514), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1512), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7240] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(571), 1, - sym_arguments, - STATE(655), 1, - sym_text_interpolation, - ACTIONS(1651), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1649), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_use_instead_of_clause_token1, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7304] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(656), 1, - sym_text_interpolation, - ACTIONS(1542), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1540), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7364] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(657), 1, - sym_text_interpolation, - ACTIONS(1554), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7424] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(658), 1, - sym_text_interpolation, - ACTIONS(1550), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1548), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7484] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(659), 1, - sym_text_interpolation, - ACTIONS(1518), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1516), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7544] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(660), 1, - sym_text_interpolation, - ACTIONS(1468), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1466), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7604] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(661), 1, - sym_text_interpolation, - ACTIONS(1526), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1524), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7664] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(662), 1, - sym_text_interpolation, - ACTIONS(1522), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1520), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7724] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(663), 1, - sym_text_interpolation, - ACTIONS(1460), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1458), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7784] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(664), 1, - sym_text_interpolation, - ACTIONS(1510), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1508), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7844] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(665), 1, - sym_text_interpolation, - ACTIONS(1464), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1462), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7904] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(666), 1, - sym_text_interpolation, - STATE(724), 1, - sym_arguments, - ACTIONS(1482), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1480), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7967] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(574), 1, - sym_arguments, - STATE(667), 1, - sym_text_interpolation, - ACTIONS(1472), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1470), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8028] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1655), 1, - anon_sym_COMMA, - ACTIONS(1657), 1, - anon_sym_RPAREN, - ACTIONS(1659), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1661), 1, - anon_sym_QMARK, - ACTIONS(1663), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(668), 1, - sym_text_interpolation, - STATE(1155), 1, - sym_attribute_list, - STATE(1156), 1, - sym_visibility_modifier, - STATE(1301), 1, - aux_sym_attribute_list_repeat1, - STATE(1302), 1, - sym_attribute_group, - STATE(1539), 1, - sym_qualified_name, - STATE(1598), 1, - sym__types, - STATE(1640), 1, - sym__type, - STATE(1879), 1, - sym_variable_name, - STATE(1882), 1, - sym_reference_modifier, - STATE(2481), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(234), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1878), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [8135] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(669), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1621), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1619), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8200] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(670), 1, - sym_text_interpolation, - STATE(708), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1669), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1667), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8265] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(570), 1, - sym_arguments, - STATE(671), 1, - sym_text_interpolation, - ACTIONS(1490), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1488), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8326] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(573), 1, - sym_arguments, - STATE(672), 1, - sym_text_interpolation, - ACTIONS(1482), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1480), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8387] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(571), 1, - sym_arguments, - STATE(673), 1, - sym_text_interpolation, - ACTIONS(1486), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1484), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8448] = 26, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1671), 1, - sym_name, - ACTIONS(1677), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1680), 1, - anon_sym_BSLASH, - ACTIONS(1683), 1, - anon_sym_RBRACE, - ACTIONS(1685), 1, - anon_sym_LPAREN, - ACTIONS(1688), 1, - aux_sym_cast_type_token1, - ACTIONS(1691), 1, - anon_sym_LBRACK, - ACTIONS(1700), 1, - anon_sym_LT_LT_LT, - ACTIONS(1703), 1, - anon_sym_DOLLAR, - STATE(1541), 1, - sym_class_constant_access_expression, - STATE(1688), 1, - sym__dereferencable_expression, - STATE(2449), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(1694), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(1697), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(674), 2, - sym_text_interpolation, - aux_sym_use_list_repeat1, - STATE(1518), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2196), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(1674), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1675), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1526), 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, - [8549] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(675), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1621), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1619), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8614] = 27, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1706), 1, - sym_name, - ACTIONS(1708), 1, - anon_sym_RBRACE, - STATE(676), 1, - sym_text_interpolation, - STATE(698), 1, - aux_sym_use_list_repeat1, - STATE(1541), 1, - sym_class_constant_access_expression, - STATE(1688), 1, - sym__dereferencable_expression, - STATE(2449), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1518), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2196), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1675), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1526), 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, - [8717] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(575), 1, - sym_arguments, - STATE(677), 1, - sym_text_interpolation, - ACTIONS(1478), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1476), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8778] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(678), 1, - sym_text_interpolation, - STATE(721), 1, - sym_arguments, - ACTIONS(1486), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1484), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8841] = 29, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(290), 1, - aux_sym__list_destructing_token1, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(687), 1, - anon_sym_AMP, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - sym_name, - STATE(679), 1, - sym_text_interpolation, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(1688), 1, - sym__dereferencable_expression, - STATE(2014), 1, - sym_by_ref, - STATE(2016), 1, - sym__list_destructing, - STATE(2449), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1518), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1526), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1498), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1416), 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, - [8948] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(649), 1, - sym_arguments, - STATE(680), 1, - sym_text_interpolation, - ACTIONS(1651), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1649), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9011] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(653), 1, - sym_arguments, - STATE(681), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1492), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9076] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(571), 1, - sym_arguments, - STATE(682), 1, - sym_text_interpolation, - ACTIONS(1486), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1484), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9139] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(683), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1492), 25, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9202] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(684), 1, - sym_text_interpolation, - STATE(711), 1, - sym_arguments, - ACTIONS(1490), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1488), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9265] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(685), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1492), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9330] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1659), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1661), 1, - anon_sym_QMARK, - ACTIONS(1663), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(1712), 1, - anon_sym_COMMA, - ACTIONS(1714), 1, - anon_sym_RPAREN, - STATE(686), 1, - sym_text_interpolation, - STATE(1155), 1, - sym_attribute_list, - STATE(1156), 1, - sym_visibility_modifier, - STATE(1301), 1, - aux_sym_attribute_list_repeat1, - STATE(1302), 1, - sym_attribute_group, - STATE(1539), 1, - sym_qualified_name, - STATE(1598), 1, - sym__types, - STATE(1640), 1, - sym__type, - STATE(1879), 1, - sym_variable_name, - STATE(1882), 1, - sym_reference_modifier, - STATE(2481), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(234), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1881), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [9437] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(653), 1, - sym_arguments, - STATE(687), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1492), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9502] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(688), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1496), 13, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1502), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9563] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(689), 1, - sym_text_interpolation, - STATE(708), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1496), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1502), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9628] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(573), 1, - sym_arguments, - STATE(690), 1, - sym_text_interpolation, - ACTIONS(1482), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1480), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9691] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(691), 1, - sym_text_interpolation, - STATE(713), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1625), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9756] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(570), 1, - sym_arguments, - STATE(692), 1, - sym_text_interpolation, - ACTIONS(1490), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1488), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9819] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(575), 1, - sym_arguments, - STATE(693), 1, - sym_text_interpolation, - ACTIONS(1478), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1476), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9882] = 29, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(290), 1, - aux_sym__list_destructing_token1, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(687), 1, - anon_sym_AMP, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - sym_name, - STATE(694), 1, - sym_text_interpolation, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(1688), 1, - sym__dereferencable_expression, - STATE(2272), 1, - sym_by_ref, - STATE(2298), 1, - sym__list_destructing, - STATE(2449), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1518), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1526), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1501), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1467), 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, - [9989] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(695), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1492), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10054] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(696), 1, - sym_text_interpolation, - STATE(741), 1, - sym_arguments, - ACTIONS(1478), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1476), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10117] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1716), 1, - anon_sym_LPAREN, - STATE(697), 1, - sym_text_interpolation, - STATE(897), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1625), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10182] = 27, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1706), 1, - sym_name, - ACTIONS(1718), 1, - anon_sym_RBRACE, - STATE(674), 1, - aux_sym_use_list_repeat1, - STATE(698), 1, - sym_text_interpolation, - STATE(1541), 1, - sym_class_constant_access_expression, - STATE(1688), 1, - sym__dereferencable_expression, - STATE(2449), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1518), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2196), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1675), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1526), 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, - [10285] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(699), 1, - sym_text_interpolation, - STATE(713), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1625), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10350] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(574), 1, - sym_arguments, - STATE(700), 1, - sym_text_interpolation, - ACTIONS(1472), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1470), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10413] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(701), 1, - sym_text_interpolation, - STATE(734), 1, - sym_arguments, - ACTIONS(1472), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1470), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10476] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_EQ, - STATE(702), 1, - sym_text_interpolation, - ACTIONS(1724), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1722), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1720), 30, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10539] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(703), 1, - sym_text_interpolation, - STATE(708), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1731), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1729), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10604] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(704), 1, - sym_text_interpolation, - ACTIONS(1735), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1733), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10662] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(705), 1, - sym_text_interpolation, - ACTIONS(1468), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1466), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10720] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(706), 1, - sym_text_interpolation, - ACTIONS(1739), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1737), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10778] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(707), 1, - sym_text_interpolation, - ACTIONS(1522), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1520), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10836] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(708), 1, - sym_text_interpolation, - ACTIONS(1506), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1504), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10894] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(709), 1, - sym_text_interpolation, - ACTIONS(1743), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1741), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10952] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(710), 1, - sym_text_interpolation, - ACTIONS(1747), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1745), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11010] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(711), 1, - sym_text_interpolation, - ACTIONS(1526), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1524), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11068] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(712), 1, - sym_text_interpolation, - ACTIONS(1751), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1749), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11126] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(713), 1, - sym_text_interpolation, - ACTIONS(1504), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1755), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1753), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11186] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(714), 1, - sym_text_interpolation, - ACTIONS(1436), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1438), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11244] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(715), 1, - sym_text_interpolation, - ACTIONS(1454), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1452), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11302] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1659), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1661), 1, - anon_sym_QMARK, - ACTIONS(1663), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(1757), 1, - anon_sym_RPAREN, - STATE(716), 1, - sym_text_interpolation, - STATE(1155), 1, - sym_attribute_list, - STATE(1156), 1, - sym_visibility_modifier, - STATE(1301), 1, - aux_sym_attribute_list_repeat1, - STATE(1302), 1, - sym_attribute_group, - STATE(1539), 1, - sym_qualified_name, - STATE(1598), 1, - sym__types, - STATE(1640), 1, - sym__type, - STATE(1879), 1, - sym_variable_name, - STATE(1882), 1, - sym_reference_modifier, - STATE(2481), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(234), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2108), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [11406] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(717), 1, - sym_text_interpolation, - ACTIONS(1518), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1516), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11464] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(718), 1, - sym_text_interpolation, - ACTIONS(1534), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1532), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11522] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(719), 1, - sym_text_interpolation, - ACTIONS(1761), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11580] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(720), 1, - sym_text_interpolation, - ACTIONS(1554), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11638] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(721), 1, - sym_text_interpolation, - ACTIONS(1530), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1528), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11696] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(722), 1, - sym_text_interpolation, - ACTIONS(1765), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1763), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11754] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(723), 1, - sym_text_interpolation, - ACTIONS(1514), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1512), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11812] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(724), 1, - sym_text_interpolation, - ACTIONS(1538), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1536), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11870] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(725), 1, - sym_text_interpolation, - ACTIONS(1464), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1462), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11928] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(726), 1, - sym_text_interpolation, - ACTIONS(1769), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1767), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11986] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(727), 1, - sym_text_interpolation, - ACTIONS(1773), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1771), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12044] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(728), 1, - sym_text_interpolation, - ACTIONS(1777), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1775), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12102] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_COLON_COLON, - STATE(729), 1, - sym_text_interpolation, - ACTIONS(1510), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1508), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12162] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(730), 1, - sym_text_interpolation, - ACTIONS(1783), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1781), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12220] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(731), 1, - sym_text_interpolation, - ACTIONS(1787), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1785), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12278] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(732), 1, - sym_text_interpolation, - ACTIONS(1791), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1789), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12336] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1659), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1661), 1, - anon_sym_QMARK, - ACTIONS(1663), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(1793), 1, - anon_sym_RPAREN, - STATE(733), 1, - sym_text_interpolation, - STATE(1155), 1, - sym_attribute_list, - STATE(1156), 1, - sym_visibility_modifier, - STATE(1301), 1, - aux_sym_attribute_list_repeat1, - STATE(1302), 1, - sym_attribute_group, - STATE(1539), 1, - sym_qualified_name, - STATE(1598), 1, - sym__types, - STATE(1640), 1, - sym__type, - STATE(1879), 1, - sym_variable_name, - STATE(1882), 1, - sym_reference_modifier, - STATE(2481), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(234), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2108), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [12440] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(734), 1, - sym_text_interpolation, - ACTIONS(1542), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1540), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12498] = 28, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(687), 1, - anon_sym_AMP, - ACTIONS(825), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - sym_name, - STATE(735), 1, - sym_text_interpolation, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(1688), 1, - sym__dereferencable_expression, - STATE(2194), 1, - sym__array_destructing, - STATE(2199), 1, - sym_by_ref, - STATE(2449), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1518), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1526), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1543), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1436), 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, - [12602] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(736), 1, - sym_text_interpolation, - ACTIONS(1797), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1795), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12660] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(737), 1, - sym_text_interpolation, - ACTIONS(1722), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1720), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12718] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(738), 1, - sym_text_interpolation, - ACTIONS(1801), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1799), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12776] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(739), 1, - sym_text_interpolation, - ACTIONS(1805), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1803), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12834] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(740), 1, - sym_text_interpolation, - ACTIONS(1460), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1458), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12892] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(741), 1, - sym_text_interpolation, - ACTIONS(1546), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1544), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12950] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(742), 1, - sym_text_interpolation, - ACTIONS(1809), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1807), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13008] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(743), 1, - sym_text_interpolation, - ACTIONS(1813), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1811), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13066] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(744), 1, - sym_text_interpolation, - ACTIONS(1817), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1815), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13124] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1659), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1661), 1, - anon_sym_QMARK, - ACTIONS(1663), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(1819), 1, - anon_sym_RPAREN, - STATE(745), 1, - sym_text_interpolation, - STATE(1155), 1, - sym_attribute_list, - STATE(1156), 1, - sym_visibility_modifier, - STATE(1301), 1, - aux_sym_attribute_list_repeat1, - STATE(1302), 1, - sym_attribute_group, - STATE(1539), 1, - sym_qualified_name, - STATE(1598), 1, - sym__types, - STATE(1640), 1, - sym__type, - STATE(1879), 1, - sym_variable_name, - STATE(1882), 1, - sym_reference_modifier, - STATE(2481), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(234), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2108), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [13228] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(746), 1, - sym_text_interpolation, - ACTIONS(1550), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1548), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13286] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(747), 1, - sym_text_interpolation, - ACTIONS(1823), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1821), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13344] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1659), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1661), 1, - anon_sym_QMARK, - ACTIONS(1663), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(1825), 1, - anon_sym_RPAREN, - STATE(748), 1, - sym_text_interpolation, - STATE(1155), 1, - sym_attribute_list, - STATE(1156), 1, - sym_visibility_modifier, - STATE(1301), 1, - aux_sym_attribute_list_repeat1, - STATE(1302), 1, - sym_attribute_group, - STATE(1539), 1, - sym_qualified_name, - STATE(1598), 1, - sym__types, - STATE(1640), 1, - sym__type, - STATE(1879), 1, - sym_variable_name, - STATE(1882), 1, - sym_reference_modifier, - STATE(2481), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(234), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2108), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [13448] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(749), 1, - sym_text_interpolation, - STATE(866), 1, - sym_arguments, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1625), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 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, - [13515] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(750), 1, - sym_text_interpolation, - STATE(782), 1, - sym_arguments, - ACTIONS(1472), 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(1470), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13576] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(751), 1, - sym_text_interpolation, - STATE(783), 1, - sym_arguments, - ACTIONS(1486), 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(1484), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13637] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(752), 1, - sym_text_interpolation, - STATE(780), 1, - sym_arguments, - ACTIONS(1478), 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(1476), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13698] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(565), 1, - sym_arguments, - STATE(753), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1621), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1619), 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, - [13765] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(754), 1, - sym_text_interpolation, - ACTIONS(986), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - aux_sym_else_clause_token1, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(984), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13822] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(755), 1, - sym_text_interpolation, - STATE(781), 1, - sym_arguments, - ACTIONS(1482), 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(1480), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13883] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(756), 1, - sym_text_interpolation, - STATE(785), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1496), 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(1502), 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, - [13946] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1724), 1, - anon_sym_RPAREN, - ACTIONS(1727), 1, - anon_sym_EQ, - STATE(757), 1, - sym_text_interpolation, - ACTIONS(1722), 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(1720), 30, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14007] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1659), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1661), 1, - anon_sym_QMARK, - ACTIONS(1663), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(758), 1, - sym_text_interpolation, - STATE(1155), 1, - sym_attribute_list, - STATE(1156), 1, - sym_visibility_modifier, - STATE(1301), 1, - aux_sym_attribute_list_repeat1, - STATE(1302), 1, - sym_attribute_group, - STATE(1539), 1, - sym_qualified_name, - STATE(1598), 1, - sym__types, - STATE(1640), 1, - sym__type, - STATE(1879), 1, - sym_variable_name, - STATE(1882), 1, - sym_reference_modifier, - STATE(2481), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(234), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2108), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [14108] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(759), 1, - sym_text_interpolation, - STATE(787), 1, - sym_arguments, - ACTIONS(1490), 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(1488), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14169] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(760), 1, - sym_text_interpolation, - STATE(785), 1, - sym_arguments, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 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, - [14236] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(613), 1, - sym_arguments, - STATE(761), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 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, - [14303] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(762), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1621), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1619), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14362] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(763), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1492), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14421] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(764), 1, - sym_text_interpolation, - STATE(785), 1, - sym_arguments, - ACTIONS(1570), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 22, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14486] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(765), 1, - sym_text_interpolation, - ACTIONS(1002), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - aux_sym_else_clause_token1, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1000), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14543] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(766), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1669), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1667), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14602] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(767), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1496), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1502), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14661] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(768), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1731), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1729), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14720] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(769), 1, - sym_text_interpolation, - ACTIONS(1534), 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(1532), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14776] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(770), 1, - sym_text_interpolation, - ACTIONS(1522), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1520), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14832] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(771), 1, - sym_text_interpolation, - ACTIONS(1454), 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(1452), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14888] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(772), 1, - sym_text_interpolation, - ACTIONS(1460), 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(1458), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14944] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(773), 1, - sym_text_interpolation, - ACTIONS(1833), 17, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AT, - anon_sym_TILDE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_POUND_LBRACK, - anon_sym_SQUOTE, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - aux_sym_string_token1, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - ACTIONS(1831), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym__arrow_function_header_token1, - aux_sym_cast_type_token1, - sym_float, - sym_integer, - aux_sym_throw_expression_token1, - aux_sym_match_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_clone_expression_token1, - aux_sym_print_intrinsic_token1, - aux_sym_object_creation_expression_token1, - aux_sym__list_destructing_token1, - anon_sym_self, - anon_sym_parent, - sym_boolean, - sym_null, - aux_sym_yield_expression_token1, - aux_sym_include_expression_token1, - aux_sym_include_once_expression_token1, - aux_sym_require_expression_token1, - aux_sym_require_once_expression_token1, - sym_name, - [15000] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(774), 1, - sym_text_interpolation, - ACTIONS(1468), 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(1466), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15056] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(775), 1, - sym_text_interpolation, - ACTIONS(1554), 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(1552), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15112] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(776), 1, - sym_text_interpolation, - ACTIONS(1550), 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(1548), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15168] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(1835), 1, - anon_sym_COLON, - STATE(613), 1, - sym_arguments, - STATE(777), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 21, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15236] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(778), 1, - sym_text_interpolation, - ACTIONS(1510), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1508), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15292] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(779), 1, - sym_text_interpolation, - ACTIONS(1518), 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(1516), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15348] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(780), 1, - sym_text_interpolation, - ACTIONS(1546), 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(1544), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15404] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(781), 1, - sym_text_interpolation, - ACTIONS(1538), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1536), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15460] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(782), 1, - sym_text_interpolation, - ACTIONS(1542), 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(1540), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15516] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(783), 1, - sym_text_interpolation, - ACTIONS(1530), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1528), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15572] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(784), 1, - sym_text_interpolation, - ACTIONS(1514), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1512), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15628] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(785), 1, - sym_text_interpolation, - ACTIONS(1506), 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(1504), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15684] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(786), 1, - sym_text_interpolation, - ACTIONS(1464), 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(1462), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15740] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(787), 1, - sym_text_interpolation, - ACTIONS(1526), 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(1524), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15796] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(1837), 1, - anon_sym_COLON, - STATE(565), 1, - sym_arguments, - STATE(788), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15864] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(1839), 1, - anon_sym_COLON, - STATE(613), 1, - sym_arguments, - STATE(789), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 21, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15932] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1841), 1, - sym_name, - ACTIONS(1843), 1, - anon_sym_LPAREN, - STATE(790), 1, - sym_text_interpolation, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(1687), 1, - sym__dereferencable_expression, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - STATE(2565), 1, - sym__scope_resolution_qualifier, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1542), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1525), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(768), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(703), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [16027] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(791), 1, - sym_text_interpolation, - STATE(844), 1, - sym_arguments, - ACTIONS(1478), 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(1476), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16086] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(573), 1, - sym_arguments, - STATE(792), 1, - sym_text_interpolation, - ACTIONS(1482), 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(1480), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16145] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(793), 1, - sym_text_interpolation, - STATE(849), 1, - sym_arguments, - ACTIONS(1490), 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(1488), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16204] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1448), 1, - anon_sym_LPAREN, - ACTIONS(1450), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1845), 1, - sym_name, - STATE(794), 1, - sym_text_interpolation, - STATE(1618), 1, - sym__dereferencable_expression, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - STATE(2567), 1, - sym__scope_resolution_qualifier, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1521), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1522), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(688), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(641), 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, - [16299] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(571), 1, - sym_arguments, - STATE(795), 1, - sym_text_interpolation, - ACTIONS(1486), 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(1484), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16358] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(796), 1, - sym_text_interpolation, - ACTIONS(1647), 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(1645), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16413] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(575), 1, - sym_arguments, - STATE(797), 1, - sym_text_interpolation, - ACTIONS(1478), 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(1476), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16472] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_EQ, - STATE(798), 1, - sym_text_interpolation, - ACTIONS(1722), 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(1720), 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, - [16529] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - sym_name, - STATE(799), 1, - sym_text_interpolation, - STATE(1688), 1, - sym__dereferencable_expression, - STATE(2449), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(766), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1518), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1526), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1675), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1422), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [16624] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(800), 1, - sym_text_interpolation, - STATE(854), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1731), 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(1729), 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, - [16685] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(574), 1, - sym_arguments, - STATE(801), 1, - sym_text_interpolation, - ACTIONS(1472), 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(1470), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16744] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(1847), 1, - sym_name, - STATE(802), 1, - sym_text_interpolation, - STATE(1621), 1, - sym__dereferencable_expression, - STATE(2386), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(884), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1504), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1502), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1675), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(818), 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, - [16839] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(1849), 1, - sym_name, - STATE(803), 1, - sym_text_interpolation, - STATE(1684), 1, - sym__dereferencable_expression, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - STATE(2543), 1, - sym__scope_resolution_qualifier, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(836), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1675), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(1639), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(834), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(886), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1526), 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, - [16934] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(804), 1, - sym_text_interpolation, - ACTIONS(1026), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - aux_sym_else_clause_token1, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1024), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16989] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(805), 1, - sym_text_interpolation, - STATE(866), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1625), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 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, - [17050] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(783), 1, - sym_arguments, - STATE(806), 1, - sym_text_interpolation, - ACTIONS(1651), 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(1649), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17109] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(807), 1, - sym_text_interpolation, - STATE(850), 1, - sym_arguments, - ACTIONS(1482), 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(1480), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17168] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(570), 1, - sym_arguments, - STATE(808), 1, - sym_text_interpolation, - ACTIONS(1490), 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(1488), 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, - [17225] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1851), 1, - anon_sym_LPAREN, - STATE(809), 1, - sym_text_interpolation, - STATE(1115), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1625), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 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, - [17286] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(810), 1, - sym_text_interpolation, - STATE(866), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1625), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1623), 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, - [17347] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - sym_name, - STATE(811), 1, - sym_text_interpolation, - STATE(1689), 1, - sym__dereferencable_expression, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2520), 1, - sym__scope_resolution_qualifier, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(669), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1675), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(675), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(762), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1526), 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, - [17442] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(575), 1, - sym_arguments, - STATE(812), 1, - sym_text_interpolation, - ACTIONS(1478), 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(1476), 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, - [17499] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(813), 1, - sym_text_interpolation, - ACTIONS(1570), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 22, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17558] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(573), 1, - sym_arguments, - STATE(814), 1, - sym_text_interpolation, - ACTIONS(1482), 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(1480), 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, - [17615] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(815), 1, - sym_text_interpolation, - ACTIONS(1072), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - aux_sym_else_clause_token1, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1070), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17670] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(816), 1, - sym_text_interpolation, - STATE(841), 1, - sym_arguments, - ACTIONS(1472), 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(1470), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17729] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - sym_name, - STATE(817), 1, - sym_text_interpolation, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(1688), 1, - sym__dereferencable_expression, - STATE(2449), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1518), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1526), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1495), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1413), 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, - [17824] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(818), 1, - sym_text_interpolation, - STATE(854), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1669), 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(1667), 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, - [17885] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(1847), 1, - sym_name, - ACTIONS(1855), 1, - anon_sym_LPAREN, - STATE(819), 1, - sym_text_interpolation, - STATE(1621), 1, - sym__dereferencable_expression, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - STATE(2542), 1, - sym__scope_resolution_qualifier, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1504), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1502), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(887), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(839), 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, - [17980] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(571), 1, - sym_arguments, - STATE(820), 1, - sym_text_interpolation, - ACTIONS(1486), 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(1484), 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, - [18037] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(785), 1, - sym_arguments, - STATE(821), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 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, - [18098] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - STATE(613), 1, - sym_arguments, - STATE(822), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 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, - [18159] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(785), 1, - sym_arguments, - STATE(823), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 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, - [18220] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - sym_name, - STATE(824), 1, - sym_text_interpolation, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(1688), 1, - sym__dereferencable_expression, - STATE(2449), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1518), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1526), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(688), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1425), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [18315] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(574), 1, - sym_arguments, - STATE(825), 1, - sym_text_interpolation, - ACTIONS(1472), 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(1470), 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, - [18372] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - sym_name, - STATE(826), 1, - sym_text_interpolation, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(1688), 1, - sym__dereferencable_expression, - STATE(2449), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1518), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1526), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1517), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1475), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [18467] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(827), 1, - sym_text_interpolation, - ACTIONS(1510), 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(1508), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18522] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - STATE(606), 1, - sym_arguments, - STATE(828), 1, - sym_text_interpolation, - ACTIONS(1651), 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(1649), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18581] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym_text_interpolation, - STATE(872), 1, - sym_arguments, - ACTIONS(1486), 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(1484), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18640] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - STATE(613), 1, - sym_arguments, - STATE(830), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 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, - [18701] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1841), 1, - sym_name, - ACTIONS(1843), 1, - anon_sym_LPAREN, - STATE(831), 1, - sym_text_interpolation, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(1687), 1, - sym__dereferencable_expression, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - STATE(2565), 1, - sym__scope_resolution_qualifier, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1542), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1525), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(767), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(689), 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, - [18796] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - sym_name, - STATE(832), 1, - sym_text_interpolation, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(1688), 1, - sym__dereferencable_expression, - STATE(2449), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1518), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1526), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1496), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1414), 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, - [18891] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(833), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1496), 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(1502), 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, - [18948] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(834), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1621), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1619), 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, - [19009] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(1847), 1, - sym_name, - ACTIONS(1855), 1, - anon_sym_LPAREN, - STATE(835), 1, - sym_text_interpolation, - STATE(1621), 1, - sym__dereferencable_expression, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - STATE(2542), 1, - sym__scope_resolution_qualifier, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1504), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1502), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(885), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(800), 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, - [19104] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(836), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1621), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1619), 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, - [19165] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1841), 1, - sym_name, - STATE(837), 1, - sym_text_interpolation, - STATE(1687), 1, - sym__dereferencable_expression, - STATE(2442), 1, - sym__scope_resolution_qualifier, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(766), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1542), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1525), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1675), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(670), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [19260] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(998), 1, - anon_sym_LBRACK, - ACTIONS(1444), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1857), 1, - sym_name, - ACTIONS(1859), 1, - anon_sym_LPAREN, - STATE(838), 1, - sym_text_interpolation, - STATE(1675), 1, - sym_class_constant_access_expression, - STATE(1708), 1, - sym__dereferencable_expression, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2517), 1, - sym__scope_resolution_qualifier, - STATE(2523), 1, - sym_relative_scope, - STATE(2535), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1540), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1512), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(833), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(756), 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, - [19355] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(839), 1, - sym_text_interpolation, - STATE(854), 1, - sym_arguments, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1496), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1502), 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, - [19416] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(570), 1, - sym_arguments, - STATE(840), 1, - sym_text_interpolation, - ACTIONS(1490), 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(1488), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19475] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(841), 1, - sym_text_interpolation, - ACTIONS(1542), 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(1540), 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, - [19529] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(842), 1, - sym_text_interpolation, - ACTIONS(1460), 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(1458), 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, - [19583] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(843), 1, - sym_text_interpolation, - ACTIONS(1518), 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(1516), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19637] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(844), 1, - sym_text_interpolation, - ACTIONS(1546), 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(1544), 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, - [19691] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_EQ, - STATE(845), 1, - sym_text_interpolation, - ACTIONS(1722), 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(1720), 28, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19747] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(846), 1, - sym_text_interpolation, - ACTIONS(1773), 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(1771), 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, - [19801] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_EQ, - STATE(847), 1, - sym_text_interpolation, - ACTIONS(1861), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1722), 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(1720), 26, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19859] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(848), 1, - sym_text_interpolation, - ACTIONS(1522), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1520), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19913] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(849), 1, - sym_text_interpolation, - ACTIONS(1526), 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(1524), 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, - [19967] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(850), 1, - sym_text_interpolation, - ACTIONS(1538), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1536), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_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, - [20021] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(851), 1, - sym_text_interpolation, - ACTIONS(1550), 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(1548), 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, - [20075] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(852), 1, - sym_text_interpolation, - ACTIONS(1743), 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(1741), 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, - [20129] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(853), 1, - sym_text_interpolation, - ACTIONS(1747), 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(1745), 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, - [20183] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(854), 1, - sym_text_interpolation, - ACTIONS(1506), 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(1504), 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, - [20237] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(855), 1, - sym_text_interpolation, - ACTIONS(1464), 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(1462), 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, - [20291] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(856), 1, - sym_text_interpolation, - ACTIONS(1514), 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(1512), 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, - [20345] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(857), 1, - sym_text_interpolation, - ACTIONS(1454), 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(1452), 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, - [20399] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(858), 1, - sym_text_interpolation, - ACTIONS(1739), 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(1737), 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, - [20453] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(859), 1, - sym_text_interpolation, - ACTIONS(1722), 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(1720), 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, - [20507] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(860), 1, - sym_text_interpolation, - ACTIONS(1769), 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(1767), 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, - [20561] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(861), 1, - sym_text_interpolation, - ACTIONS(1801), 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(1799), 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, - [20615] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(862), 1, - sym_text_interpolation, - ACTIONS(1813), 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(1811), 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, - [20669] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(863), 1, - sym_text_interpolation, - ACTIONS(1761), 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(1759), 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, - [20723] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(864), 1, - sym_text_interpolation, - ACTIONS(1791), 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(1789), 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, - [20777] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_COLON_COLON, - STATE(865), 1, - sym_text_interpolation, - ACTIONS(1510), 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(1508), 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, - [20833] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(866), 1, - sym_text_interpolation, - ACTIONS(1504), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1755), 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(1753), 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, - [20889] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(867), 1, - sym_text_interpolation, - ACTIONS(1783), 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(1781), 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, - [20943] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(868), 1, - sym_text_interpolation, - ACTIONS(1751), 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(1749), 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, - [20997] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(869), 1, - sym_text_interpolation, - ACTIONS(1787), 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(1785), 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, - [21051] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(870), 1, - sym_text_interpolation, - ACTIONS(1809), 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(1807), 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, - [21105] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(871), 1, - sym_text_interpolation, - ACTIONS(1823), 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(1821), 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, - [21159] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(872), 1, - sym_text_interpolation, - ACTIONS(1530), 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(1528), 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, - [21213] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(873), 1, - sym_text_interpolation, - ACTIONS(1436), 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(1438), 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, - [21267] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(874), 1, - sym_text_interpolation, - ACTIONS(1777), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1775), 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, - [21321] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(875), 1, - sym_text_interpolation, - ACTIONS(1797), 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(1795), 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, - [21375] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(876), 1, - sym_text_interpolation, - ACTIONS(1817), 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(1815), 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, - [21429] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(877), 1, - sym_text_interpolation, - ACTIONS(1534), 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(1532), 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, - [21483] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(878), 1, - sym_text_interpolation, - ACTIONS(1468), 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(1466), 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, - [21537] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(879), 1, - sym_text_interpolation, - ACTIONS(1765), 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(1763), 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, - [21591] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(880), 1, - sym_text_interpolation, - ACTIONS(1735), 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(1733), 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, - [21645] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(881), 1, - sym_text_interpolation, - ACTIONS(1805), 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(1803), 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, - [21699] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(882), 1, - sym_text_interpolation, - ACTIONS(1554), 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(1552), 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, - [21753] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(883), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1494), 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(1492), 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, - [21808] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(884), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1669), 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(1667), 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, - [21863] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(885), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1731), 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(1729), 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, - [21918] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(886), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1621), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1619), 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, - [21973] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(887), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1496), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1502), 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, - [22028] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(888), 1, - sym_text_interpolation, - ACTIONS(1865), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1863), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22080] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(889), 1, - sym_text_interpolation, - ACTIONS(1869), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1867), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22132] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(890), 1, - sym_text_interpolation, - ACTIONS(1873), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1871), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22184] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(891), 1, - sym_text_interpolation, - ACTIONS(1877), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1875), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22236] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(892), 1, - sym_text_interpolation, - ACTIONS(1881), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1879), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22288] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(893), 1, - sym_text_interpolation, - ACTIONS(1885), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1883), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22340] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(894), 1, - sym_text_interpolation, - ACTIONS(1889), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1887), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22392] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(895), 1, - sym_text_interpolation, - ACTIONS(1893), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1891), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22444] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(896), 1, - sym_text_interpolation, - ACTIONS(1897), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22496] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(897), 1, - sym_text_interpolation, - ACTIONS(1755), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1753), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22548] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(898), 1, - sym_text_interpolation, - ACTIONS(1901), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1899), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22600] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(899), 1, - sym_text_interpolation, - ACTIONS(1905), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1903), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22652] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(900), 1, - sym_text_interpolation, - ACTIONS(1909), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1907), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22704] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(901), 1, - sym_text_interpolation, - ACTIONS(1913), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1911), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22756] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(902), 1, - sym_text_interpolation, - ACTIONS(1917), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1915), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22808] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(903), 1, - sym_text_interpolation, - ACTIONS(1921), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1919), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22860] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(904), 1, - sym_text_interpolation, - ACTIONS(1925), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1923), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22912] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(905), 1, - sym_text_interpolation, - ACTIONS(1929), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1927), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22964] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(906), 1, - sym_text_interpolation, - ACTIONS(1933), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1931), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23016] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(907), 1, - sym_text_interpolation, - ACTIONS(1454), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1452), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23068] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(908), 1, - sym_text_interpolation, - ACTIONS(1937), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1935), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23120] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(909), 1, - sym_text_interpolation, - ACTIONS(1941), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23172] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(910), 1, - sym_text_interpolation, - ACTIONS(1731), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1729), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23224] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(911), 1, - sym_text_interpolation, - ACTIONS(1494), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1492), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23276] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1943), 1, - aux_sym_binary_expression_token1, - STATE(912), 1, - sym_text_interpolation, - ACTIONS(1873), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1871), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23330] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(913), 1, - sym_text_interpolation, - ACTIONS(1947), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1945), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23382] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(914), 1, - sym_text_interpolation, - ACTIONS(1460), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1458), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23434] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(915), 1, - sym_text_interpolation, - ACTIONS(1951), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23486] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(916), 1, - sym_text_interpolation, - ACTIONS(1951), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23538] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(917), 1, - sym_text_interpolation, - ACTIONS(1468), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1466), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23590] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(918), 1, - sym_text_interpolation, - ACTIONS(1955), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1953), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23642] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(919), 1, - sym_text_interpolation, - ACTIONS(1959), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1957), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23694] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(920), 1, - sym_text_interpolation, - ACTIONS(1963), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1961), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23746] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(921), 1, - sym_text_interpolation, - ACTIONS(1967), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1965), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23798] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(922), 1, - sym_text_interpolation, - ACTIONS(1971), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1969), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23850] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(923), 1, - sym_text_interpolation, - ACTIONS(1975), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1973), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23902] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(924), 1, - sym_text_interpolation, - ACTIONS(1979), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1977), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [23954] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(925), 1, - sym_text_interpolation, - ACTIONS(1983), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1981), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24006] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(926), 1, - sym_text_interpolation, - ACTIONS(1987), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1985), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24058] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(927), 1, - sym_text_interpolation, - ACTIONS(1991), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1989), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24110] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(928), 1, - sym_text_interpolation, - ACTIONS(1995), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1993), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24162] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(929), 1, - sym_text_interpolation, - ACTIONS(1999), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1997), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24214] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(930), 1, - sym_text_interpolation, - ACTIONS(2003), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2001), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24266] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(931), 1, - sym_text_interpolation, - ACTIONS(2007), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2005), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24318] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(932), 1, - sym_text_interpolation, - ACTIONS(2011), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2009), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24370] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(933), 1, - sym_text_interpolation, - ACTIONS(2015), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2013), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24422] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(934), 1, - sym_text_interpolation, - ACTIONS(2019), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2017), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24474] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(935), 1, - sym_text_interpolation, - ACTIONS(2023), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2021), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24526] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(936), 1, - sym_text_interpolation, - ACTIONS(1621), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1619), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24578] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(937), 1, - sym_text_interpolation, - ACTIONS(2027), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2025), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24630] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(938), 1, - sym_text_interpolation, - ACTIONS(2031), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2029), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [24682] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(939), 1, - sym_text_interpolation, - ACTIONS(2035), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2033), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [24734] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(940), 1, - sym_text_interpolation, - ACTIONS(2039), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2037), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [24786] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(941), 1, - sym_text_interpolation, - ACTIONS(2043), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2041), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [24838] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(942), 1, - sym_text_interpolation, - ACTIONS(2047), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2045), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [24890] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(943), 1, - sym_text_interpolation, - ACTIONS(1464), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1462), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24942] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(944), 1, - sym_text_interpolation, - ACTIONS(2051), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2049), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [24994] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(945), 1, - sym_text_interpolation, - ACTIONS(2055), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2053), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [25046] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(946), 1, - sym_text_interpolation, - ACTIONS(2059), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2057), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [25098] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(947), 1, - sym_text_interpolation, - ACTIONS(2063), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2061), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [25150] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(948), 1, - sym_text_interpolation, - ACTIONS(2067), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2065), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [25202] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(949), 1, - sym_text_interpolation, - ACTIONS(2071), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2069), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [25254] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(950), 1, - sym_text_interpolation, - ACTIONS(2075), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2073), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [25306] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(951), 1, - sym_text_interpolation, - ACTIONS(2079), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2077), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [25358] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(952), 1, - sym_text_interpolation, - ACTIONS(2083), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2081), 28, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [25410] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(953), 1, - sym_text_interpolation, - ACTIONS(1072), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - aux_sym_else_clause_token1, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1070), 26, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [25461] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(954), 1, - sym_text_interpolation, - ACTIONS(1026), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - aux_sym_else_clause_token1, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1024), 26, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [25512] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(955), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2085), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [25598] = 21, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(956), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 10, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [25680] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(957), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2125), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [25766] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(958), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2127), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [25846] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(959), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2129), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [25932] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(960), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2131), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [26018] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(961), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1895), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [26104] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - ACTIONS(2135), 1, - anon_sym_QMARK, - STATE(962), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2133), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [26184] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - ACTIONS(2137), 1, - anon_sym_EQ_GT, - STATE(963), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1957), 7, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [26272] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(964), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2139), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [26358] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(965), 1, - sym_text_interpolation, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 25, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [26412] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_STAR_STAR, - STATE(966), 1, - sym_text_interpolation, - ACTIONS(1983), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1981), 25, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [26464] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(967), 1, - sym_text_interpolation, - ACTIONS(1621), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 14, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [26536] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(968), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 15, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [26604] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(969), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [26684] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(970), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 21, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DOT, - [26742] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(971), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [26822] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(972), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2143), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [26902] = 17, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(973), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 14, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [26976] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(974), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 23, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [27032] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(975), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2145), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [27118] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(976), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 20, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [27178] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(977), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2147), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [27264] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(978), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1621), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1619), 19, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [27328] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(979), 1, - sym_text_interpolation, - ACTIONS(1621), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 15, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [27398] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_STAR_STAR, - STATE(980), 1, - sym_text_interpolation, - ACTIONS(1873), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1871), 25, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [27450] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(981), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2149), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [27536] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_STAR_STAR, - STATE(982), 1, - sym_text_interpolation, - ACTIONS(1893), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1891), 25, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [27588] = 18, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(983), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 13, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [27664] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(984), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2151), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [27750] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - ACTIONS(2155), 1, - anon_sym_QMARK, - STATE(985), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2153), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27830] = 22, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(986), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 9, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [27914] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2123), 1, - anon_sym_PERCENT, - STATE(987), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2121), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2157), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27994] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2135), 1, - anon_sym_QMARK, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(988), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2133), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [28073] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2189), 1, - anon_sym_STAR_STAR, - STATE(989), 1, - sym_text_interpolation, - ACTIONS(1893), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1891), 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, - [28124] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(990), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1895), 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, - [28209] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(991), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2147), 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, - [28294] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(992), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2149), 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, - [28379] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2189), 1, - anon_sym_STAR_STAR, - STATE(993), 1, - sym_text_interpolation, - ACTIONS(1983), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1981), 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, - [28430] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(994), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [28497] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(995), 1, - sym_text_interpolation, - ACTIONS(1621), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [28568] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(996), 1, - sym_text_interpolation, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [28621] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(997), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [28700] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - STATE(998), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [28779] = 22, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(999), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [28862] = 21, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - STATE(1000), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [28943] = 18, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(1001), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [29018] = 17, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(1002), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [29091] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(1003), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2139), 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, - [29176] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(1004), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2125), 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, - [29261] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(1005), 1, - sym_text_interpolation, - ACTIONS(1621), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [29330] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(1006), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1621), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1619), 18, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [29393] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(1007), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [29452] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(1008), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [29507] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(1009), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 20, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DOT, - [29564] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - STATE(1010), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2127), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [29643] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(1011), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2085), 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, - [29728] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - STATE(1012), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2143), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [29807] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(1013), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2129), 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, - [29892] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(1014), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2131), 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, - [29977] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2199), 1, - anon_sym_EQ_GT, - STATE(1015), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1957), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [30064] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - STATE(1016), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2153), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [30143] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - STATE(1017), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2157), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [30222] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2189), 1, - anon_sym_STAR_STAR, - STATE(1018), 1, - sym_text_interpolation, - ACTIONS(1873), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1871), 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, - [30273] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(1019), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2145), 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, - [30358] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_PERCENT, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(1020), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2185), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2151), 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, - [30443] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1021), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2085), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [30527] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1022), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 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, - [30585] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1023), 1, - sym_text_interpolation, - ACTIONS(1897), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1895), 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, - [30633] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1024), 1, - sym_text_interpolation, - ACTIONS(2039), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2037), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [30681] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1025), 1, - sym_text_interpolation, - ACTIONS(2055), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2053), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [30729] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1026), 1, - sym_text_interpolation, - ACTIONS(986), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(984), 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, - [30777] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1027), 1, - sym_text_interpolation, - ACTIONS(1933), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1931), 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, - [30825] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1028), 1, - sym_text_interpolation, - ACTIONS(1959), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1957), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30873] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1029), 1, - sym_text_interpolation, - ACTIONS(2075), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2073), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [30921] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1030), 1, - sym_text_interpolation, - ACTIONS(2003), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2001), 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, - [30969] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1031), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2153), 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, - [31047] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1032), 1, - sym_text_interpolation, - ACTIONS(2011), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2009), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31095] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1033), 1, - sym_text_interpolation, - ACTIONS(2031), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2029), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [31143] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1034), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2157), 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, - [31221] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1035), 1, - sym_text_interpolation, - ACTIONS(1454), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1452), 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, - [31269] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1036), 1, - sym_text_interpolation, - ACTIONS(1937), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1935), 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, - [31317] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1037), 1, - sym_text_interpolation, - ACTIONS(1865), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1863), 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, - [31365] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1038), 1, - sym_text_interpolation, - ACTIONS(1925), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1923), 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, - [31413] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1039), 1, - sym_text_interpolation, - ACTIONS(1460), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1458), 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, - [31461] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1040), 1, - sym_text_interpolation, - ACTIONS(1468), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1466), 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, - [31509] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1041), 1, - sym_text_interpolation, - ACTIONS(1979), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1977), 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, - [31557] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1042), 1, - sym_text_interpolation, - ACTIONS(2035), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2033), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [31605] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1043), 1, - sym_text_interpolation, - ACTIONS(2071), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2069), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [31653] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1044), 1, - sym_text_interpolation, - ACTIONS(2079), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2077), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [31701] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1045), 1, - sym_text_interpolation, - ACTIONS(2067), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2065), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [31749] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1046), 1, - sym_text_interpolation, - ACTIONS(1995), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1993), 24, - 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, - [31797] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1047), 1, - sym_text_interpolation, - ACTIONS(1494), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1492), 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, - [31845] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1048), 1, - sym_text_interpolation, - ACTIONS(1971), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1969), 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, - [31893] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1049), 1, - sym_text_interpolation, - ACTIONS(1869), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1867), 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, - [31941] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1050), 1, - sym_text_interpolation, - ACTIONS(1963), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1961), 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, - [31989] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1051), 1, - sym_text_interpolation, - ACTIONS(1941), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 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, - [32037] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1052), 1, - sym_text_interpolation, - ACTIONS(1464), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1462), 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, - [32085] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1053), 1, - sym_text_interpolation, - ACTIONS(1917), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1915), 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, - [32133] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1054), 1, - sym_text_interpolation, - ACTIONS(1877), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1875), 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, - [32181] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1055), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2145), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [32265] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1056), 1, - sym_text_interpolation, - ACTIONS(2043), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2041), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [32313] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1057), 1, - sym_text_interpolation, - ACTIONS(1951), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 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, - [32361] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1058), 1, - sym_text_interpolation, - ACTIONS(1951), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 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, - [32409] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1059), 1, - sym_text_interpolation, - ACTIONS(1991), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1989), 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, - [32457] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1060), 1, - sym_text_interpolation, - ACTIONS(1955), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1953), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32505] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2135), 1, - anon_sym_QMARK, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1061), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2133), 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, - [32583] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1062), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2151), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [32667] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1063), 1, - sym_text_interpolation, - ACTIONS(2063), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2061), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [32715] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1064), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2143), 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, - [32793] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1065), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2127), 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, - [32871] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1066), 1, - sym_text_interpolation, - ACTIONS(1975), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1973), 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, - [32919] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1067), 1, - sym_text_interpolation, - ACTIONS(1621), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1619), 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, - [32967] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1068), 1, - sym_text_interpolation, - ACTIONS(1967), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1965), 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, - [33015] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1069), 1, - sym_text_interpolation, - ACTIONS(1987), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1985), 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, - [33063] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1070), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 19, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DOT, - [33119] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1071), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 21, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [33173] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2241), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2246), 1, - aux_sym_final_modifier_token1, - ACTIONS(2249), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2252), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2255), 1, - sym_var_modifier, - STATE(1292), 1, - sym__modifier, - ACTIONS(2244), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - STATE(1072), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat1, - ACTIONS(2258), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1290), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(2239), 17, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [33237] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1073), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1621), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1619), 17, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [33299] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1074), 1, - sym_text_interpolation, - ACTIONS(1621), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 13, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [33367] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1075), 1, - sym_text_interpolation, - ACTIONS(2019), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2017), 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, - [33415] = 17, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1076), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 12, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [33487] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - ACTIONS(2261), 1, - anon_sym_EQ_GT, - STATE(1077), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1957), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [33573] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1078), 1, - sym_text_interpolation, - ACTIONS(2047), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2045), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [33621] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1079), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2131), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [33705] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1080), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2129), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [33789] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1081), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2125), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [33873] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1082), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2139), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [33957] = 18, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1083), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 11, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [34031] = 21, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1084), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 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, - [34111] = 22, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1085), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [34193] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1086), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 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, - [34271] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1087), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 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, - [34349] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1088), 1, - sym_text_interpolation, - ACTIONS(1731), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1729), 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, - [34397] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1089), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1895), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [34481] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1090), 1, - sym_text_interpolation, - ACTIONS(1901), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1899), 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, - [34529] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1091), 1, - sym_text_interpolation, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [34581] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1092), 1, - sym_text_interpolation, - ACTIONS(1621), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 12, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [34651] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1093), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 13, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [34717] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1094), 1, - sym_text_interpolation, - ACTIONS(2023), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2021), 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, - [34765] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1095), 1, - sym_text_interpolation, - ACTIONS(1999), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1997), 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, - [34813] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1096), 1, - sym_text_interpolation, - ACTIONS(1983), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1981), 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, - [34861] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1097), 1, - sym_text_interpolation, - ACTIONS(1909), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1907), 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, - [34909] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1098), 1, - sym_text_interpolation, - ACTIONS(2015), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2013), 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, - [34957] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2263), 1, - anon_sym_STAR_STAR, - STATE(1099), 1, - sym_text_interpolation, - ACTIONS(1983), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1981), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [35007] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1100), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2149), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [35091] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1101), 1, - sym_text_interpolation, - ACTIONS(2051), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2049), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [35139] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_PERCENT, - STATE(1102), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2147), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [35223] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1103), 1, - sym_text_interpolation, - ACTIONS(2007), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2005), 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, - [35271] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1104), 1, - sym_text_interpolation, - ACTIONS(1929), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1927), 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, - [35319] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1105), 1, - sym_text_interpolation, - ACTIONS(1905), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1903), 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, - [35367] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1106), 1, - sym_text_interpolation, - ACTIONS(1889), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1887), 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, - [35415] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1107), 1, - sym_text_interpolation, - ACTIONS(1885), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1883), 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, - [35463] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1108), 1, - sym_text_interpolation, - ACTIONS(1881), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1879), 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, - [35511] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1109), 1, - sym_text_interpolation, - ACTIONS(1947), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1945), 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, - [35559] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1110), 1, - sym_text_interpolation, - ACTIONS(2027), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2025), 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, - [35607] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1111), 1, - sym_text_interpolation, - ACTIONS(1002), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1000), 24, - sym__automatic_semicolon, - 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, - [35655] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1112), 1, - sym_text_interpolation, - ACTIONS(1921), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1919), 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, - [35703] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2263), 1, - anon_sym_STAR_STAR, - STATE(1113), 1, - sym_text_interpolation, - ACTIONS(1873), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1871), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [35753] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1114), 1, - sym_text_interpolation, - ACTIONS(1913), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1911), 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, - [35801] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1115), 1, - sym_text_interpolation, - ACTIONS(1755), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1753), 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, - [35849] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2265), 1, - aux_sym_binary_expression_token1, - STATE(1116), 1, - sym_text_interpolation, - ACTIONS(1873), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1871), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [35899] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1117), 1, - sym_text_interpolation, - ACTIONS(1873), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1871), 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, - [35947] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1118), 1, - sym_text_interpolation, - ACTIONS(2059), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2057), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [35995] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1119), 1, - sym_text_interpolation, - ACTIONS(1893), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1891), 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, - [36043] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2263), 1, - anon_sym_STAR_STAR, - STATE(1120), 1, - sym_text_interpolation, - ACTIONS(1893), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1891), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [36093] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1121), 1, - sym_text_interpolation, - ACTIONS(2083), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2081), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [36141] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1122), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2125), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36224] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1123), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2085), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36307] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1124), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2139), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36390] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1125), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [36467] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2135), 1, - anon_sym_QMARK, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1126), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2133), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [36544] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1127), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2157), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [36621] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1128), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2153), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [36698] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1129), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2143), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [36775] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1130), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2127), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [36852] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1131), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 18, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DOT, - [36907] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1132), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 20, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [36960] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1133), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 17, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [37017] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1134), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1621), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1619), 16, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [37078] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1135), 1, - sym_text_interpolation, - ACTIONS(1621), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 12, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [37145] = 17, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1136), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 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, - [37216] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1137), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 12, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [37281] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1138), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [37358] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2305), 1, - anon_sym_STAR_STAR, - STATE(1139), 1, - sym_text_interpolation, - ACTIONS(1983), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1981), 22, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [37407] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1140), 1, - sym_text_interpolation, - ACTIONS(1621), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 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, - [37476] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1141), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1895), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [37559] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1142), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2149), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [37642] = 22, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1143), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 6, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [37723] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1144), 1, - sym_text_interpolation, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1621), 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(1619), 22, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [37774] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2305), 1, - anon_sym_STAR_STAR, - STATE(1145), 1, - sym_text_interpolation, - ACTIONS(1873), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1871), 22, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [37823] = 21, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1146), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 7, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [37902] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2305), 1, - anon_sym_STAR_STAR, - STATE(1147), 1, - sym_text_interpolation, - ACTIONS(1893), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1891), 22, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [37951] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1148), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2147), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [38034] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1149), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2145), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [38117] = 18, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_QMARK, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1150), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1619), 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, - [38190] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1151), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2151), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [38273] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - ACTIONS(2307), 1, - anon_sym_EQ_GT, - STATE(1152), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1957), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [38358] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1153), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2131), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [38441] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_PERCENT, - STATE(1154), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2301), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2129), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [38524] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1661), 1, - anon_sym_QMARK, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(2309), 1, - anon_sym_DOT_DOT_DOT, - STATE(1155), 1, - sym_text_interpolation, - STATE(1539), 1, - sym_qualified_name, - STATE(1598), 1, - sym__types, - STATE(1670), 1, - sym__type, - STATE(1959), 1, - sym_reference_modifier, - STATE(1961), 1, - sym_variable_name, - STATE(2481), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [38600] = 19, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(232), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1615), 1, - anon_sym_QMARK, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(1156), 1, - sym_text_interpolation, - STATE(1275), 1, - sym_readonly_modifier, - STATE(1531), 1, - sym__types, - STATE(1539), 1, - sym_qualified_name, - STATE(1950), 1, - sym_variable_name, - STATE(2284), 1, - sym__type, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [38673] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2311), 1, - anon_sym_EQ_GT, - STATE(1157), 1, - sym_text_interpolation, - ACTIONS(1957), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [38756] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2313), 1, - anon_sym_EQ_GT, - STATE(1158), 1, - sym_text_interpolation, - ACTIONS(1957), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [38839] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2315), 1, - anon_sym_COMMA, - ACTIONS(2317), 1, - anon_sym_EQ_GT, - STATE(1159), 1, - sym_text_interpolation, - STATE(2022), 1, - aux_sym_match_condition_list_repeat1, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [38924] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - ACTIONS(2321), 1, - anon_sym_COMMA, - STATE(1160), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2319), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39007] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2323), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2329), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2331), 1, - anon_sym_RBRACE, - ACTIONS(2333), 1, - aux_sym_final_modifier_token1, - ACTIONS(2335), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2337), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2339), 1, - sym_var_modifier, - STATE(644), 1, - aux_sym_property_declaration_repeat1, - STATE(1161), 1, - sym_text_interpolation, - STATE(1173), 1, - aux_sym_declaration_list_repeat1, - STATE(1197), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1292), 1, - sym__modifier, - STATE(1313), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1366), 1, - sym__const_declaration, - STATE(1377), 1, - sym__class_const_declaration, - STATE(1378), 1, - sym__member_declaration, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2341), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1290), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1362), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39098] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2323), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2329), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2333), 1, - aux_sym_final_modifier_token1, - ACTIONS(2335), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2337), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2339), 1, - sym_var_modifier, - ACTIONS(2343), 1, - anon_sym_RBRACE, - STATE(644), 1, - aux_sym_property_declaration_repeat1, - STATE(1162), 1, - sym_text_interpolation, - STATE(1173), 1, - aux_sym_declaration_list_repeat1, - STATE(1197), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1292), 1, - sym__modifier, - STATE(1313), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1366), 1, - sym__const_declaration, - STATE(1377), 1, - sym__class_const_declaration, - STATE(1378), 1, - sym__member_declaration, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2341), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1290), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1362), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39189] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(1163), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2345), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39270] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(1164), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2347), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39351] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - ACTIONS(2321), 1, - anon_sym_COMMA, - STATE(1165), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2349), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39434] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - ACTIONS(2351), 1, - anon_sym_EQ_GT, - STATE(1166), 1, - sym_text_interpolation, - ACTIONS(1957), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39517] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2323), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2329), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2333), 1, - aux_sym_final_modifier_token1, - ACTIONS(2335), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2337), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2339), 1, - sym_var_modifier, - ACTIONS(2353), 1, - anon_sym_RBRACE, - STATE(644), 1, - aux_sym_property_declaration_repeat1, - STATE(1167), 1, - sym_text_interpolation, - STATE(1168), 1, - aux_sym_declaration_list_repeat1, - STATE(1197), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1292), 1, - sym__modifier, - STATE(1313), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1366), 1, - sym__const_declaration, - STATE(1377), 1, - sym__class_const_declaration, - STATE(1378), 1, - sym__member_declaration, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2341), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1290), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1362), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39608] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2323), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2329), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2333), 1, - aux_sym_final_modifier_token1, - ACTIONS(2335), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2337), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2339), 1, - sym_var_modifier, - ACTIONS(2355), 1, - anon_sym_RBRACE, - STATE(644), 1, - aux_sym_property_declaration_repeat1, - STATE(1168), 1, - sym_text_interpolation, - STATE(1173), 1, - aux_sym_declaration_list_repeat1, - STATE(1197), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1292), 1, - sym__modifier, - STATE(1313), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1366), 1, - sym__const_declaration, - STATE(1377), 1, - sym__class_const_declaration, - STATE(1378), 1, - sym__member_declaration, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2341), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1290), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1362), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39699] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2323), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2329), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2333), 1, - aux_sym_final_modifier_token1, - ACTIONS(2335), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2337), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2339), 1, - sym_var_modifier, - ACTIONS(2357), 1, - anon_sym_RBRACE, - STATE(644), 1, - aux_sym_property_declaration_repeat1, - STATE(1169), 1, - sym_text_interpolation, - STATE(1173), 1, - aux_sym_declaration_list_repeat1, - STATE(1197), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1292), 1, - sym__modifier, - STATE(1313), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1366), 1, - sym__const_declaration, - STATE(1377), 1, - sym__class_const_declaration, - STATE(1378), 1, - sym__member_declaration, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2341), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1290), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1362), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39790] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2323), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2329), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2333), 1, - aux_sym_final_modifier_token1, - ACTIONS(2335), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2337), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2339), 1, - sym_var_modifier, - ACTIONS(2359), 1, - anon_sym_RBRACE, - STATE(644), 1, - aux_sym_property_declaration_repeat1, - STATE(1161), 1, - aux_sym_declaration_list_repeat1, - STATE(1170), 1, - sym_text_interpolation, - STATE(1197), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1292), 1, - sym__modifier, - STATE(1313), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1366), 1, - sym__const_declaration, - STATE(1377), 1, - sym__class_const_declaration, - STATE(1378), 1, - sym__member_declaration, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2341), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1290), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1362), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39881] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2323), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2329), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2333), 1, - aux_sym_final_modifier_token1, - ACTIONS(2335), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2337), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2339), 1, - sym_var_modifier, - ACTIONS(2361), 1, - anon_sym_RBRACE, - STATE(644), 1, - aux_sym_property_declaration_repeat1, - STATE(1169), 1, - aux_sym_declaration_list_repeat1, - STATE(1171), 1, - sym_text_interpolation, - STATE(1197), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1292), 1, - sym__modifier, - STATE(1313), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1366), 1, - sym__const_declaration, - STATE(1377), 1, - sym__class_const_declaration, - STATE(1378), 1, - sym__member_declaration, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2341), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1290), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1362), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39972] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(1172), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2363), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40053] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(2365), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2368), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2371), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2374), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2377), 1, - anon_sym_RBRACE, - ACTIONS(2379), 1, - aux_sym_final_modifier_token1, - ACTIONS(2382), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2385), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2388), 1, - sym_var_modifier, - ACTIONS(2394), 1, - anon_sym_POUND_LBRACK, - STATE(644), 1, - aux_sym_property_declaration_repeat1, - STATE(1197), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1292), 1, - sym__modifier, - STATE(1313), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1366), 1, - sym__const_declaration, - STATE(1377), 1, - sym__class_const_declaration, - STATE(1378), 1, - sym__member_declaration, - STATE(1770), 1, - sym__function_definition_header, - STATE(1173), 2, - sym_text_interpolation, - aux_sym_declaration_list_repeat1, - ACTIONS(2391), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1290), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1362), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [40142] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2323), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2329), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2333), 1, - aux_sym_final_modifier_token1, - ACTIONS(2335), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2337), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2339), 1, - sym_var_modifier, - ACTIONS(2397), 1, - anon_sym_RBRACE, - STATE(644), 1, - aux_sym_property_declaration_repeat1, - STATE(1162), 1, - aux_sym_declaration_list_repeat1, - STATE(1174), 1, - sym_text_interpolation, - STATE(1197), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1292), 1, - sym__modifier, - STATE(1313), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1366), 1, - sym__const_declaration, - STATE(1377), 1, - sym__class_const_declaration, - STATE(1378), 1, - sym__member_declaration, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2341), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1290), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1362), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [40233] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2319), 1, - anon_sym_SEMI, - ACTIONS(2399), 1, - anon_sym_COMMA, - STATE(1175), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40315] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1176), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2401), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40395] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1177), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2403), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40475] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1178), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2405), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40555] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1179), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2407), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40635] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1180), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2409), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40715] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(1181), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2411), 2, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40795] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(1182), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2413), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40875] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1183), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2415), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40955] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2417), 1, - anon_sym_EQ_GT, - ACTIONS(2419), 1, - anon_sym_RPAREN, - STATE(1184), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41037] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1185), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2421), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41117] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - STATE(1186), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2423), 2, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41197] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(1187), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2425), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41277] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(1188), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2427), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41357] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(1189), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2429), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41437] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2417), 1, - anon_sym_EQ_GT, - ACTIONS(2431), 1, - anon_sym_RPAREN, - STATE(1190), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41519] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1191), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2433), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41599] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(1192), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2435), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41679] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - STATE(1193), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2437), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41759] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(1194), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2439), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41839] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - ACTIONS(2319), 1, - anon_sym_RPAREN, - ACTIONS(2441), 1, - anon_sym_COMMA, - STATE(1195), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41921] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1196), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2443), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42001] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2447), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1197), 1, - sym_text_interpolation, - STATE(1368), 1, - sym__const_declaration, - STATE(2529), 1, - sym_visibility_modifier, - ACTIONS(2449), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2445), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [42051] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1198), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2451), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42131] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2417), 1, - anon_sym_EQ_GT, - ACTIONS(2453), 1, - anon_sym_RPAREN, - STATE(1199), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42213] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2417), 1, - anon_sym_EQ_GT, - ACTIONS(2455), 1, - anon_sym_RPAREN, - STATE(1200), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42295] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1201), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2457), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42375] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1202), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2459), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42455] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1203), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2461), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42535] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1204), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2463), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42615] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(1205), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2465), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42695] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(1206), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2467), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42775] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2447), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1207), 1, - sym_text_interpolation, - STATE(1369), 1, - sym__const_declaration, - STATE(2529), 1, - sym_visibility_modifier, - ACTIONS(2449), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2445), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [42825] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_AMP, - ACTIONS(2203), 1, - anon_sym_QMARK, - ACTIONS(2205), 1, - anon_sym_PIPE, - ACTIONS(2209), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 1, - aux_sym_binary_expression_token2, - ACTIONS(2213), 1, - aux_sym_binary_expression_token3, - ACTIONS(2215), 1, - aux_sym_binary_expression_token4, - ACTIONS(2217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2219), 1, - anon_sym_AMP_AMP, - ACTIONS(2221), 1, - anon_sym_CARET, - ACTIONS(2229), 1, - anon_sym_GT_EQ, - ACTIONS(2233), 1, - anon_sym_DOT, - ACTIONS(2235), 1, - anon_sym_SLASH, - STATE(1208), 1, - sym_text_interpolation, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2469), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2227), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2225), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42905] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1209), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2471), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42985] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - ACTIONS(2349), 1, - anon_sym_RPAREN, - ACTIONS(2441), 1, - anon_sym_COMMA, - STATE(1210), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43067] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_AMP, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2271), 1, - anon_sym_PIPE, - ACTIONS(2275), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2277), 1, - aux_sym_binary_expression_token2, - ACTIONS(2279), 1, - aux_sym_binary_expression_token3, - ACTIONS(2281), 1, - aux_sym_binary_expression_token4, - ACTIONS(2283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2285), 1, - anon_sym_AMP_AMP, - ACTIONS(2287), 1, - anon_sym_CARET, - ACTIONS(2295), 1, - anon_sym_GT_EQ, - ACTIONS(2299), 1, - anon_sym_DOT, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(1211), 1, - sym_text_interpolation, - ACTIONS(2273), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2289), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2297), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2303), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2473), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2293), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2291), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43147] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2349), 1, - anon_sym_SEMI, - ACTIONS(2399), 1, - anon_sym_COMMA, - STATE(1212), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43229] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2475), 1, - anon_sym_RBRACE, - STATE(1213), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43308] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2477), 1, - anon_sym_RBRACE, - STATE(1214), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43387] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2479), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1215), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43466] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2481), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1216), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43545] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1217), 1, - sym_text_interpolation, - ACTIONS(2485), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2483), 27, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_string, - anon_sym_int, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [43588] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2487), 1, - anon_sym_RBRACE, - STATE(1218), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43667] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2489), 1, - anon_sym_COLON, - STATE(1219), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43746] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2491), 1, - anon_sym_RBRACE, - STATE(1220), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43825] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2493), 1, - anon_sym_RBRACE, - STATE(1221), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43904] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2495), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2497), 1, - anon_sym_RBRACE, - ACTIONS(2499), 1, - aux_sym_enum_case_token1, - ACTIONS(2501), 1, - aux_sym_final_modifier_token1, - ACTIONS(2503), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2505), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2507), 1, - sym_var_modifier, - STATE(1222), 1, - sym_text_interpolation, - STATE(1264), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1315), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1322), 1, - aux_sym_property_declaration_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1360), 1, - sym__enum_member_declaration, - STATE(1441), 1, - sym__modifier, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2509), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1363), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1442), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [43985] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2511), 1, - anon_sym_RBRACE, - STATE(1223), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44064] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2513), 1, - anon_sym_RBRACE, - STATE(1224), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44143] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2515), 1, - anon_sym_RPAREN, - STATE(1225), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44222] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2517), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1226), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44301] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2519), 1, - anon_sym_RBRACE, - STATE(1227), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44380] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2521), 1, - anon_sym_RBRACE, - STATE(1228), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44459] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2523), 1, - anon_sym_RPAREN, - STATE(1229), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44538] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2525), 1, - anon_sym_RBRACE, - STATE(1230), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44617] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2527), 1, - anon_sym_RBRACE, - STATE(1231), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44696] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2529), 1, - anon_sym_RBRACE, - STATE(1232), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44775] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2531), 1, - anon_sym_RBRACE, - STATE(1233), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44854] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2533), 1, - anon_sym_RBRACE, - STATE(1234), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44933] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2535), 1, - anon_sym_RBRACE, - STATE(1235), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45012] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2537), 1, - anon_sym_RBRACE, - STATE(1236), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45091] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2539), 1, - anon_sym_COLON, - STATE(1237), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45170] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2541), 1, - anon_sym_RBRACE, - STATE(1238), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45249] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2543), 1, - anon_sym_RBRACE, - STATE(1239), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45328] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2545), 1, - anon_sym_EQ_GT, - STATE(1240), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45407] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2547), 1, - anon_sym_RBRACE, - STATE(1241), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45486] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2549), 1, - anon_sym_RPAREN, - STATE(1242), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45565] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2551), 1, - anon_sym_RBRACE, - STATE(1243), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45644] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2553), 1, - anon_sym_RBRACE, - STATE(1244), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45723] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2487), 1, - anon_sym_RBRACK, - STATE(1245), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45802] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2555), 1, - anon_sym_RBRACE, - STATE(1246), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45881] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2557), 1, - anon_sym_RBRACE, - STATE(1247), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45960] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2559), 1, - anon_sym_COLON, - STATE(1248), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46039] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2495), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2499), 1, - aux_sym_enum_case_token1, - ACTIONS(2501), 1, - aux_sym_final_modifier_token1, - ACTIONS(2503), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2505), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2507), 1, - sym_var_modifier, - ACTIONS(2561), 1, - anon_sym_RBRACE, - STATE(1249), 1, - sym_text_interpolation, - STATE(1267), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1315), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1322), 1, - aux_sym_property_declaration_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1360), 1, - sym__enum_member_declaration, - STATE(1441), 1, - sym__modifier, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2509), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1363), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1442), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [46120] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2563), 1, - anon_sym_RBRACE, - STATE(1250), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46199] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2565), 1, - anon_sym_RBRACE, - STATE(1251), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46278] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2567), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1252), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46357] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2569), 1, - anon_sym_RBRACE, - STATE(1253), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46436] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2571), 1, - anon_sym_RBRACK, - STATE(1254), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46515] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2573), 1, - anon_sym_COLON, - STATE(1255), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46594] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2477), 1, - anon_sym_RBRACK, - STATE(1256), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46673] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2575), 1, - anon_sym_RBRACE, - STATE(1257), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46752] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2577), 1, - anon_sym_RBRACE, - STATE(1258), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46831] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2579), 1, - anon_sym_EQ_GT, - STATE(1259), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46910] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2581), 1, - anon_sym_RBRACE, - STATE(1260), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46989] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(2583), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2586), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2589), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2592), 1, - anon_sym_RBRACE, - ACTIONS(2594), 1, - aux_sym_enum_case_token1, - ACTIONS(2597), 1, - aux_sym_final_modifier_token1, - ACTIONS(2600), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2603), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2606), 1, - sym_var_modifier, - ACTIONS(2612), 1, - anon_sym_POUND_LBRACK, - STATE(1315), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1322), 1, - aux_sym_property_declaration_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1360), 1, - sym__enum_member_declaration, - STATE(1441), 1, - sym__modifier, - STATE(1770), 1, - sym__function_definition_header, - STATE(1261), 2, - sym_text_interpolation, - aux_sym_enum_declaration_list_repeat1, - ACTIONS(2609), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1363), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1442), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [47068] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2615), 1, - anon_sym_RBRACE, - STATE(1262), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [47147] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2617), 1, - anon_sym_RBRACK, - STATE(1263), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [47226] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2495), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2499), 1, - aux_sym_enum_case_token1, - ACTIONS(2501), 1, - aux_sym_final_modifier_token1, - ACTIONS(2503), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2505), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2507), 1, - sym_var_modifier, - ACTIONS(2619), 1, - anon_sym_RBRACE, - STATE(1261), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1264), 1, - sym_text_interpolation, - STATE(1315), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1322), 1, - aux_sym_property_declaration_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1360), 1, - sym__enum_member_declaration, - STATE(1441), 1, - sym__modifier, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2509), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1363), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1442), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [47307] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2617), 1, - anon_sym_RBRACE, - STATE(1265), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [47386] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2621), 1, - anon_sym_RBRACE, - STATE(1266), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [47465] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2325), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2495), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2499), 1, - aux_sym_enum_case_token1, - ACTIONS(2501), 1, - aux_sym_final_modifier_token1, - ACTIONS(2503), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2505), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2507), 1, - sym_var_modifier, - ACTIONS(2623), 1, - anon_sym_RBRACE, - STATE(1261), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1267), 1, - sym_text_interpolation, - STATE(1315), 1, - sym_attribute_list, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1322), 1, - aux_sym_property_declaration_repeat1, - STATE(1328), 1, - sym_attribute_group, - STATE(1360), 1, - sym__enum_member_declaration, - STATE(1441), 1, - sym__modifier, - STATE(1770), 1, - sym__function_definition_header, - ACTIONS(2509), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1363), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1442), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [47546] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2625), 1, - anon_sym_RBRACE, - STATE(1268), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [47625] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2627), 1, - anon_sym_RBRACK, - STATE(1269), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [47704] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2629), 1, - anon_sym_RBRACE, - STATE(1270), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [47783] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2631), 1, - anon_sym_RBRACE, - STATE(1271), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [47862] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2571), 1, - anon_sym_RBRACE, - STATE(1272), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [47941] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2633), 1, - anon_sym_RBRACE, - STATE(1273), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48020] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2635), 1, - anon_sym_RBRACE, - STATE(1274), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48099] = 17, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1615), 1, - anon_sym_QMARK, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(1275), 1, - sym_text_interpolation, - STATE(1531), 1, - sym__types, - STATE(1539), 1, - sym_qualified_name, - STATE(2084), 1, - sym_variable_name, - STATE(2131), 1, - sym__type, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [48166] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2637), 1, - anon_sym_RBRACE, - STATE(1276), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48245] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2639), 1, - anon_sym_RBRACE, - STATE(1277), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48324] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2641), 1, - anon_sym_EQ_GT, - STATE(1278), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48403] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2627), 1, - anon_sym_RBRACE, - STATE(1279), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48482] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2643), 1, - anon_sym_RBRACE, - STATE(1280), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48561] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2645), 1, - anon_sym_RBRACE, - STATE(1281), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48640] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2647), 1, - anon_sym_RPAREN, - STATE(1282), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48719] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2159), 1, - anon_sym_AMP, - ACTIONS(2161), 1, - anon_sym_PIPE, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2169), 1, - anon_sym_AMP_AMP, - ACTIONS(2171), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_GT_EQ, - ACTIONS(2183), 1, - anon_sym_DOT, - ACTIONS(2185), 1, - anon_sym_SLASH, - ACTIONS(2191), 1, - anon_sym_QMARK, - ACTIONS(2193), 1, - aux_sym_binary_expression_token2, - ACTIONS(2195), 1, - aux_sym_binary_expression_token3, - ACTIONS(2197), 1, - aux_sym_binary_expression_token4, - ACTIONS(2637), 1, - anon_sym_RBRACK, - STATE(1283), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2173), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2181), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2177), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2175), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48798] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_AMP, - ACTIONS(2089), 1, - anon_sym_QMARK, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2097), 1, - aux_sym_binary_expression_token2, - ACTIONS(2099), 1, - aux_sym_binary_expression_token3, - ACTIONS(2101), 1, - aux_sym_binary_expression_token4, - ACTIONS(2103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2105), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_EQ, - ACTIONS(2119), 1, - anon_sym_DOT, - ACTIONS(2121), 1, - anon_sym_SLASH, - ACTIONS(2649), 1, - anon_sym_RBRACE, - STATE(1284), 1, - sym_text_interpolation, - ACTIONS(2093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2109), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2117), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2123), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2111), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48877] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2651), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1285), 1, - sym_text_interpolation, - ACTIONS(2449), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2445), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [48921] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1615), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_bottom_type, - STATE(1286), 1, - sym_text_interpolation, - STATE(1531), 1, - sym__types, - STATE(1539), 1, - sym_qualified_name, - STATE(2265), 1, - sym__type, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1646), 2, - sym_union_type, - sym_intersection_type, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [48985] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1287), 1, - sym_text_interpolation, - ACTIONS(2657), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2655), 26, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_string, - anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49027] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1288), 1, - sym_text_interpolation, - ACTIONS(2661), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2659), 26, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49069] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2663), 1, - sym_name, - ACTIONS(2667), 1, - anon_sym_QMARK, - ACTIONS(2669), 1, - sym_bottom_type, - STATE(1289), 1, - sym_text_interpolation, - STATE(1505), 1, - sym__types, - STATE(1681), 1, - sym_qualified_name, - STATE(1953), 1, - sym__type, - STATE(2535), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - STATE(1951), 2, - sym_union_type, - sym_intersection_type, - STATE(1680), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(2665), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [49133] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1290), 1, - sym_text_interpolation, - ACTIONS(2449), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2445), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49174] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1291), 1, - sym_text_interpolation, - ACTIONS(2673), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2671), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49215] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1292), 1, - sym_text_interpolation, - ACTIONS(2677), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2675), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49256] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1293), 1, - sym_text_interpolation, - ACTIONS(2681), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2679), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49297] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1661), 1, - anon_sym_QMARK, - STATE(1294), 1, - sym_text_interpolation, - STATE(1539), 1, - sym_qualified_name, - STATE(1694), 1, - sym__types, - STATE(2481), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [49351] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1615), 1, - anon_sym_QMARK, - STATE(1295), 1, - sym_text_interpolation, - STATE(1539), 1, - sym_qualified_name, - STATE(1566), 1, - sym__types, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [49405] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1615), 1, - anon_sym_QMARK, - STATE(1296), 1, - sym_text_interpolation, - STATE(1539), 1, - sym_qualified_name, - STATE(1694), 1, - sym__types, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [49459] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2663), 1, - sym_name, - ACTIONS(2667), 1, - anon_sym_QMARK, - STATE(1297), 1, - sym_text_interpolation, - STATE(1681), 1, - sym_qualified_name, - STATE(1718), 1, - sym__types, - STATE(2535), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - STATE(1680), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(2665), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [49513] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2663), 1, - sym_name, - ACTIONS(2667), 1, - anon_sym_QMARK, - STATE(1298), 1, - sym_text_interpolation, - STATE(1681), 1, - sym_qualified_name, - STATE(1803), 1, - sym__types, - STATE(2535), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - STATE(1680), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(2665), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [49567] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - ACTIONS(1661), 1, - anon_sym_QMARK, - STATE(1299), 1, - sym_text_interpolation, - STATE(1539), 1, - sym_qualified_name, - STATE(1566), 1, - sym__types, - STATE(2481), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1594), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [49621] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(2687), 1, - anon_sym_POUND_LBRACK, - STATE(1302), 1, - sym_attribute_group, - STATE(1300), 2, - sym_text_interpolation, - aux_sym_attribute_list_repeat1, - ACTIONS(2685), 4, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - ACTIONS(2683), 16, - aux_sym_namespace_definition_token1, - anon_sym_string, - anon_sym_int, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49662] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1663), 1, - anon_sym_POUND_LBRACK, - STATE(1300), 1, - aux_sym_attribute_list_repeat1, - STATE(1301), 1, - sym_text_interpolation, - STATE(1302), 1, - sym_attribute_group, - ACTIONS(2692), 4, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - ACTIONS(2690), 16, - aux_sym_namespace_definition_token1, - anon_sym_string, - anon_sym_int, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49705] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1302), 1, - sym_text_interpolation, - ACTIONS(2696), 5, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2694), 16, - aux_sym_namespace_definition_token1, - anon_sym_string, - anon_sym_int, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49740] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - STATE(1303), 1, - sym_text_interpolation, - STATE(1539), 1, - sym_qualified_name, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1569), 2, - sym_named_type, - sym_primitive_type, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [49787] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1304), 1, - sym_text_interpolation, - ACTIONS(2700), 5, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2698), 16, - aux_sym_namespace_definition_token1, - anon_sym_string, - anon_sym_int, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49822] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2663), 1, - sym_name, - STATE(1305), 1, - sym_text_interpolation, - STATE(1681), 1, - sym_qualified_name, - STATE(2535), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - STATE(1654), 2, - sym_named_type, - sym_primitive_type, - ACTIONS(2665), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [49869] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1306), 1, - sym_text_interpolation, - ACTIONS(2704), 5, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2702), 16, - aux_sym_namespace_definition_token1, - anon_sym_string, - anon_sym_int, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49904] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - STATE(1307), 1, - sym_text_interpolation, - STATE(1539), 1, - sym_qualified_name, - STATE(2481), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1569), 2, - sym_named_type, - sym_primitive_type, - ACTIONS(1607), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [49951] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1308), 1, - sym_text_interpolation, - ACTIONS(2708), 5, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2706), 16, - aux_sym_namespace_definition_token1, - anon_sym_string, - anon_sym_int, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49986] = 16, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2710), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, - sym_escape_sequence, - ACTIONS(2722), 1, - anon_sym_DOLLAR, - ACTIONS(2725), 1, - sym_encapsed_string_chars_heredoc, - ACTIONS(2728), 1, - sym_heredoc_end, - STATE(1318), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1326), 1, - sym__new_line, - STATE(1352), 1, - sym_variable_name, - STATE(1412), 1, - sym__simple_string_member_access_expression, - ACTIONS(2719), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - STATE(1309), 2, - sym_text_interpolation, - aux_sym_heredoc_body_repeat1, - STATE(1407), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1409), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - ACTIONS(2716), 4, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - [50042] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2730), 1, - anon_sym_LBRACE, - ACTIONS(2732), 1, - sym_escape_sequence, - ACTIONS(2739), 1, - anon_sym_DOLLAR, - ACTIONS(2741), 1, - sym_encapsed_string_chars_heredoc, - ACTIONS(2743), 1, - sym_heredoc_end, - STATE(1309), 1, - aux_sym_heredoc_body_repeat1, - STATE(1310), 1, - sym_text_interpolation, - STATE(1318), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1326), 1, - sym__new_line, - STATE(1352), 1, - sym_variable_name, - STATE(1412), 1, - sym__simple_string_member_access_expression, - ACTIONS(2736), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - STATE(1407), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1409), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - ACTIONS(2734), 4, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - [50100] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1311), 1, - sym_text_interpolation, - ACTIONS(2657), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2655), 18, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token3, - anon_sym_string, - anon_sym_int, - aux_sym_readonly_modifier_token1, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [50134] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1312), 1, - sym_text_interpolation, - ACTIONS(2681), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2679), 17, - aux_sym_namespace_definition_token1, - anon_sym_string, - anon_sym_int, - aux_sym_class_declaration_token1, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [50167] = 18, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2323), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2329), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2333), 1, - aux_sym_final_modifier_token1, - ACTIONS(2335), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2337), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2339), 1, - sym_var_modifier, - STATE(636), 1, - aux_sym_property_declaration_repeat1, - STATE(1207), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1292), 1, - sym__modifier, - STATE(1313), 1, - sym_text_interpolation, - STATE(1359), 1, - sym__const_declaration, - STATE(1848), 1, - sym__function_definition_header, - ACTIONS(2341), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1290), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - [50226] = 16, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2730), 1, - anon_sym_LBRACE, - ACTIONS(2732), 1, - sym_escape_sequence, - ACTIONS(2739), 1, - anon_sym_DOLLAR, - ACTIONS(2741), 1, - sym_encapsed_string_chars_heredoc, - STATE(1310), 1, - aux_sym_heredoc_body_repeat1, - STATE(1314), 1, - sym_text_interpolation, - STATE(1318), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1326), 1, - sym__new_line, - STATE(1352), 1, - sym_variable_name, - STATE(1412), 1, - sym__simple_string_member_access_expression, - ACTIONS(2745), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - STATE(1407), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1409), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - ACTIONS(2734), 4, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - [50281] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2495), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2501), 1, - aux_sym_final_modifier_token1, - ACTIONS(2503), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2505), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2507), 1, - sym_var_modifier, - ACTIONS(2747), 1, - aux_sym_enum_case_token1, - STATE(1315), 1, - sym_text_interpolation, - STATE(1321), 1, - aux_sym_property_declaration_repeat1, - STATE(1441), 1, - sym__modifier, - STATE(1848), 1, - sym__function_definition_header, - ACTIONS(2509), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1442), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [50333] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2749), 1, - anon_sym_LBRACE, - ACTIONS(2752), 1, - sym_escape_sequence, - ACTIONS(2760), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_encapsed_string_chars_heredoc, - ACTIONS(2766), 1, - sym_heredoc_end, - STATE(1352), 1, - sym_variable_name, - STATE(1412), 1, - sym__simple_string_member_access_expression, - ACTIONS(2758), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - STATE(1316), 2, - sym_text_interpolation, - aux_sym__interpolated_string_body_heredoc, - STATE(1407), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1409), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - ACTIONS(2755), 4, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - [50383] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2728), 1, - sym_heredoc_end, - ACTIONS(2730), 1, - anon_sym_LBRACE, - ACTIONS(2732), 1, - sym_escape_sequence, - ACTIONS(2739), 1, - anon_sym_DOLLAR, - ACTIONS(2741), 1, - sym_encapsed_string_chars_heredoc, - STATE(1316), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1317), 1, - sym_text_interpolation, - STATE(1352), 1, - sym_variable_name, - STATE(1412), 1, - sym__simple_string_member_access_expression, - ACTIONS(2768), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - STATE(1407), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1409), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - ACTIONS(2734), 4, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - [50435] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2730), 1, - anon_sym_LBRACE, - ACTIONS(2732), 1, - sym_escape_sequence, - ACTIONS(2739), 1, - anon_sym_DOLLAR, - ACTIONS(2741), 1, - sym_encapsed_string_chars_heredoc, - ACTIONS(2772), 1, - sym_heredoc_end, - STATE(1316), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1318), 1, - sym_text_interpolation, - STATE(1352), 1, - sym_variable_name, - STATE(1412), 1, - sym__simple_string_member_access_expression, - ACTIONS(2770), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - STATE(1407), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1409), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - ACTIONS(2734), 4, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - [50487] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - STATE(1319), 1, - sym_text_interpolation, - STATE(1320), 1, - aux_sym_attribute_list_repeat1, - STATE(1328), 1, - sym_attribute_group, - ACTIONS(2692), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym__arrow_function_header_token1, - [50522] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(2774), 1, - anon_sym_POUND_LBRACK, - STATE(1328), 1, - sym_attribute_group, - STATE(1320), 2, - sym_text_interpolation, - aux_sym_attribute_list_repeat1, - ACTIONS(2685), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym__arrow_function_header_token1, - [50555] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2495), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2501), 1, - aux_sym_final_modifier_token1, - ACTIONS(2503), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2505), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2507), 1, - sym_var_modifier, - STATE(1321), 1, - sym_text_interpolation, - STATE(1323), 1, - aux_sym_property_declaration_repeat1, - STATE(1441), 1, - sym__modifier, - STATE(1859), 1, - sym__function_definition_header, - ACTIONS(2509), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1442), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [50604] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2327), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2495), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2501), 1, - aux_sym_final_modifier_token1, - ACTIONS(2503), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2505), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2507), 1, - sym_var_modifier, - STATE(1322), 1, - sym_text_interpolation, - STATE(1323), 1, - aux_sym_property_declaration_repeat1, - STATE(1441), 1, - sym__modifier, - STATE(1845), 1, - sym__function_definition_header, - ACTIONS(2509), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1442), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [50653] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2244), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2777), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2780), 1, - aux_sym_final_modifier_token1, - ACTIONS(2783), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2786), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2789), 1, - sym_var_modifier, - STATE(1441), 1, - sym__modifier, - STATE(1323), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat1, - ACTIONS(2792), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1442), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [50697] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1324), 1, - sym_text_interpolation, - ACTIONS(2795), 6, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_cast_type_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(1683), 10, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_SQUOTE, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - aux_sym_string_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - [50727] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1325), 1, - sym_text_interpolation, - ACTIONS(2700), 15, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym__arrow_function_header_token1, - anon_sym_POUND_LBRACK, - [50754] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2732), 1, - sym_escape_sequence, - ACTIONS(2734), 1, - anon_sym_BSLASHu, - ACTIONS(2797), 1, - anon_sym_LBRACE, - ACTIONS(2799), 1, - anon_sym_DOLLAR, - STATE(1317), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1326), 1, - sym_text_interpolation, - STATE(1352), 1, - sym_variable_name, - STATE(1412), 1, - sym__simple_string_member_access_expression, - STATE(1407), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1409), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - ACTIONS(2741), 4, - sym_encapsed_string_chars_heredoc, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - [50799] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1327), 1, - sym_text_interpolation, - ACTIONS(2708), 15, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym__arrow_function_header_token1, - anon_sym_POUND_LBRACK, - [50826] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1328), 1, - sym_text_interpolation, - ACTIONS(2696), 15, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym__arrow_function_header_token1, - anon_sym_POUND_LBRACK, - [50853] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1329), 1, - sym_text_interpolation, - ACTIONS(2704), 15, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym__arrow_function_header_token1, - anon_sym_POUND_LBRACK, - [50880] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1330), 1, - sym_text_interpolation, - ACTIONS(2801), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50906] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1331), 1, - sym_text_interpolation, - ACTIONS(1000), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50932] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1332), 1, - sym_text_interpolation, - ACTIONS(2803), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50958] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1333), 1, - sym_text_interpolation, - ACTIONS(2803), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50984] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1334), 1, - sym_text_interpolation, - ACTIONS(2805), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51010] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LBRACE, - ACTIONS(2809), 1, - sym_escape_sequence, - ACTIONS(2811), 1, - anon_sym_BSLASHu, - ACTIONS(2815), 1, - anon_sym_DQUOTE, - ACTIONS(2817), 1, - anon_sym_DOLLAR, - STATE(1335), 1, - sym_text_interpolation, - STATE(1347), 1, - aux_sym__interpolated_string_body, - STATE(1419), 1, - sym_variable_name, - STATE(1535), 1, - sym__simple_string_member_access_expression, - ACTIONS(2813), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1500), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1536), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [51056] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LBRACE, - ACTIONS(2809), 1, - sym_escape_sequence, - ACTIONS(2811), 1, - anon_sym_BSLASHu, - ACTIONS(2817), 1, - anon_sym_DOLLAR, - ACTIONS(2819), 1, - anon_sym_DQUOTE, - STATE(1336), 1, - sym_text_interpolation, - STATE(1344), 1, - aux_sym__interpolated_string_body, - STATE(1419), 1, - sym_variable_name, - STATE(1535), 1, - sym__simple_string_member_access_expression, - ACTIONS(2813), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1500), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1536), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [51102] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1337), 1, - sym_text_interpolation, - ACTIONS(2821), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51128] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2825), 1, - sym_integer, - STATE(1338), 1, - sym_text_interpolation, - STATE(2530), 1, - sym__string, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(2823), 3, - sym_float, - sym_boolean, - sym_null, - STATE(731), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - [51166] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1339), 1, - sym_text_interpolation, - ACTIONS(2827), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51192] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LBRACE, - ACTIONS(2809), 1, - sym_escape_sequence, - ACTIONS(2811), 1, - anon_sym_BSLASHu, - ACTIONS(2817), 1, - anon_sym_DOLLAR, - ACTIONS(2829), 1, - anon_sym_DQUOTE, - STATE(1335), 1, - aux_sym__interpolated_string_body, - STATE(1340), 1, - sym_text_interpolation, - STATE(1419), 1, - sym_variable_name, - STATE(1535), 1, - sym__simple_string_member_access_expression, - ACTIONS(2813), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1500), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1536), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [51238] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1341), 1, - sym_text_interpolation, - ACTIONS(2831), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51264] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1342), 1, - sym_text_interpolation, - ACTIONS(2833), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51290] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1343), 1, - sym_text_interpolation, - ACTIONS(984), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51316] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LBRACE, - ACTIONS(2809), 1, - sym_escape_sequence, - ACTIONS(2811), 1, - anon_sym_BSLASHu, - ACTIONS(2817), 1, - anon_sym_DOLLAR, - ACTIONS(2835), 1, - anon_sym_DQUOTE, - STATE(1344), 1, - sym_text_interpolation, - STATE(1347), 1, - aux_sym__interpolated_string_body, - STATE(1419), 1, - sym_variable_name, - STATE(1535), 1, - sym__simple_string_member_access_expression, - ACTIONS(2813), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1500), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1536), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [51362] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1345), 1, - sym_text_interpolation, - ACTIONS(2837), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51388] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1346), 1, - sym_text_interpolation, - ACTIONS(2839), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51414] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_LBRACE, - ACTIONS(2844), 1, - sym_escape_sequence, - ACTIONS(2847), 1, - anon_sym_BSLASHu, - ACTIONS(2853), 1, - anon_sym_DQUOTE, - ACTIONS(2855), 1, - anon_sym_DOLLAR, - STATE(1419), 1, - sym_variable_name, - STATE(1535), 1, - sym__simple_string_member_access_expression, - ACTIONS(2850), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1347), 2, - sym_text_interpolation, - aux_sym__interpolated_string_body, - STATE(1500), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1536), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [51458] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1348), 1, - sym_text_interpolation, - ACTIONS(2839), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51484] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1349), 1, - sym_text_interpolation, - ACTIONS(2858), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51510] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1350), 1, - sym_text_interpolation, - ACTIONS(2860), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51536] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1351), 1, - sym_text_interpolation, - ACTIONS(2827), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51562] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_DASH_GT, - ACTIONS(2866), 1, - anon_sym_LBRACK, - ACTIONS(2870), 1, - sym_encapsed_string_chars_after_variable_heredoc, - STATE(1352), 1, - sym_text_interpolation, - ACTIONS(2868), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(2862), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [51596] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1353), 1, - sym_text_interpolation, - ACTIONS(2872), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51622] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1354), 1, - sym_text_interpolation, - ACTIONS(1516), 4, - sym_encapsed_string_chars_heredoc, - sym_encapsed_string_chars_after_variable_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(1518), 10, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [51650] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1355), 1, - sym_text_interpolation, - ACTIONS(2831), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51676] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_final_modifier_token1, - ACTIONS(2335), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2874), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2876), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2878), 1, - aux_sym_enum_declaration_token1, - ACTIONS(2880), 1, - aux_sym_class_declaration_token1, - ACTIONS(2882), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2884), 1, - aux_sym__arrow_function_header_token1, - STATE(1356), 1, - sym_text_interpolation, - STATE(2327), 1, - sym__function_definition_header, - STATE(2421), 1, - sym_static_modifier, - STATE(2493), 3, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - [51721] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2886), 1, - anon_sym_LBRACE, - ACTIONS(2890), 1, - anon_sym_BSLASHu, - ACTIONS(2892), 1, - anon_sym_BQUOTE, - ACTIONS(2894), 1, - anon_sym_DOLLAR, - STATE(1357), 1, - sym_text_interpolation, - STATE(1376), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1445), 1, - sym_variable_name, - STATE(1564), 1, - sym__simple_string_member_access_expression, - ACTIONS(2888), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1565), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1595), 2, - sym__complex_string_part, - sym__simple_string_part, - [51764] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2896), 1, - anon_sym_LBRACE, - ACTIONS(2902), 1, - anon_sym_BSLASHu, - ACTIONS(2905), 1, - anon_sym_BQUOTE, - ACTIONS(2907), 1, - anon_sym_DOLLAR, - STATE(1445), 1, - sym_variable_name, - STATE(1564), 1, - sym__simple_string_member_access_expression, - ACTIONS(2899), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1358), 2, - sym_text_interpolation, - aux_sym__interpolated_execution_operator_body, - STATE(1565), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1595), 2, - sym__complex_string_part, - sym__simple_string_part, - [51805] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1359), 1, - sym_text_interpolation, - ACTIONS(2910), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51830] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1360), 1, - sym_text_interpolation, - ACTIONS(2912), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51855] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2886), 1, - anon_sym_LBRACE, - ACTIONS(2890), 1, - anon_sym_BSLASHu, - ACTIONS(2894), 1, - anon_sym_DOLLAR, - ACTIONS(2914), 1, - anon_sym_BQUOTE, - STATE(1358), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1361), 1, - sym_text_interpolation, - STATE(1445), 1, - sym_variable_name, - STATE(1564), 1, - sym__simple_string_member_access_expression, - ACTIONS(2888), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1565), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1595), 2, - sym__complex_string_part, - sym__simple_string_part, - [51898] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1362), 1, - sym_text_interpolation, - ACTIONS(2916), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51923] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1363), 1, - sym_text_interpolation, - ACTIONS(2918), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51948] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_final_modifier_token1, - ACTIONS(2335), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2874), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2876), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2882), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2884), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(2920), 1, - aux_sym_enum_declaration_token1, - ACTIONS(2922), 1, - aux_sym_class_declaration_token1, - STATE(1364), 1, - sym_text_interpolation, - STATE(2262), 1, - sym__function_definition_header, - STATE(2421), 1, - sym_static_modifier, - STATE(2422), 3, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - [51993] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1365), 1, - sym_text_interpolation, - ACTIONS(2924), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52018] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1366), 1, - sym_text_interpolation, - ACTIONS(2926), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52043] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1367), 1, - sym_text_interpolation, - ACTIONS(2928), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52068] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1368), 1, - sym_text_interpolation, - ACTIONS(2930), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52093] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1369), 1, - sym_text_interpolation, - ACTIONS(2932), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52118] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1370), 1, - sym_text_interpolation, - ACTIONS(1332), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52143] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1371), 1, - sym_text_interpolation, - ACTIONS(2934), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52168] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1372), 1, - sym_text_interpolation, - ACTIONS(2936), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52193] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1373), 1, - sym_text_interpolation, - ACTIONS(2938), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52218] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1374), 1, - sym_text_interpolation, - ACTIONS(1156), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52243] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1375), 1, - sym_text_interpolation, - ACTIONS(2940), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52268] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2886), 1, - anon_sym_LBRACE, - ACTIONS(2890), 1, - anon_sym_BSLASHu, - ACTIONS(2894), 1, - anon_sym_DOLLAR, - ACTIONS(2942), 1, - anon_sym_BQUOTE, - STATE(1358), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1376), 1, - sym_text_interpolation, - STATE(1445), 1, - sym_variable_name, - STATE(1564), 1, - sym__simple_string_member_access_expression, - ACTIONS(2888), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1565), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1595), 2, - sym__complex_string_part, - sym__simple_string_part, - [52311] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1377), 1, - sym_text_interpolation, - ACTIONS(2944), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52336] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1378), 1, - sym_text_interpolation, - ACTIONS(2946), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52361] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1379), 1, - sym_text_interpolation, - ACTIONS(2948), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52386] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1380), 1, - sym_text_interpolation, - ACTIONS(2950), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52411] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1381), 1, - sym_text_interpolation, - ACTIONS(2952), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52436] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1382), 1, - sym_text_interpolation, - ACTIONS(2954), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52461] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1383), 1, - sym_text_interpolation, - ACTIONS(1340), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52486] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2956), 1, - sym_name, - ACTIONS(2962), 1, - anon_sym_BSLASH, - STATE(1384), 1, - sym_text_interpolation, - STATE(1774), 1, - sym_namespace_use_clause, - STATE(2485), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - ACTIONS(2960), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - STATE(1647), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52527] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1385), 1, - sym_text_interpolation, - ACTIONS(2964), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52552] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1386), 1, - sym_text_interpolation, - ACTIONS(2966), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52577] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2956), 1, - sym_name, - ACTIONS(2970), 1, - anon_sym_BSLASH, - STATE(1387), 1, - sym_text_interpolation, - STATE(1731), 1, - sym_namespace_use_clause, - STATE(2499), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - ACTIONS(2968), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - STATE(1647), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52618] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2886), 1, - anon_sym_LBRACE, - ACTIONS(2890), 1, - anon_sym_BSLASHu, - ACTIONS(2894), 1, - anon_sym_DOLLAR, - ACTIONS(2972), 1, - anon_sym_BQUOTE, - STATE(1361), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1388), 1, - sym_text_interpolation, - STATE(1445), 1, - sym_variable_name, - STATE(1564), 1, - sym__simple_string_member_access_expression, - ACTIONS(2888), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1565), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1595), 2, - sym__complex_string_part, - sym__simple_string_part, - [52661] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2974), 1, - sym_name, - ACTIONS(2978), 1, - anon_sym_RBRACK, - STATE(1389), 1, - sym_text_interpolation, - STATE(2144), 1, - sym_attribute, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1776), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52701] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2974), 1, - sym_name, - ACTIONS(2980), 1, - anon_sym_RBRACK, - STATE(1390), 1, - sym_text_interpolation, - STATE(2144), 1, - sym_attribute, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1776), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52741] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2974), 1, - sym_name, - ACTIONS(2982), 1, - anon_sym_RBRACK, - STATE(1391), 1, - sym_text_interpolation, - STATE(2144), 1, - sym_attribute, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1776), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52781] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2974), 1, - sym_name, - ACTIONS(2984), 1, - anon_sym_RBRACK, - STATE(1392), 1, - sym_text_interpolation, - STATE(2144), 1, - sym_attribute, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1776), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52821] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2956), 1, - sym_name, - ACTIONS(2986), 1, - anon_sym_BSLASH, - STATE(1393), 1, - sym_text_interpolation, - STATE(1823), 1, - sym_namespace_use_clause, - STATE(2494), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - STATE(1647), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52858] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1394), 1, - sym_text_interpolation, - ACTIONS(2990), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(2988), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [52883] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2956), 1, - sym_name, - ACTIONS(2992), 1, - anon_sym_BSLASH, - STATE(1395), 1, - sym_text_interpolation, - STATE(1802), 1, - sym_namespace_use_clause, - STATE(2409), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - STATE(1647), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52920] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1396), 1, - sym_text_interpolation, - ACTIONS(2766), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(2758), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [52945] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2974), 1, - sym_name, - STATE(1397), 1, - sym_text_interpolation, - STATE(1907), 1, - sym_attribute, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1776), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52982] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2974), 1, - sym_name, - STATE(1398), 1, - sym_text_interpolation, - STATE(1892), 1, - sym_attribute, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1776), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53019] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1399), 1, - sym_text_interpolation, - ACTIONS(2996), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(2994), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [53044] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1400), 1, - sym_text_interpolation, - ACTIONS(1520), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(1522), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [53069] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1401), 1, - sym_text_interpolation, - ACTIONS(3000), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(2998), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [53094] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2974), 1, - sym_name, - STATE(1402), 1, - sym_text_interpolation, - STATE(2144), 1, - sym_attribute, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1776), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53131] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1403), 1, - sym_text_interpolation, - ACTIONS(3004), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(3002), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [53156] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1404), 1, - sym_text_interpolation, - ACTIONS(1516), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(1518), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [53181] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1405), 1, - sym_text_interpolation, - ACTIONS(1552), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(1554), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [53206] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(3006), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(3008), 1, - aux_sym_use_instead_of_clause_token1, - STATE(565), 1, - sym_arguments, - STATE(1406), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53241] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1407), 1, - sym_text_interpolation, - ACTIONS(3012), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(3010), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [53266] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2956), 1, - sym_name, - STATE(1408), 1, - sym_text_interpolation, - STATE(1938), 1, - sym_namespace_use_clause, - STATE(2535), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - STATE(1647), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53303] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1409), 1, - sym_text_interpolation, - ACTIONS(2868), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(2862), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [53328] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_DOLLAR, - ACTIONS(1779), 1, - anon_sym_COLON_COLON, - ACTIONS(2673), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3014), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1410), 1, - sym_text_interpolation, - STATE(1724), 1, - sym_static_variable_declaration, - STATE(1725), 1, - sym_variable_name, - ACTIONS(1508), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53363] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_DOLLAR, - ACTIONS(1779), 1, - anon_sym_COLON_COLON, - ACTIONS(2673), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3014), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1411), 1, - sym_text_interpolation, - STATE(1725), 1, - sym_variable_name, - STATE(1771), 1, - sym_static_variable_declaration, - ACTIONS(1508), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53398] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1412), 1, - sym_text_interpolation, - ACTIONS(3018), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(3016), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [53423] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(3020), 1, - anon_sym_COMMA, - ACTIONS(3022), 1, - anon_sym_RPAREN, - STATE(565), 1, - sym_arguments, - STATE(1413), 1, - sym_text_interpolation, - STATE(1981), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53455] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(3020), 1, - anon_sym_COMMA, - ACTIONS(3024), 1, - anon_sym_RPAREN, - STATE(565), 1, - sym_arguments, - STATE(1414), 1, - sym_text_interpolation, - STATE(1989), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53487] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3026), 1, - sym_name, - STATE(1415), 1, - sym_text_interpolation, - STATE(2535), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - STATE(1571), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53521] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(3028), 1, - anon_sym_RPAREN, - STATE(565), 1, - sym_arguments, - STATE(1416), 1, - sym_text_interpolation, - STATE(1900), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53553] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3030), 1, - sym_name, - STATE(1417), 1, - sym_text_interpolation, - STATE(2535), 1, - sym_namespace_name, - STATE(2536), 1, - sym_namespace_name_as_prefix, - STATE(1824), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53587] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_COLON_COLON, - ACTIONS(2673), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3032), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1418), 1, - sym_text_interpolation, - ACTIONS(1508), 7, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53615] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_BSLASHu, - ACTIONS(3034), 1, - anon_sym_DASH_GT, - ACTIONS(3036), 1, - anon_sym_LBRACK, - ACTIONS(3038), 1, - sym_encapsed_string_chars_after_variable, - STATE(1419), 1, - sym_text_interpolation, - ACTIONS(2868), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [53645] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3040), 1, - sym_name, - STATE(1420), 1, - sym_text_interpolation, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1978), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53679] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1421), 1, - sym_text_interpolation, - ACTIONS(3044), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - ACTIONS(3042), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [53703] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(1422), 1, - sym_text_interpolation, - ACTIONS(1667), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53731] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3046), 1, - sym_name, - STATE(1423), 1, - sym_text_interpolation, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1870), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53765] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1518), 1, - anon_sym_BSLASHu, - STATE(1424), 1, - sym_text_interpolation, - ACTIONS(1516), 9, - sym_encapsed_string_chars, - sym_encapsed_string_chars_after_variable, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LBRACK, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [53789] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(1425), 1, - sym_text_interpolation, - ACTIONS(1502), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53817] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3048), 1, - sym_name, - STATE(1426), 1, - sym_text_interpolation, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - STATE(1780), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53851] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1427), 1, - sym_text_interpolation, - ACTIONS(2657), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [53872] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(3050), 1, - sym_name, - ACTIONS(3052), 1, - anon_sym_LBRACE, - STATE(1428), 1, - sym_text_interpolation, - STATE(1520), 1, - sym__reserved_identifier, - STATE(829), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53903] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3054), 1, - sym_name, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1429), 1, - sym_text_interpolation, - STATE(1528), 1, - sym_reference_modifier, - STATE(1572), 1, - sym_formal_parameters, - STATE(2180), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53936] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3058), 1, - sym_name, - ACTIONS(3062), 1, - anon_sym_LBRACE, - STATE(1430), 1, - sym_text_interpolation, - ACTIONS(3060), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(591), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [53965] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(3064), 1, - sym_name, - ACTIONS(3066), 1, - anon_sym_LBRACE, - STATE(1431), 1, - sym_text_interpolation, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(684), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [53994] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(3068), 1, - sym_name, - ACTIONS(3070), 1, - anon_sym_LBRACE, - STATE(1432), 1, - sym_text_interpolation, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(666), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54023] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3054), 1, - sym_name, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1433), 1, - sym_text_interpolation, - STATE(1516), 1, - sym_reference_modifier, - STATE(1548), 1, - sym_formal_parameters, - STATE(2180), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54056] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3072), 1, - sym_name, - ACTIONS(3076), 1, - anon_sym_LBRACE, - STATE(1434), 1, - sym_text_interpolation, - ACTIONS(3074), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(561), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54085] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3078), 1, - sym_name, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(828), 1, - sym__reserved_identifier, - STATE(1435), 1, - sym_text_interpolation, - STATE(593), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54116] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(1436), 1, - sym_text_interpolation, - ACTIONS(3082), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54143] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3084), 1, - sym_name, - ACTIONS(3086), 1, - anon_sym_LBRACE, - STATE(655), 1, - sym__reserved_identifier, - STATE(1437), 1, - sym_text_interpolation, - STATE(562), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54174] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(3088), 1, - sym_name, - ACTIONS(3090), 1, - anon_sym_LBRACE, - STATE(1438), 1, - sym_text_interpolation, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(814), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54203] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1444), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3092), 1, - sym_name, - ACTIONS(3094), 1, - anon_sym_LBRACE, - STATE(806), 1, - sym__reserved_identifier, - STATE(1439), 1, - sym_text_interpolation, - STATE(751), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54234] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3096), 1, - sym_name, - ACTIONS(3098), 1, - anon_sym_LBRACE, - STATE(1440), 1, - sym_text_interpolation, - STATE(1519), 1, - sym__reserved_identifier, - STATE(1509), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54265] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1441), 1, - sym_text_interpolation, - ACTIONS(2677), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [54286] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1442), 1, - sym_text_interpolation, - ACTIONS(2449), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [54307] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(1443), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3100), 7, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [54332] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1444), 1, - sym_text_interpolation, - ACTIONS(2673), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [54353] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_BSLASHu, - ACTIONS(3102), 1, - anon_sym_DASH_GT, - ACTIONS(3104), 1, - anon_sym_LBRACK, - ACTIONS(3106), 1, - sym_execution_string_chars_after_variable, - STATE(1445), 1, - sym_text_interpolation, - ACTIONS(2868), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [54382] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(3108), 1, - sym_name, - ACTIONS(3110), 1, - anon_sym_LBRACE, - STATE(1446), 1, - sym_text_interpolation, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(808), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54411] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(3096), 1, - sym_name, - ACTIONS(3098), 1, - anon_sym_LBRACE, - STATE(1447), 1, - sym_text_interpolation, - STATE(1519), 1, - sym__reserved_identifier, - STATE(678), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54442] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(565), 1, - sym_arguments, - STATE(1448), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54471] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1449), 1, - sym_text_interpolation, - ACTIONS(2661), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [54492] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1444), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3112), 1, - sym_name, - ACTIONS(3116), 1, - anon_sym_LBRACE, - STATE(1450), 1, - sym_text_interpolation, - ACTIONS(3114), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(755), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54521] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1444), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3118), 1, - sym_name, - ACTIONS(3120), 1, - anon_sym_LBRACE, - STATE(1451), 1, - sym_text_interpolation, - ACTIONS(3114), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(759), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54550] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(1452), 1, - sym_text_interpolation, - ACTIONS(2471), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54577] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1450), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3122), 1, - sym_name, - ACTIONS(3126), 1, - anon_sym_LBRACE, - STATE(1453), 1, - sym_text_interpolation, - ACTIONS(3124), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(632), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54606] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1454), 1, - sym_text_interpolation, - ACTIONS(2485), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [54627] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3050), 1, - sym_name, - ACTIONS(3052), 1, - anon_sym_LBRACE, - STATE(1455), 1, - sym_text_interpolation, - STATE(1520), 1, - sym__reserved_identifier, - STATE(1524), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54658] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3128), 1, - sym_name, - ACTIONS(3130), 1, - anon_sym_LBRACE, - STATE(1456), 1, - sym_text_interpolation, - ACTIONS(3060), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(592), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54687] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(3084), 1, - sym_name, - ACTIONS(3086), 1, - anon_sym_LBRACE, - STATE(655), 1, - sym__reserved_identifier, - STATE(1457), 1, - sym_text_interpolation, - STATE(673), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54718] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(1458), 1, - sym_text_interpolation, - ACTIONS(2443), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54745] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(1459), 1, - sym_text_interpolation, - ACTIONS(2415), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54772] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3072), 1, - sym_name, - ACTIONS(3076), 1, - anon_sym_LBRACE, - STATE(1460), 1, - sym_text_interpolation, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(561), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54801] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(3132), 1, - sym_name, - ACTIONS(3134), 1, - anon_sym_LBRACE, - STATE(1461), 1, - sym_text_interpolation, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(671), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54830] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(854), 1, - sym_arguments, - STATE(1462), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54859] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(3084), 1, - sym_name, - ACTIONS(3086), 1, - anon_sym_LBRACE, - STATE(655), 1, - sym__reserved_identifier, - STATE(1463), 1, - sym_text_interpolation, - STATE(682), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54890] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(708), 1, - sym_arguments, - STATE(1464), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54919] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1444), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3094), 1, - anon_sym_LBRACE, - ACTIONS(3136), 1, - sym_name, - STATE(1465), 1, - sym_text_interpolation, - STATE(1532), 1, - sym__reserved_identifier, - STATE(751), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54950] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(3138), 1, - sym_name, - ACTIONS(3140), 1, - anon_sym_LBRACE, - STATE(1466), 1, - sym_text_interpolation, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(672), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54979] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(1467), 1, - sym_text_interpolation, - ACTIONS(3142), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55006] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(1468), 1, - sym_text_interpolation, - ACTIONS(2457), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55033] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(3144), 1, - sym_name, - ACTIONS(3146), 1, - anon_sym_LBRACE, - STATE(1469), 1, - sym_text_interpolation, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(840), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55062] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(653), 1, - sym_arguments, - STATE(1470), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55091] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1471), 1, - sym_text_interpolation, - ACTIONS(2681), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [55112] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3148), 1, - sym_name, - ACTIONS(3150), 1, - anon_sym_LBRACE, - STATE(1472), 1, - sym_text_interpolation, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(563), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55141] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(3152), 1, - sym_name, - ACTIONS(3154), 1, - anon_sym_LBRACE, - STATE(1473), 1, - sym_text_interpolation, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(793), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55170] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(3156), 1, - sym_name, - ACTIONS(3158), 1, - anon_sym_LBRACE, - STATE(1474), 1, - sym_text_interpolation, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(807), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55199] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(1475), 1, - sym_text_interpolation, - ACTIONS(3160), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55226] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(3084), 1, - sym_name, - ACTIONS(3086), 1, - anon_sym_LBRACE, - STATE(655), 1, - sym__reserved_identifier, - STATE(1476), 1, - sym_text_interpolation, - STATE(820), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55257] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1450), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3162), 1, - sym_name, - ACTIONS(3164), 1, - anon_sym_LBRACE, - STATE(680), 1, - sym__reserved_identifier, - STATE(1477), 1, - sym_text_interpolation, - STATE(634), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55288] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(3166), 1, - sym_name, - ACTIONS(3168), 1, - anon_sym_LBRACE, - STATE(1478), 1, - sym_text_interpolation, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(692), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55317] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(3170), 1, - sym_name, - ACTIONS(3172), 1, - anon_sym_LBRACE, - STATE(1479), 1, - sym_text_interpolation, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(690), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55346] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1518), 1, - anon_sym_BSLASHu, - STATE(1480), 1, - sym_text_interpolation, - ACTIONS(1516), 8, - sym_execution_string_chars, - sym_execution_string_chars_after_variable, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LBRACK, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [55369] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(3084), 1, - sym_name, - ACTIONS(3086), 1, - anon_sym_LBRACE, - STATE(655), 1, - sym__reserved_identifier, - STATE(1481), 1, - sym_text_interpolation, - STATE(795), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55400] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(785), 1, - sym_arguments, - STATE(1482), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55429] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3148), 1, - sym_name, - ACTIONS(3150), 1, - anon_sym_LBRACE, - STATE(1483), 1, - sym_text_interpolation, - ACTIONS(3074), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(563), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55458] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(3174), 1, - sym_name, - ACTIONS(3176), 1, - anon_sym_LBRACE, - STATE(1484), 1, - sym_text_interpolation, - ACTIONS(2958), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(792), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55487] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1450), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3178), 1, - sym_name, - ACTIONS(3180), 1, - anon_sym_LBRACE, - STATE(1485), 1, - sym_text_interpolation, - ACTIONS(3124), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(631), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55516] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(3182), 1, - anon_sym_LBRACE, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - STATE(929), 1, - sym_declaration_list, - STATE(1486), 1, - sym_text_interpolation, - STATE(1613), 1, - sym_arguments, - STATE(1798), 1, - sym_base_clause, - STATE(2322), 1, - sym_class_interface_clause, - [55550] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - STATE(1487), 1, - sym_text_interpolation, - STATE(1539), 1, - sym_qualified_name, - STATE(1840), 1, - sym_named_type, - STATE(1972), 1, - sym_type_list, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - [55584] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1095), 1, - sym_declaration_list, - STATE(1488), 1, - sym_text_interpolation, - STATE(1545), 1, - sym_arguments, - STATE(1829), 1, - sym_base_clause, - STATE(2164), 1, - sym_class_interface_clause, - [55618] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3042), 1, - anon_sym_BSLASHu, - STATE(1489), 1, - sym_text_interpolation, - ACTIONS(3044), 7, - sym_encapsed_string_chars_heredoc, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - anon_sym_DOLLAR, - [55640] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(947), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3190), 1, - aux_sym_catch_clause_token1, - ACTIONS(3192), 1, - aux_sym_finally_clause_token1, - STATE(1490), 1, - sym_text_interpolation, - STATE(1499), 1, - aux_sym_try_statement_repeat1, - ACTIONS(945), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - STATE(1671), 2, - sym_catch_clause, - sym_finally_clause, - [55670] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1115), 1, - sym_declaration_list, - STATE(1491), 1, - sym_text_interpolation, - STATE(1616), 1, - sym_arguments, - STATE(1826), 1, - sym_base_clause, - STATE(2349), 1, - sym_class_interface_clause, - [55704] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(3182), 1, - anon_sym_LBRACE, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - STATE(897), 1, - sym_declaration_list, - STATE(1492), 1, - sym_text_interpolation, - STATE(1568), 1, - sym_arguments, - STATE(1846), 1, - sym_base_clause, - STATE(2362), 1, - sym_class_interface_clause, - [55738] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - STATE(1493), 1, - sym_text_interpolation, - STATE(1539), 1, - sym_qualified_name, - STATE(1840), 1, - sym_named_type, - STATE(2040), 1, - sym_type_list, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - [55772] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(3196), 1, - anon_sym_COMMA, - ACTIONS(3198), 1, - anon_sym_LBRACE, - STATE(1330), 1, - sym_use_list, - STATE(1494), 1, - sym_text_interpolation, - STATE(1550), 1, - aux_sym_base_clause_repeat1, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3194), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55804] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_COMMA, - ACTIONS(3022), 1, - anon_sym_RPAREN, - STATE(1495), 1, - sym_text_interpolation, - STATE(1981), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55830] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_COMMA, - ACTIONS(3024), 1, - anon_sym_RPAREN, - STATE(1496), 1, - sym_text_interpolation, - STATE(1989), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55856] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_COLON_COLON, - ACTIONS(2673), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3014), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1497), 1, - sym_text_interpolation, - ACTIONS(1508), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55882] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3028), 1, - anon_sym_RPAREN, - STATE(1498), 1, - sym_text_interpolation, - STATE(1900), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55908] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(937), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3200), 1, - aux_sym_catch_clause_token1, - ACTIONS(3203), 1, - aux_sym_finally_clause_token1, - ACTIONS(935), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - STATE(1499), 2, - sym_text_interpolation, - aux_sym_try_statement_repeat1, - STATE(1671), 2, - sym_catch_clause, - sym_finally_clause, - [55936] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3208), 1, - anon_sym_BSLASHu, - STATE(1500), 1, - sym_text_interpolation, - ACTIONS(3206), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [55957] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1501), 1, - sym_text_interpolation, - ACTIONS(3142), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55978] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(854), 1, - sym_arguments, - STATE(1502), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56001] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3210), 1, - anon_sym_BSLASHu, - STATE(1503), 1, - sym_text_interpolation, - ACTIONS(2853), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [56022] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(854), 1, - sym_arguments, - STATE(1504), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56045] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_PIPE, - STATE(1505), 1, - sym_text_interpolation, - STATE(1620), 1, - aux_sym_intersection_type_repeat1, - STATE(1653), 1, - aux_sym_union_type_repeat1, - ACTIONS(3212), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [56072] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(3221), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1506), 1, - sym_text_interpolation, - STATE(1897), 1, - sym_namespace_aliasing_clause, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3219), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [56099] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(3225), 1, - anon_sym_DASH, - STATE(1507), 1, - sym_text_interpolation, - STATE(2549), 1, - sym__simple_string_array_access_argument, - ACTIONS(3223), 2, - sym_integer, - sym_name, - STATE(2544), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [56126] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - STATE(613), 1, - sym_arguments, - STATE(1508), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56149] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(721), 1, - sym_arguments, - STATE(1509), 1, - sym_text_interpolation, - ACTIONS(1484), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56172] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1601), 1, - sym_name, - STATE(1510), 1, - sym_text_interpolation, - STATE(1539), 1, - sym_qualified_name, - STATE(1919), 1, - sym_named_type, - STATE(2452), 1, - sym_namespace_name_as_prefix, - STATE(2535), 1, - sym_namespace_name, - [56203] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2998), 1, - anon_sym_BSLASHu, - STATE(1511), 1, - sym_text_interpolation, - ACTIONS(3000), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [56224] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(785), 1, - sym_arguments, - STATE(1512), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56247] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3227), 1, - sym_name, - STATE(1513), 1, - sym_text_interpolation, - STATE(1663), 1, - sym_reference_modifier, - STATE(2240), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [56274] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1514), 1, - sym_text_interpolation, - ACTIONS(1833), 3, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - ACTIONS(1831), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [56295] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2988), 1, - anon_sym_BSLASHu, - STATE(1515), 1, - sym_text_interpolation, - ACTIONS(2990), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [56316] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - sym_name, - STATE(1516), 1, - sym_text_interpolation, - STATE(1584), 1, - sym_formal_parameters, - STATE(2330), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [56343] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1517), 1, - sym_text_interpolation, - ACTIONS(3160), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56364] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(1518), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56387] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(721), 1, - sym_arguments, - STATE(1519), 1, - sym_text_interpolation, - ACTIONS(1649), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56410] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(872), 1, - sym_arguments, - STATE(1520), 1, - sym_text_interpolation, - ACTIONS(1649), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56433] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(653), 1, - sym_arguments, - STATE(1521), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56456] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(653), 1, - sym_arguments, - STATE(1522), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56479] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(3225), 1, - anon_sym_DASH, - STATE(1523), 1, - sym_text_interpolation, - STATE(2400), 1, - sym__simple_string_array_access_argument, - ACTIONS(3223), 2, - sym_integer, - sym_name, - STATE(2544), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [56506] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(872), 1, - sym_arguments, - STATE(1524), 1, - sym_text_interpolation, - ACTIONS(1484), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56529] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(708), 1, - sym_arguments, - STATE(1525), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56552] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_arguments, - STATE(1526), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56575] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1522), 1, - anon_sym_BSLASHu, - STATE(1527), 1, - sym_text_interpolation, - ACTIONS(1520), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [56596] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - ACTIONS(3229), 1, - sym_name, - STATE(1528), 1, - sym_text_interpolation, - STATE(1554), 1, - sym_formal_parameters, - STATE(2330), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [56623] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(3225), 1, - anon_sym_DASH, - STATE(1529), 1, - sym_text_interpolation, - STATE(2528), 1, - sym__simple_string_array_access_argument, - ACTIONS(3223), 2, - sym_integer, - sym_name, - STATE(2544), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [56650] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3233), 1, - anon_sym_BSLASHu, - STATE(1530), 1, - sym_text_interpolation, - ACTIONS(3231), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [56671] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3235), 1, - anon_sym_AMP, - ACTIONS(3237), 1, - anon_sym_PIPE, - STATE(1531), 1, - sym_text_interpolation, - STATE(1645), 1, - aux_sym_union_type_repeat1, - STATE(1651), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3212), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [56698] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(783), 1, - sym_arguments, - STATE(1532), 1, - sym_text_interpolation, - ACTIONS(1649), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56721] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(1533), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3100), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [56744] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1554), 1, - anon_sym_BSLASHu, - STATE(1534), 1, - sym_text_interpolation, - ACTIONS(1552), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [56765] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3016), 1, - anon_sym_BSLASHu, - STATE(1535), 1, - sym_text_interpolation, - ACTIONS(3018), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [56786] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_BSLASHu, - STATE(1536), 1, - sym_text_interpolation, - ACTIONS(2868), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [56807] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3241), 1, - aux_sym_enum_case_token1, - ACTIONS(3244), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3239), 2, - anon_sym_RBRACE, - aux_sym_switch_block_token1, - STATE(1537), 2, - sym_text_interpolation, - aux_sym_switch_block_repeat1, - STATE(1811), 2, - sym_case_statement, - sym_default_statement, - [56832] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2994), 1, - anon_sym_BSLASHu, - STATE(1538), 1, - sym_text_interpolation, - ACTIONS(2996), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [56853] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1539), 1, - sym_text_interpolation, - ACTIONS(3100), 7, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [56872] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(785), 1, - sym_arguments, - STATE(1540), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56895] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3006), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(3008), 1, - aux_sym_use_instead_of_clause_token1, - STATE(1541), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56918] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(708), 1, - sym_arguments, - STATE(1542), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56941] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1543), 1, - sym_text_interpolation, - ACTIONS(3082), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56962] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1518), 1, - anon_sym_BSLASHu, - STATE(1544), 1, - sym_text_interpolation, - ACTIONS(1516), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [56983] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1103), 1, - sym_declaration_list, - STATE(1545), 1, - sym_text_interpolation, - STATE(1816), 1, - sym_base_clause, - STATE(2181), 1, - sym_class_interface_clause, - [57011] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(888), 1, - sym_compound_statement, - STATE(1546), 1, - sym_text_interpolation, - STATE(1730), 1, - sym_anonymous_function_use_clause, - STATE(2312), 1, - sym__return_type, - [57039] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1547), 1, - sym_text_interpolation, - STATE(1642), 1, - sym_declaration_list, - STATE(1765), 1, - sym_base_clause, - STATE(2280), 1, - sym_class_interface_clause, - [57067] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1110), 1, - sym_compound_statement, - STATE(1548), 1, - sym_text_interpolation, - STATE(1834), 1, - sym_anonymous_function_use_clause, - STATE(2345), 1, - sym__return_type, - [57095] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1066), 1, - sym_compound_statement, - STATE(1549), 1, - sym_text_interpolation, - STATE(1855), 1, - sym_anonymous_function_use_clause, - STATE(2126), 1, - sym__return_type, - [57123] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3196), 1, - anon_sym_COMMA, - ACTIONS(3198), 1, - anon_sym_LBRACE, - STATE(1337), 1, - sym_use_list, - STATE(1550), 1, - sym_text_interpolation, - STATE(1644), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3253), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57149] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(442), 1, - sym_declaration_list, - STATE(1551), 1, - sym_text_interpolation, - STATE(1856), 1, - sym_base_clause, - STATE(2110), 1, - sym_class_interface_clause, - [57177] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1033), 1, - sym_compound_statement, - STATE(1552), 1, - sym_text_interpolation, - STATE(1793), 1, - sym_anonymous_function_use_clause, - STATE(2220), 1, - sym__return_type, - [57205] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3257), 1, - sym_php_tag, - ACTIONS(3261), 1, - sym__eof, - STATE(1553), 1, - sym_text_interpolation, - STATE(1707), 1, - aux_sym_text_repeat1, - STATE(2121), 1, - sym_text, - ACTIONS(3259), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [57231] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1056), 1, - sym_compound_statement, - STATE(1554), 1, - sym_text_interpolation, - STATE(1790), 1, - sym_anonymous_function_use_clause, - STATE(2225), 1, - sym__return_type, - [57259] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1555), 1, - sym_text_interpolation, - STATE(1630), 1, - sym_declaration_list, - STATE(1764), 1, - sym_base_clause, - STATE(2313), 1, - sym_class_interface_clause, - [57287] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(941), 1, - sym_compound_statement, - STATE(1556), 1, - sym_text_interpolation, - STATE(1762), 1, - sym_anonymous_function_use_clause, - STATE(2285), 1, - sym__return_type, - [57315] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3263), 1, - anon_sym_RBRACE, - ACTIONS(3265), 1, - aux_sym_enum_case_token1, - ACTIONS(3267), 1, - aux_sym_match_default_expression_token1, - STATE(1557), 1, - sym_text_interpolation, - STATE(1609), 1, - aux_sym_switch_block_repeat1, - STATE(1811), 2, - sym_case_statement, - sym_default_statement, - [57341] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(443), 1, - sym_declaration_list, - STATE(1558), 1, - sym_text_interpolation, - STATE(1785), 1, - sym_base_clause, - STATE(2242), 1, - sym_class_interface_clause, - [57369] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3269), 1, - aux_sym_if_statement_token2, - ACTIONS(3271), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3273), 1, - aux_sym_else_clause_token1, - STATE(1559), 1, - sym_text_interpolation, - STATE(1607), 1, - aux_sym_if_statement_repeat2, - STATE(2000), 1, - sym_else_if_clause_2, - STATE(2475), 1, - sym_else_clause_2, - [57397] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1554), 1, - anon_sym_BSLASHu, - STATE(1560), 1, - sym_text_interpolation, - ACTIONS(1552), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [57417] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1518), 1, - anon_sym_BSLASHu, - STATE(1561), 1, - sym_text_interpolation, - ACTIONS(1516), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [57437] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1522), 1, - anon_sym_BSLASHu, - STATE(1562), 1, - sym_text_interpolation, - ACTIONS(1520), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [57457] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(938), 1, - sym_compound_statement, - STATE(1563), 1, - sym_text_interpolation, - STATE(1735), 1, - sym_anonymous_function_use_clause, - STATE(2287), 1, - sym__return_type, - [57485] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3016), 1, - anon_sym_BSLASHu, - STATE(1564), 1, - sym_text_interpolation, - ACTIONS(3018), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [57505] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_BSLASHu, - STATE(1565), 1, - sym_text_interpolation, - ACTIONS(2868), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [57525] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1566), 1, - sym_text_interpolation, - ACTIONS(3275), 6, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [57543] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(451), 1, - sym_declaration_list, - STATE(1567), 1, - sym_text_interpolation, - STATE(1839), 1, - sym_base_clause, - STATE(2357), 1, - sym_class_interface_clause, - [57571] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - STATE(933), 1, - sym_declaration_list, - STATE(1568), 1, - sym_text_interpolation, - STATE(1799), 1, - sym_base_clause, - STATE(2324), 1, - sym_class_interface_clause, - [57599] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1569), 1, - sym_text_interpolation, - ACTIONS(3277), 6, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [57617] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(928), 1, - sym_compound_statement, - STATE(1570), 1, - sym_text_interpolation, - STATE(1777), 1, - sym_anonymous_function_use_clause, - STATE(2259), 1, - sym__return_type, - [57645] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3196), 1, - anon_sym_COMMA, - ACTIONS(3198), 1, - anon_sym_LBRACE, - STATE(1330), 1, - sym_use_list, - STATE(1550), 1, - aux_sym_base_clause_repeat1, - STATE(1571), 1, - sym_text_interpolation, - ACTIONS(3194), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57671] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1037), 1, - sym_compound_statement, - STATE(1572), 1, - sym_text_interpolation, - STATE(1858), 1, - sym_anonymous_function_use_clause, - STATE(2117), 1, - sym__return_type, - [57699] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(953), 1, - aux_sym_while_statement_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3279), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3281), 1, - aux_sym_else_clause_token1, - STATE(1573), 1, - sym_text_interpolation, - STATE(1600), 1, - aux_sym_if_statement_repeat1, - STATE(1992), 1, - sym_else_if_clause, - STATE(1993), 1, - sym_else_clause, - [57727] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(3283), 1, - anon_sym_COMMA, - STATE(1574), 1, - sym_text_interpolation, - STATE(1844), 1, - aux_sym_base_clause_repeat1, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3285), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [57753] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3287), 1, - sym_name, - STATE(1575), 1, - sym_text_interpolation, - STATE(1736), 1, - sym_const_element, - STATE(2487), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [57777] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(1576), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - STATE(2331), 1, - sym_arguments, - ACTIONS(3289), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [57803] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3287), 1, - sym_name, - STATE(1577), 1, - sym_text_interpolation, - STATE(1830), 1, - sym_const_element, - STATE(2487), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [57827] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1578), 1, - sym_text_interpolation, - STATE(1629), 1, - sym_declaration_list, - STATE(1729), 1, - sym_base_clause, - STATE(2309), 1, - sym_class_interface_clause, - [57855] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3265), 1, - aux_sym_enum_case_token1, - ACTIONS(3267), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3291), 1, - anon_sym_RBRACE, - STATE(1579), 1, - sym_text_interpolation, - STATE(1608), 1, - aux_sym_switch_block_repeat1, - STATE(1811), 2, - sym_case_statement, - sym_default_statement, - [57881] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(937), 1, - sym_compound_statement, - STATE(1580), 1, - sym_text_interpolation, - STATE(1831), 1, - sym_anonymous_function_use_clause, - STATE(2329), 1, - sym__return_type, - [57909] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(923), 1, - sym_compound_statement, - STATE(1581), 1, - sym_text_interpolation, - STATE(1722), 1, - sym_anonymous_function_use_clause, - STATE(2307), 1, - sym__return_type, - [57937] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3265), 1, - aux_sym_enum_case_token1, - ACTIONS(3267), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3293), 1, - aux_sym_switch_block_token1, - STATE(1582), 1, - sym_text_interpolation, - STATE(1603), 1, - aux_sym_switch_block_repeat1, - STATE(1811), 2, - sym_case_statement, - sym_default_statement, - [57963] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3287), 1, - sym_name, - STATE(1583), 1, - sym_text_interpolation, - STATE(1965), 1, - sym_const_element, - STATE(2487), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [57987] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1038), 1, - sym_compound_statement, - STATE(1584), 1, - sym_text_interpolation, - STATE(1767), 1, - sym_anonymous_function_use_clause, - STATE(2268), 1, - sym__return_type, - [58015] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(961), 1, - aux_sym_while_statement_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3295), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3298), 1, - aux_sym_else_clause_token1, - STATE(1585), 1, - sym_text_interpolation, - STATE(1619), 1, - aux_sym_if_statement_repeat1, - STATE(1992), 1, - sym_else_if_clause, - STATE(2018), 1, - sym_else_clause, - [58043] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(904), 1, - sym_compound_statement, - STATE(1586), 1, - sym_text_interpolation, - STATE(1815), 1, - sym_anonymous_function_use_clause, - STATE(2354), 1, - sym__return_type, - [58071] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3265), 1, - aux_sym_enum_case_token1, - ACTIONS(3267), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3301), 1, - aux_sym_switch_block_token1, - STATE(1537), 1, - aux_sym_switch_block_repeat1, - STATE(1587), 1, - sym_text_interpolation, - STATE(1811), 2, - sym_case_statement, - sym_default_statement, - [58097] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3271), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3273), 1, - aux_sym_else_clause_token1, - ACTIONS(3303), 1, - aux_sym_if_statement_token2, - STATE(1588), 1, - sym_text_interpolation, - STATE(1633), 1, - aux_sym_if_statement_repeat2, - STATE(2000), 1, - sym_else_if_clause_2, - STATE(2431), 1, - sym_else_clause_2, - [58125] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3287), 1, - sym_name, - STATE(1589), 1, - sym_text_interpolation, - STATE(1813), 1, - sym_const_element, - STATE(2487), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [58149] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(953), 1, - aux_sym_while_statement_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3305), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3308), 1, - aux_sym_else_clause_token1, - STATE(1585), 1, - aux_sym_if_statement_repeat1, - STATE(1590), 1, - sym_text_interpolation, - STATE(1992), 1, - sym_else_if_clause, - STATE(1993), 1, - sym_else_clause, - [58177] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1591), 1, - sym_text_interpolation, - STATE(1673), 1, - sym_declaration_list, - STATE(1837), 1, - sym_base_clause, - STATE(2347), 1, - sym_class_interface_clause, - [58205] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(924), 1, - sym_compound_statement, - STATE(1592), 1, - sym_text_interpolation, - STATE(1833), 1, - sym_anonymous_function_use_clause, - STATE(2356), 1, - sym__return_type, - [58233] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(1593), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3311), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - [58255] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1594), 1, - sym_text_interpolation, - ACTIONS(3313), 6, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [58273] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3317), 1, - anon_sym_BSLASHu, - STATE(1595), 1, - sym_text_interpolation, - ACTIONS(3315), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [58293] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3287), 1, - sym_name, - STATE(1596), 1, - sym_text_interpolation, - STATE(1791), 1, - sym_const_element, - STATE(2487), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [58317] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1041), 1, - sym_compound_statement, - STATE(1597), 1, - sym_text_interpolation, - STATE(1720), 1, - sym_anonymous_function_use_clause, - STATE(2305), 1, - sym__return_type, - [58345] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3319), 1, - anon_sym_AMP, - ACTIONS(3323), 1, - anon_sym_PIPE, - STATE(1598), 1, - sym_text_interpolation, - STATE(1674), 1, - aux_sym_union_type_repeat1, - STATE(1766), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3212), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [58371] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3265), 1, - aux_sym_enum_case_token1, - ACTIONS(3267), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3325), 1, - aux_sym_switch_block_token1, - STATE(1587), 1, - aux_sym_switch_block_repeat1, - STATE(1599), 1, - sym_text_interpolation, - STATE(1811), 2, - sym_case_statement, - sym_default_statement, - [58397] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(961), 1, - aux_sym_while_statement_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3279), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3281), 1, - aux_sym_else_clause_token1, - STATE(1600), 1, - sym_text_interpolation, - STATE(1619), 1, - aux_sym_if_statement_repeat1, - STATE(1992), 1, - sym_else_if_clause, - STATE(2018), 1, - sym_else_clause, - [58425] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3271), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3273), 1, - aux_sym_else_clause_token1, - ACTIONS(3327), 1, - aux_sym_if_statement_token2, - STATE(1588), 1, - aux_sym_if_statement_repeat2, - STATE(1601), 1, - sym_text_interpolation, - STATE(2000), 1, - sym_else_if_clause_2, - STATE(2446), 1, - sym_else_clause_2, - [58453] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2998), 1, - anon_sym_BSLASHu, - STATE(1602), 1, - sym_text_interpolation, - ACTIONS(3000), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [58473] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3265), 1, - aux_sym_enum_case_token1, - ACTIONS(3267), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3329), 1, - aux_sym_switch_block_token1, - STATE(1537), 1, - aux_sym_switch_block_repeat1, - STATE(1603), 1, - sym_text_interpolation, - STATE(1811), 2, - sym_case_statement, - sym_default_statement, - [58499] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2988), 1, - anon_sym_BSLASHu, - STATE(1604), 1, - sym_text_interpolation, - ACTIONS(2990), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [58519] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2994), 1, - anon_sym_BSLASHu, - STATE(1605), 1, - sym_text_interpolation, - ACTIONS(2996), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [58539] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3287), 1, - sym_name, - STATE(1606), 1, - sym_text_interpolation, - STATE(1778), 1, - sym_const_element, - STATE(2487), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [58563] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3271), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3273), 1, - aux_sym_else_clause_token1, - ACTIONS(3331), 1, - aux_sym_if_statement_token2, - STATE(1607), 1, - sym_text_interpolation, - STATE(1633), 1, - aux_sym_if_statement_repeat2, - STATE(2000), 1, - sym_else_if_clause_2, - STATE(2561), 1, - sym_else_clause_2, - [58591] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3265), 1, - aux_sym_enum_case_token1, - ACTIONS(3267), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3333), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_switch_block_repeat1, - STATE(1608), 1, - sym_text_interpolation, - STATE(1811), 2, - sym_case_statement, - sym_default_statement, - [58617] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3265), 1, - aux_sym_enum_case_token1, - ACTIONS(3267), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3335), 1, - anon_sym_RBRACE, - STATE(1537), 1, - aux_sym_switch_block_repeat1, - STATE(1609), 1, - sym_text_interpolation, - STATE(1811), 2, - sym_case_statement, - sym_default_statement, - [58643] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3337), 1, - anon_sym_BSLASHu, - STATE(1610), 1, - sym_text_interpolation, - ACTIONS(2905), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [58663] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1611), 1, - sym_text_interpolation, - ACTIONS(3339), 6, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [58681] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3287), 1, - sym_name, - STATE(1612), 1, - sym_text_interpolation, - STATE(1857), 1, - sym_const_element, - STATE(2487), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [58705] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - STATE(931), 1, - sym_declaration_list, - STATE(1613), 1, - sym_text_interpolation, - STATE(1748), 1, - sym_base_clause, - STATE(2292), 1, - sym_class_interface_clause, - [58733] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(447), 1, - sym_declaration_list, - STATE(1614), 1, - sym_text_interpolation, - STATE(1761), 1, - sym_base_clause, - STATE(2127), 1, - sym_class_interface_clause, - [58761] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1046), 1, - sym_compound_statement, - STATE(1615), 1, - sym_text_interpolation, - STATE(1775), 1, - sym_anonymous_function_use_clause, - STATE(2252), 1, - sym__return_type, - [58789] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1098), 1, - sym_declaration_list, - STATE(1616), 1, - sym_text_interpolation, - STATE(1827), 1, - sym_base_clause, - STATE(2128), 1, - sym_class_interface_clause, - [58817] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3343), 1, - anon_sym_BSLASH, - STATE(1617), 1, - sym_text_interpolation, - STATE(1641), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3341), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [58838] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_LBRACE, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3349), 1, - anon_sym_DASH_GT, - ACTIONS(3351), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3353), 1, - anon_sym_LBRACK, - STATE(1618), 1, - sym_text_interpolation, - [58863] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(977), 1, - aux_sym_while_statement_token1, - ACTIONS(979), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3355), 1, - aux_sym_else_if_clause_token1, - STATE(1992), 1, - sym_else_if_clause, - STATE(1619), 2, - sym_text_interpolation, - aux_sym_if_statement_repeat1, - [58886] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3215), 1, - anon_sym_AMP, - STATE(1620), 1, - sym_text_interpolation, - STATE(1626), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3358), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [58907] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3360), 1, - anon_sym_LBRACE, - ACTIONS(3362), 1, - anon_sym_DASH_GT, - ACTIONS(3364), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3366), 1, - anon_sym_LBRACK, - STATE(1621), 1, - sym_text_interpolation, - [58932] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3370), 1, - sym_heredoc_end, - STATE(1314), 1, - sym__new_line, - STATE(1622), 1, - sym_text_interpolation, - STATE(1854), 1, - sym_heredoc_body, - ACTIONS(3368), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [58955] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1444), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3372), 1, - sym_name, - ACTIONS(3374), 1, - anon_sym_LBRACE, - STATE(1623), 1, - sym_text_interpolation, - STATE(770), 2, - sym_dynamic_variable_name, - sym_variable_name, - [58978] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3376), 1, - anon_sym_LBRACE, - ACTIONS(3378), 1, - anon_sym_DASH_GT, - ACTIONS(3380), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3382), 1, - anon_sym_LBRACK, - STATE(1624), 1, - sym_text_interpolation, - [59003] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1076), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1625), 1, - sym_text_interpolation, - ACTIONS(1074), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3384), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59024] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3388), 1, - anon_sym_AMP, - STATE(1626), 2, - sym_text_interpolation, - aux_sym_intersection_type_repeat1, - ACTIONS(3386), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [59043] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3391), 1, - anon_sym_PIPE, - STATE(1627), 2, - sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(3275), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [59062] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3396), 1, - anon_sym_BSLASH, - STATE(1628), 2, - sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(3394), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [59081] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1036), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1629), 1, - sym_text_interpolation, - ACTIONS(1034), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3399), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59102] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1066), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1630), 1, - sym_text_interpolation, - ACTIONS(1064), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3401), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59123] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1020), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1631), 1, - sym_text_interpolation, - ACTIONS(1018), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3403), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59144] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1014), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1632), 1, - sym_text_interpolation, - ACTIONS(1012), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3405), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59165] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3407), 1, - aux_sym_if_statement_token2, - ACTIONS(3409), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3412), 1, - aux_sym_else_clause_token1, - STATE(2000), 1, - sym_else_if_clause_2, - STATE(1633), 2, - sym_text_interpolation, - aux_sym_if_statement_repeat2, - [59188] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3414), 1, - sym_name, - ACTIONS(3416), 1, - anon_sym_LBRACE, - ACTIONS(3418), 1, - anon_sym_DOLLAR, - STATE(1634), 1, - sym_text_interpolation, - STATE(1400), 2, - sym_dynamic_variable_name, - sym_variable_name, - [59211] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3422), 1, - sym_heredoc_end, - ACTIONS(3424), 1, - sym_nowdoc_string, - STATE(1635), 1, - sym_text_interpolation, - STATE(1717), 1, - aux_sym_nowdoc_body_repeat1, - ACTIONS(3420), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [59234] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1030), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1636), 1, - sym_text_interpolation, - ACTIONS(1028), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3426), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59255] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1010), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1637), 1, - sym_text_interpolation, - ACTIONS(1008), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59274] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3190), 1, - aux_sym_catch_clause_token1, - ACTIONS(3192), 1, - aux_sym_finally_clause_token1, - STATE(1490), 1, - aux_sym_try_statement_repeat1, - STATE(1638), 1, - sym_text_interpolation, - STATE(1671), 2, - sym_catch_clause, - sym_finally_clause, - [59297] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3428), 1, - ts_builtin_sym_end, - ACTIONS(3430), 1, - sym_php_tag, - STATE(1639), 1, - sym_text_interpolation, - STATE(1713), 1, - aux_sym_text_repeat1, - ACTIONS(11), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [59320] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(3432), 1, - anon_sym_DOT_DOT_DOT, - STATE(1640), 1, - sym_text_interpolation, - STATE(1954), 1, - sym_reference_modifier, - STATE(1956), 1, - sym_variable_name, - [59345] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3343), 1, - anon_sym_BSLASH, - STATE(1628), 1, - aux_sym_namespace_name_repeat1, - STATE(1641), 1, - sym_text_interpolation, - ACTIONS(3434), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [59366] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1042), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1642), 1, - sym_text_interpolation, - ACTIONS(1040), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3436), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59387] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3416), 1, - anon_sym_LBRACE, - ACTIONS(3418), 1, - anon_sym_DOLLAR, - ACTIONS(3438), 1, - sym_name, - STATE(1643), 1, - sym_text_interpolation, - STATE(1400), 2, - sym_dynamic_variable_name, - sym_variable_name, - [59410] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3440), 1, - anon_sym_COMMA, - STATE(1644), 2, - sym_text_interpolation, - aux_sym_base_clause_repeat1, - ACTIONS(3311), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [59429] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3237), 1, - anon_sym_PIPE, - STATE(1645), 1, - sym_text_interpolation, - STATE(1648), 1, - aux_sym_union_type_repeat1, - ACTIONS(3443), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [59450] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1646), 1, - sym_text_interpolation, - ACTIONS(3445), 5, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [59467] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3221), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1647), 1, - sym_text_interpolation, - STATE(1897), 1, - sym_namespace_aliasing_clause, - ACTIONS(3219), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [59488] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3447), 1, - anon_sym_PIPE, - STATE(1648), 2, - sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(3275), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [59507] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3452), 1, - anon_sym_COLON, - STATE(1649), 1, - sym_text_interpolation, - STATE(2001), 1, - sym__return_type, - ACTIONS(3450), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [59528] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3454), 1, - anon_sym_AMP, - STATE(1650), 2, - sym_text_interpolation, - aux_sym_intersection_type_repeat1, - ACTIONS(3386), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [59547] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3235), 1, - anon_sym_AMP, - STATE(1650), 1, - aux_sym_intersection_type_repeat1, - STATE(1651), 1, - sym_text_interpolation, - ACTIONS(3358), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [59568] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3457), 1, - sym_name, - ACTIONS(3459), 1, - anon_sym_LBRACE, - ACTIONS(3461), 1, - anon_sym_DOLLAR, - STATE(1652), 1, - sym_text_interpolation, - STATE(1562), 2, - sym_dynamic_variable_name, - sym_variable_name, - [59591] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3217), 1, - anon_sym_PIPE, - STATE(1627), 1, - aux_sym_union_type_repeat1, - STATE(1653), 1, - sym_text_interpolation, - ACTIONS(3443), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [59612] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1654), 1, - sym_text_interpolation, - ACTIONS(3277), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [59629] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3463), 1, - anon_sym_LBRACE, - ACTIONS(3465), 1, - anon_sym_COLON, - STATE(1655), 1, - sym_text_interpolation, - STATE(1958), 1, - sym_enum_declaration_list, - STATE(2346), 1, - sym_class_interface_clause, - [59654] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(214), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3467), 1, - sym_name, - ACTIONS(3469), 1, - anon_sym_BSLASH, - STATE(467), 1, - sym_compound_statement, - STATE(1656), 1, - sym_text_interpolation, - STATE(1716), 1, - sym_namespace_name, - [59679] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - ACTIONS(3283), 1, - anon_sym_COMMA, - ACTIONS(3471), 1, - anon_sym_LBRACE, - STATE(1657), 1, - sym_text_interpolation, - STATE(2048), 1, - aux_sym_base_clause_repeat1, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - [59704] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3473), 1, - sym_heredoc_end, - STATE(1314), 1, - sym__new_line, - STATE(1658), 1, - sym_text_interpolation, - STATE(1805), 1, - sym_heredoc_body, - ACTIONS(3368), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [59727] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3475), 1, - sym_name, - ACTIONS(3477), 1, - anon_sym_LBRACE, - ACTIONS(3479), 1, - anon_sym_DOLLAR, - STATE(1659), 1, - sym_text_interpolation, - STATE(1527), 2, - sym_dynamic_variable_name, - sym_variable_name, - [59750] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3483), 1, - anon_sym_BSLASH, - STATE(1660), 1, - sym_text_interpolation, - STATE(1947), 1, - sym_compound_statement, - ACTIONS(3481), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59773] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3485), 1, - anon_sym_BSLASH, - STATE(1661), 2, - sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(3394), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [59792] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3490), 1, - anon_sym_EQ, - STATE(1662), 1, - sym_text_interpolation, - STATE(1867), 1, - sym_property_initializer, - ACTIONS(3488), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [59813] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3492), 1, - sym_name, - STATE(1663), 1, - sym_text_interpolation, - STATE(2328), 1, - sym__reserved_identifier, - ACTIONS(2976), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [59834] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1006), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1664), 1, - sym_text_interpolation, - ACTIONS(1004), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [59853] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DOLLAR, - ACTIONS(3494), 1, - sym_name, - ACTIONS(3496), 1, - anon_sym_LBRACE, - STATE(1665), 1, - sym_text_interpolation, - STATE(848), 2, - sym_dynamic_variable_name, - sym_variable_name, - [59876] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3500), 1, - sym_heredoc_end, - STATE(1666), 1, - sym_text_interpolation, - STATE(1749), 1, - sym_nowdoc_body, - STATE(2003), 1, - sym__new_line, - ACTIONS(3498), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [59899] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3360), 1, - anon_sym_LBRACE, - ACTIONS(3366), 1, - anon_sym_LBRACK, - ACTIONS(3502), 1, - anon_sym_DASH_GT, - ACTIONS(3504), 1, - anon_sym_QMARK_DASH_GT, - STATE(1667), 1, - sym_text_interpolation, - [59924] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(3506), 1, - anon_sym_AMP, - ACTIONS(3508), 1, - anon_sym_RPAREN, - STATE(1668), 1, - sym_text_interpolation, - STATE(2197), 2, - sym_variable_name, - sym_variable_reference, - [59947] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 1, - sym_heredoc_end, - STATE(1314), 1, - sym__new_line, - STATE(1669), 1, - sym_text_interpolation, - STATE(1753), 1, - sym_heredoc_body, - ACTIONS(3368), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [59970] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(3512), 1, - anon_sym_DOT_DOT_DOT, - STATE(1670), 1, - sym_text_interpolation, - STATE(2067), 1, - sym_variable_name, - STATE(2068), 1, - sym_reference_modifier, - [59995] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(990), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1671), 1, - sym_text_interpolation, - ACTIONS(988), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [60014] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1082), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1672), 1, - sym_text_interpolation, - ACTIONS(1080), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3514), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60035] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1088), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1673), 1, - sym_text_interpolation, - ACTIONS(1086), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3516), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60056] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3323), 1, - anon_sym_PIPE, - STATE(1674), 1, - sym_text_interpolation, - STATE(1693), 1, - aux_sym_union_type_repeat1, - ACTIONS(3443), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [60077] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1675), 1, - sym_text_interpolation, - ACTIONS(1498), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [60094] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3518), 1, - anon_sym_LBRACE, - ACTIONS(3520), 1, - anon_sym_DASH_GT, - ACTIONS(3522), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3524), 1, - anon_sym_LBRACK, - STATE(1676), 1, - sym_text_interpolation, - [60119] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3526), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_COLON, - STATE(456), 1, - sym_enum_declaration_list, - STATE(1677), 1, - sym_text_interpolation, - STATE(2114), 1, - sym_class_interface_clause, - [60144] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3452), 1, - anon_sym_COLON, - STATE(1678), 1, - sym_text_interpolation, - STATE(1975), 1, - sym__return_type, - ACTIONS(3530), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [60165] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3532), 1, - aux_sym_catch_clause_token1, - ACTIONS(3534), 1, - aux_sym_finally_clause_token1, - STATE(417), 1, - aux_sym_try_statement_repeat1, - STATE(1679), 1, - sym_text_interpolation, - STATE(428), 2, - sym_catch_clause, - sym_finally_clause, - [60188] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1680), 1, - sym_text_interpolation, - ACTIONS(3313), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [60205] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1681), 1, - sym_text_interpolation, - ACTIONS(3100), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [60222] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3536), 1, - sym_name, - ACTIONS(3538), 1, - anon_sym_LBRACE, - STATE(1682), 1, - sym_text_interpolation, - STATE(569), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60245] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1683), 1, - sym_text_interpolation, - ACTIONS(3339), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [60262] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3360), 1, - anon_sym_LBRACE, - ACTIONS(3366), 1, - anon_sym_LBRACK, - ACTIONS(3540), 1, - anon_sym_DASH_GT, - ACTIONS(3542), 1, - anon_sym_QMARK_DASH_GT, - STATE(1684), 1, - sym_text_interpolation, - [60287] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(3544), 1, - sym_name, - ACTIONS(3546), 1, - anon_sym_LBRACE, - STATE(1685), 1, - sym_text_interpolation, - STATE(707), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60310] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3548), 1, - sym_heredoc_end, - STATE(1314), 1, - sym__new_line, - STATE(1686), 1, - sym_text_interpolation, - STATE(1804), 1, - sym_heredoc_body, - ACTIONS(3368), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [60333] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3518), 1, - anon_sym_LBRACE, - ACTIONS(3524), 1, - anon_sym_LBRACK, - ACTIONS(3550), 1, - anon_sym_DASH_GT, - ACTIONS(3552), 1, - anon_sym_QMARK_DASH_GT, - STATE(1687), 1, - sym_text_interpolation, - [60358] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3376), 1, - anon_sym_LBRACE, - ACTIONS(3382), 1, - anon_sym_LBRACK, - ACTIONS(3554), 1, - anon_sym_DASH_GT, - ACTIONS(3556), 1, - anon_sym_QMARK_DASH_GT, - STATE(1688), 1, - sym_text_interpolation, - [60383] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3518), 1, - anon_sym_LBRACE, - ACTIONS(3524), 1, - anon_sym_LBRACK, - ACTIONS(3558), 1, - anon_sym_DASH_GT, - ACTIONS(3560), 1, - anon_sym_QMARK_DASH_GT, - STATE(1689), 1, - sym_text_interpolation, - [60408] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3562), 1, - sym_heredoc_end, - STATE(1690), 1, - sym_text_interpolation, - STATE(1806), 1, - sym_nowdoc_body, - STATE(2003), 1, - sym__new_line, - ACTIONS(3498), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [60431] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3564), 1, - anon_sym_BSLASH, - STATE(1661), 1, - aux_sym_namespace_name_repeat1, - STATE(1691), 1, - sym_text_interpolation, - ACTIONS(3434), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [60452] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(3506), 1, - anon_sym_AMP, - ACTIONS(3567), 1, - anon_sym_RPAREN, - STATE(1692), 1, - sym_text_interpolation, - STATE(2197), 2, - sym_variable_name, - sym_variable_reference, - [60475] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3569), 1, - anon_sym_PIPE, - STATE(1693), 2, - sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(3275), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [60494] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1694), 1, - sym_text_interpolation, - ACTIONS(3386), 5, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [60511] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3463), 1, - anon_sym_LBRACE, - ACTIONS(3572), 1, - anon_sym_COLON, - STATE(1695), 1, - sym_text_interpolation, - STATE(1995), 1, - sym_enum_declaration_list, - STATE(2311), 1, - sym_class_interface_clause, - [60536] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3477), 1, - anon_sym_LBRACE, - ACTIONS(3479), 1, - anon_sym_DOLLAR, - ACTIONS(3574), 1, - sym_name, - STATE(1696), 1, - sym_text_interpolation, - STATE(1527), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60559] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3576), 1, - sym_name, - STATE(1697), 1, - sym_text_interpolation, - STATE(1853), 1, - sym_namespace_name, - STATE(2085), 1, - sym_namespace_use_group_clause, - ACTIONS(3578), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [60582] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3467), 1, - sym_name, - ACTIONS(3469), 1, - anon_sym_BSLASH, - STATE(1660), 1, - sym_namespace_name, - STATE(1698), 1, - sym_text_interpolation, - STATE(1939), 1, - sym_compound_statement, - [60607] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3526), 1, - anon_sym_LBRACE, - ACTIONS(3580), 1, - anon_sym_COLON, - STATE(516), 1, - sym_enum_declaration_list, - STATE(1699), 1, - sym_text_interpolation, - STATE(2353), 1, - sym_class_interface_clause, - [60632] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3576), 1, - sym_name, - STATE(1700), 1, - sym_text_interpolation, - STATE(1853), 1, - sym_namespace_name, - STATE(2107), 1, - sym_namespace_use_group_clause, - ACTIONS(3578), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [60655] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1060), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1701), 1, - sym_text_interpolation, - ACTIONS(1058), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3582), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60676] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3584), 1, - sym_php_tag, - ACTIONS(3589), 1, - sym__eof, - ACTIONS(3586), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(1702), 2, - sym_text_interpolation, - aux_sym_text_repeat1, - [60697] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1048), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1703), 1, - sym_text_interpolation, - ACTIONS(1046), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3591), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60718] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(1704), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3311), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [60739] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3459), 1, - anon_sym_LBRACE, - ACTIONS(3461), 1, - anon_sym_DOLLAR, - ACTIONS(3593), 1, - sym_name, - STATE(1705), 1, - sym_text_interpolation, - STATE(1562), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60762] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(994), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1706), 1, - sym_text_interpolation, - ACTIONS(992), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [60781] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3428), 1, - sym__eof, - ACTIONS(3430), 1, - sym_php_tag, - STATE(1702), 1, - aux_sym_text_repeat1, - STATE(1707), 1, - sym_text_interpolation, - ACTIONS(3259), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [60804] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3595), 1, - anon_sym_LBRACE, - ACTIONS(3597), 1, - anon_sym_DASH_GT, - ACTIONS(3599), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3601), 1, - anon_sym_LBRACK, - STATE(1708), 1, - sym_text_interpolation, - [60829] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3603), 1, - anon_sym_BSLASH, - STATE(1691), 1, - aux_sym_namespace_name_repeat1, - STATE(1709), 1, - sym_text_interpolation, - ACTIONS(3341), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [60850] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3606), 1, - sym_name, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(1710), 1, - sym_text_interpolation, - STATE(603), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60873] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3610), 1, - sym_name, - STATE(1711), 1, - sym_text_interpolation, - STATE(1926), 1, - sym_visibility_modifier, - ACTIONS(3612), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [60894] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - ACTIONS(3614), 1, - anon_sym_LBRACE, - ACTIONS(3616), 1, - anon_sym_DASH_GT, - ACTIONS(3618), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3620), 1, - anon_sym_LBRACK, - STATE(1712), 1, - sym_text_interpolation, - [60919] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3584), 1, - sym_php_tag, - ACTIONS(3589), 1, - ts_builtin_sym_end, - ACTIONS(3622), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(1713), 2, - sym_text_interpolation, - aux_sym_text_repeat1, - [60940] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1450), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3625), 1, - sym_name, - ACTIONS(3627), 1, - anon_sym_LBRACE, - STATE(1714), 1, - sym_text_interpolation, - STATE(662), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60963] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1054), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1715), 1, - sym_text_interpolation, - ACTIONS(1052), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3629), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60984] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(214), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3483), 1, - anon_sym_BSLASH, - STATE(530), 1, - sym_compound_statement, - STATE(1716), 1, - sym_text_interpolation, - ACTIONS(3631), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61007] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3635), 1, - sym_heredoc_end, - ACTIONS(3637), 1, - sym_nowdoc_string, - ACTIONS(3633), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - STATE(1717), 2, - sym_text_interpolation, - aux_sym_nowdoc_body_repeat1, - [61028] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1718), 1, - sym_text_interpolation, - ACTIONS(3386), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - [61044] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3642), 1, - sym__eof, - STATE(1719), 1, - sym_text_interpolation, - ACTIONS(3640), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [61062] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1069), 1, - sym_compound_statement, - STATE(1720), 1, - sym_text_interpolation, - STATE(2119), 1, - sym__return_type, - [61084] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1721), 1, - sym_text_interpolation, - STATE(2370), 1, - sym_declare_directive, - ACTIONS(3644), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [61102] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(949), 1, - sym_compound_statement, - STATE(1722), 1, - sym_text_interpolation, - STATE(2279), 1, - sym__return_type, - [61124] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1597), 1, - sym_formal_parameters, - STATE(1723), 1, - sym_text_interpolation, - STATE(2263), 1, - sym_reference_modifier, - [61146] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3648), 1, - anon_sym_COMMA, - STATE(1724), 1, - sym_text_interpolation, - STATE(1796), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3646), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61166] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3652), 1, - anon_sym_EQ, - STATE(1725), 1, - sym_text_interpolation, - ACTIONS(3650), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [61184] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3656), 1, - anon_sym_COMMA, - STATE(1726), 1, - sym_text_interpolation, - STATE(1801), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3654), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61204] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(3506), 1, - anon_sym_AMP, - STATE(1727), 1, - sym_text_interpolation, - STATE(2197), 2, - sym_variable_name, - sym_variable_reference, - [61224] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1728), 1, - sym_text_interpolation, - STATE(2090), 1, - sym_formal_parameters, - STATE(2130), 1, - sym_reference_modifier, - [61246] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1636), 1, - sym_declaration_list, - STATE(1729), 1, - sym_text_interpolation, - STATE(2282), 1, - sym_class_interface_clause, - [61268] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(948), 1, - sym_compound_statement, - STATE(1730), 1, - sym_text_interpolation, - STATE(2283), 1, - sym__return_type, - [61290] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3660), 1, - anon_sym_COMMA, - STATE(1731), 1, - sym_text_interpolation, - STATE(1808), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3658), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61310] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1732), 1, - sym_text_interpolation, - STATE(2465), 1, - sym_declare_directive, - ACTIONS(3644), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [61328] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2874), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2884), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3662), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1733), 1, - sym_text_interpolation, - STATE(2421), 1, - sym_static_modifier, - [61350] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3666), 1, - anon_sym_PIPE, - ACTIONS(3664), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - STATE(1734), 2, - sym_text_interpolation, - aux_sym_type_list_repeat1, - [61368] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(920), 1, - sym_compound_statement, - STATE(1735), 1, - sym_text_interpolation, - STATE(2258), 1, - sym__return_type, - [61390] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1736), 1, - sym_text_interpolation, - STATE(1838), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3669), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61410] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3673), 1, - sym_integer, - STATE(1737), 1, - sym_text_interpolation, - STATE(2166), 1, - sym_string, - ACTIONS(298), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - [61430] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3677), 1, - anon_sym_COMMA, - ACTIONS(3675), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1738), 2, - sym_text_interpolation, - aux_sym_function_static_declaration_repeat1, - [61448] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3682), 1, - anon_sym_COMMA, - STATE(1739), 1, - sym_text_interpolation, - STATE(1740), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3680), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61468] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3686), 1, - anon_sym_COMMA, - ACTIONS(3684), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1740), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat2, - [61486] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3691), 1, - anon_sym_COMMA, - ACTIONS(3689), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1741), 2, - sym_text_interpolation, - aux_sym_global_declaration_repeat1, - [61504] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3682), 1, - anon_sym_COMMA, - STATE(1742), 1, - sym_text_interpolation, - STATE(1751), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3694), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61524] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3660), 1, - anon_sym_COMMA, - STATE(1743), 1, - sym_text_interpolation, - STATE(1747), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3696), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61544] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3682), 1, - anon_sym_COMMA, - STATE(1740), 1, - aux_sym_property_declaration_repeat2, - STATE(1744), 1, - sym_text_interpolation, - ACTIONS(3698), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61564] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1745), 1, - sym_text_interpolation, - STATE(1916), 1, - sym_formal_parameters, - STATE(2200), 1, - sym_reference_modifier, - [61586] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1746), 1, - sym_text_interpolation, - STATE(2496), 1, - sym_declare_directive, - ACTIONS(3644), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [61604] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3702), 1, - anon_sym_COMMA, - ACTIONS(3700), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1747), 2, - sym_text_interpolation, - aux_sym_namespace_use_declaration_repeat1, - [61622] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - STATE(945), 1, - sym_declaration_list, - STATE(1748), 1, - sym_text_interpolation, - STATE(2266), 1, - sym_class_interface_clause, - [61644] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3707), 1, - sym_heredoc_end, - STATE(1749), 1, - sym_text_interpolation, - STATE(2420), 1, - sym__new_line, - ACTIONS(3705), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [61664] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1750), 1, - sym_text_interpolation, - ACTIONS(3709), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [61680] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3682), 1, - anon_sym_COMMA, - STATE(1740), 1, - aux_sym_property_declaration_repeat2, - STATE(1751), 1, - sym_text_interpolation, - ACTIONS(3711), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61700] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1580), 1, - sym_formal_parameters, - STATE(1752), 1, - sym_text_interpolation, - STATE(2359), 1, - sym_reference_modifier, - [61722] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3713), 1, - sym_heredoc_end, - STATE(1753), 1, - sym_text_interpolation, - STATE(2423), 1, - sym__new_line, - ACTIONS(3705), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [61742] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1754), 1, - sym_text_interpolation, - STATE(1769), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3715), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61762] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2884), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3717), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3719), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1755), 1, - sym_text_interpolation, - STATE(2421), 1, - sym_static_modifier, - [61784] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1756), 1, - sym_text_interpolation, - STATE(2367), 1, - sym_declare_directive, - ACTIONS(3644), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [61802] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3723), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1757), 1, - sym_text_interpolation, - STATE(2217), 1, - sym_namespace_aliasing_clause, - ACTIONS(3721), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [61822] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1758), 1, - sym_text_interpolation, - ACTIONS(3725), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [61838] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1759), 1, - sym_text_interpolation, - ACTIONS(3727), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [61854] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(518), 1, - sym_declaration_list, - STATE(1760), 1, - sym_text_interpolation, - STATE(2351), 1, - sym_base_clause, - [61876] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_declaration_list, - STATE(1761), 1, - sym_text_interpolation, - STATE(2209), 1, - sym_class_interface_clause, - [61898] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(902), 1, - sym_compound_statement, - STATE(1762), 1, - sym_text_interpolation, - STATE(2255), 1, - sym__return_type, - [61920] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3463), 1, - anon_sym_LBRACE, - STATE(1763), 1, - sym_text_interpolation, - STATE(2105), 1, - sym_enum_declaration_list, - STATE(2251), 1, - sym_class_interface_clause, - [61942] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1632), 1, - sym_declaration_list, - STATE(1764), 1, - sym_text_interpolation, - STATE(2291), 1, - sym_class_interface_clause, - [61964] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1715), 1, - sym_declaration_list, - STATE(1765), 1, - sym_text_interpolation, - STATE(2250), 1, - sym_class_interface_clause, - [61986] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3731), 1, - anon_sym_AMP, - STATE(1766), 1, - sym_text_interpolation, - STATE(1849), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3358), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [62006] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1059), 1, - sym_compound_statement, - STATE(1767), 1, - sym_text_interpolation, - STATE(2106), 1, - sym__return_type, - [62028] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(3506), 1, - anon_sym_AMP, - STATE(1768), 1, - sym_text_interpolation, - STATE(2063), 2, - sym_variable_name, - sym_variable_reference, - [62048] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3736), 1, - anon_sym_COMMA, - ACTIONS(3734), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1769), 2, - sym_text_interpolation, - aux_sym__const_declaration_repeat1, - [62066] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3739), 1, - anon_sym_SEMI, - ACTIONS(3741), 1, - anon_sym_LBRACE, - ACTIONS(3743), 1, - sym__automatic_semicolon, - STATE(1353), 1, - sym_compound_statement, - STATE(1770), 1, - sym_text_interpolation, - [62088] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3648), 1, - anon_sym_COMMA, - STATE(1771), 1, - sym_text_interpolation, - STATE(1821), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3745), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62108] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3656), 1, - anon_sym_COMMA, - STATE(1772), 1, - sym_text_interpolation, - STATE(1822), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3747), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62128] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1773), 1, - sym_text_interpolation, - ACTIONS(3394), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BSLASH, - anon_sym_LBRACE, - [62144] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3660), 1, - anon_sym_COMMA, - STATE(1774), 1, - sym_text_interpolation, - STATE(1825), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3749), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62164] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1108), 1, - sym_compound_statement, - STATE(1775), 1, - sym_text_interpolation, - STATE(2176), 1, - sym__return_type, - [62186] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(1776), 1, - sym_text_interpolation, - STATE(2331), 1, - sym_arguments, - ACTIONS(3289), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [62206] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(892), 1, - sym_compound_statement, - STATE(1777), 1, - sym_text_interpolation, - STATE(2246), 1, - sym__return_type, - [62228] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1778), 1, - sym_text_interpolation, - STATE(1832), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3751), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62248] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1552), 1, - sym_formal_parameters, - STATE(1779), 1, - sym_text_interpolation, - STATE(2122), 1, - sym_reference_modifier, - [62270] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - STATE(1780), 1, - sym_text_interpolation, - STATE(1844), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3285), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [62290] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - ACTIONS(3184), 1, - aux_sym_base_clause_token1, - STATE(1781), 1, - sym_text_interpolation, - STATE(1957), 1, - sym_declaration_list, - STATE(2336), 1, - sym_base_clause, - [62312] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(484), 1, - sym_enum_declaration_list, - STATE(1782), 1, - sym_text_interpolation, - STATE(2152), 1, - sym_class_interface_clause, - [62334] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1783), 1, - sym_text_interpolation, - ACTIONS(3725), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [62350] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1548), 1, - sym_formal_parameters, - STATE(1784), 1, - sym_text_interpolation, - STATE(2348), 1, - sym_reference_modifier, - [62372] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(445), 1, - sym_declaration_list, - STATE(1785), 1, - sym_text_interpolation, - STATE(2219), 1, - sym_class_interface_clause, - [62394] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1786), 1, - sym_text_interpolation, - STATE(1904), 1, - sym_formal_parameters, - STATE(2318), 1, - sym_reference_modifier, - [62416] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1563), 1, - sym_formal_parameters, - STATE(1787), 1, - sym_text_interpolation, - STATE(2244), 1, - sym_reference_modifier, - [62438] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1788), 1, - sym_text_interpolation, - STATE(1920), 1, - sym_formal_parameters, - STATE(2310), 1, - sym_reference_modifier, - [62460] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(452), 1, - sym_enum_declaration_list, - STATE(1789), 1, - sym_text_interpolation, - STATE(2228), 1, - sym_class_interface_clause, - [62482] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1053), 1, - sym_compound_statement, - STATE(1790), 1, - sym_text_interpolation, - STATE(2230), 1, - sym__return_type, - [62504] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1791), 1, - sym_text_interpolation, - STATE(1861), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3753), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62524] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3642), 1, - ts_builtin_sym_end, - STATE(1792), 1, - sym_text_interpolation, - ACTIONS(3640), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [62542] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1050), 1, - sym_compound_statement, - STATE(1793), 1, - sym_text_interpolation, - STATE(2238), 1, - sym__return_type, - [62564] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1794), 1, - sym_text_interpolation, - ACTIONS(3755), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - ACTIONS(3757), 2, - sym_heredoc_end, - sym_nowdoc_string, - [62582] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1572), 1, - sym_formal_parameters, - STATE(1795), 1, - sym_text_interpolation, - STATE(2234), 1, - sym_reference_modifier, - [62604] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3648), 1, - anon_sym_COMMA, - STATE(1738), 1, - aux_sym_function_static_declaration_repeat1, - STATE(1796), 1, - sym_text_interpolation, - ACTIONS(3759), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62624] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1797), 1, - sym_text_interpolation, - ACTIONS(3761), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [62640] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - STATE(931), 1, - sym_declaration_list, - STATE(1798), 1, - sym_text_interpolation, - STATE(2292), 1, - sym_class_interface_clause, - [62662] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - STATE(899), 1, - sym_declaration_list, - STATE(1799), 1, - sym_text_interpolation, - STATE(2293), 1, - sym_class_interface_clause, - [62684] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1800), 1, - sym_text_interpolation, - ACTIONS(3394), 4, - anon_sym_COMMA, - anon_sym_BSLASH, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [62700] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3656), 1, - anon_sym_COMMA, - STATE(1741), 1, - aux_sym_global_declaration_repeat1, - STATE(1801), 1, - sym_text_interpolation, - ACTIONS(3763), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62720] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3660), 1, - anon_sym_COMMA, - STATE(1743), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1802), 1, - sym_text_interpolation, - ACTIONS(3765), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62740] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1803), 1, - sym_text_interpolation, - ACTIONS(3275), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [62756] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3767), 1, - sym_heredoc_end, - STATE(1804), 1, - sym_text_interpolation, - STATE(2428), 1, - sym__new_line, - ACTIONS(3705), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [62776] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3769), 1, - sym_heredoc_end, - STATE(1805), 1, - sym_text_interpolation, - STATE(2559), 1, - sym__new_line, - ACTIONS(3705), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [62796] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3771), 1, - sym_heredoc_end, - STATE(1806), 1, - sym_text_interpolation, - STATE(2427), 1, - sym__new_line, - ACTIONS(3705), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [62816] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1807), 1, - sym_text_interpolation, - ACTIONS(3773), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [62832] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3660), 1, - anon_sym_COMMA, - STATE(1747), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1808), 1, - sym_text_interpolation, - ACTIONS(3765), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62852] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3463), 1, - anon_sym_LBRACE, - STATE(1809), 1, - sym_text_interpolation, - STATE(2004), 1, - sym_enum_declaration_list, - STATE(2302), 1, - sym_class_interface_clause, - [62874] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1592), 1, - sym_formal_parameters, - STATE(1810), 1, - sym_text_interpolation, - STATE(2208), 1, - sym_reference_modifier, - [62896] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1811), 1, - sym_text_interpolation, - ACTIONS(3775), 4, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_match_default_expression_token1, - aux_sym_switch_block_token1, - [62912] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1812), 1, - sym_text_interpolation, - ACTIONS(3727), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [62928] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1813), 1, - sym_text_interpolation, - STATE(1818), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3777), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62948] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3779), 1, - anon_sym_EQ, - ACTIONS(3781), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_text_interpolation, - STATE(2038), 1, - aux_sym__list_destructing_repeat1, - [62970] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(927), 1, - sym_compound_statement, - STATE(1815), 1, - sym_text_interpolation, - STATE(2303), 1, - sym__return_type, - [62992] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1025), 1, - sym_declaration_list, - STATE(1816), 1, - sym_text_interpolation, - STATE(2308), 1, - sym_class_interface_clause, - [63014] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3785), 1, - anon_sym_PIPE, - STATE(1734), 1, - aux_sym_type_list_repeat1, - STATE(1817), 1, - sym_text_interpolation, - ACTIONS(3783), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [63034] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1769), 1, - aux_sym__const_declaration_repeat1, - STATE(1818), 1, - sym_text_interpolation, - ACTIONS(3787), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63054] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1819), 1, - sym_text_interpolation, - ACTIONS(1645), 4, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [63070] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1820), 1, - sym_text_interpolation, - ACTIONS(3709), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [63086] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3648), 1, - anon_sym_COMMA, - STATE(1738), 1, - aux_sym_function_static_declaration_repeat1, - STATE(1821), 1, - sym_text_interpolation, - ACTIONS(3789), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63106] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3656), 1, - anon_sym_COMMA, - STATE(1741), 1, - aux_sym_global_declaration_repeat1, - STATE(1822), 1, - sym_text_interpolation, - ACTIONS(3791), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63126] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3660), 1, - anon_sym_COMMA, - STATE(1823), 1, - sym_text_interpolation, - STATE(1828), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3793), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63146] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1824), 1, - sym_text_interpolation, - ACTIONS(3311), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - [63162] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3660), 1, - anon_sym_COMMA, - STATE(1747), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1825), 1, - sym_text_interpolation, - ACTIONS(3793), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63182] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1098), 1, - sym_declaration_list, - STATE(1826), 1, - sym_text_interpolation, - STATE(2128), 1, - sym_class_interface_clause, - [63204] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1105), 1, - sym_declaration_list, - STATE(1827), 1, - sym_text_interpolation, - STATE(2174), 1, - sym_class_interface_clause, - [63226] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3660), 1, - anon_sym_COMMA, - STATE(1747), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1828), 1, - sym_text_interpolation, - ACTIONS(3795), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63246] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1103), 1, - sym_declaration_list, - STATE(1829), 1, - sym_text_interpolation, - STATE(2181), 1, - sym_class_interface_clause, - [63268] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1830), 1, - sym_text_interpolation, - STATE(1836), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3787), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63288] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(908), 1, - sym_compound_statement, - STATE(1831), 1, - sym_text_interpolation, - STATE(2350), 1, - sym__return_type, - [63310] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1769), 1, - aux_sym__const_declaration_repeat1, - STATE(1832), 1, - sym_text_interpolation, - ACTIONS(3797), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63330] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - STATE(926), 1, - sym_compound_statement, - STATE(1833), 1, - sym_text_interpolation, - STATE(2306), 1, - sym__return_type, - [63352] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1036), 1, - sym_compound_statement, - STATE(1834), 1, - sym_text_interpolation, - STATE(2264), 1, - sym__return_type, - [63374] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3799), 1, - sym_integer, - STATE(1835), 1, - sym_text_interpolation, - STATE(2191), 1, - sym_string, - ACTIONS(298), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - [63394] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1769), 1, - aux_sym__const_declaration_repeat1, - STATE(1836), 1, - sym_text_interpolation, - ACTIONS(3801), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63414] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1701), 1, - sym_declaration_list, - STATE(1837), 1, - sym_text_interpolation, - STATE(2341), 1, - sym_class_interface_clause, - [63436] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1769), 1, - aux_sym__const_declaration_repeat1, - STATE(1838), 1, - sym_text_interpolation, - ACTIONS(3753), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63456] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(446), 1, - sym_declaration_list, - STATE(1839), 1, - sym_text_interpolation, - STATE(2239), 1, - sym_class_interface_clause, - [63478] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3785), 1, - anon_sym_PIPE, - STATE(1817), 1, - aux_sym_type_list_repeat1, - STATE(1840), 1, - sym_text_interpolation, - ACTIONS(3803), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [63498] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1841), 1, - sym_text_interpolation, - ACTIONS(3805), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [63514] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1546), 1, - sym_formal_parameters, - STATE(1842), 1, - sym_text_interpolation, - STATE(2236), 1, - sym_reference_modifier, - [63536] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3807), 1, - anon_sym_COMMA, - ACTIONS(3311), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - STATE(1843), 2, - sym_text_interpolation, - aux_sym_base_clause_repeat1, - [63554] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - STATE(1843), 1, - aux_sym_base_clause_repeat1, - STATE(1844), 1, - sym_text_interpolation, - ACTIONS(3810), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [63574] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3741), 1, - anon_sym_LBRACE, - ACTIONS(3812), 1, - anon_sym_SEMI, - ACTIONS(3814), 1, - sym__automatic_semicolon, - STATE(1334), 1, - sym_compound_statement, - STATE(1845), 1, - sym_text_interpolation, - [63596] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - STATE(933), 1, - sym_declaration_list, - STATE(1846), 1, - sym_text_interpolation, - STATE(2324), 1, - sym_class_interface_clause, - [63618] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3682), 1, - anon_sym_COMMA, - STATE(1847), 1, - sym_text_interpolation, - STATE(1852), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3816), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63638] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3741), 1, - anon_sym_LBRACE, - ACTIONS(3818), 1, - anon_sym_SEMI, - ACTIONS(3820), 1, - sym__automatic_semicolon, - STATE(1345), 1, - sym_compound_statement, - STATE(1848), 1, - sym_text_interpolation, - [63660] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3822), 1, - anon_sym_AMP, - ACTIONS(3386), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - STATE(1849), 2, - sym_text_interpolation, - aux_sym_intersection_type_repeat1, - [63678] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1850), 1, - sym_text_interpolation, - ACTIONS(3761), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [63694] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3682), 1, - anon_sym_COMMA, - STATE(1739), 1, - aux_sym_property_declaration_repeat2, - STATE(1851), 1, - sym_text_interpolation, - ACTIONS(3825), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63714] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3682), 1, - anon_sym_COMMA, - STATE(1740), 1, - aux_sym_property_declaration_repeat2, - STATE(1852), 1, - sym_text_interpolation, - ACTIONS(3827), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63734] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3723), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1853), 1, - sym_text_interpolation, - STATE(2295), 1, - sym_namespace_aliasing_clause, - ACTIONS(3829), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [63754] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3831), 1, - sym_heredoc_end, - STATE(1854), 1, - sym_text_interpolation, - STATE(2404), 1, - sym__new_line, - ACTIONS(3705), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [63774] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1043), 1, - sym_compound_statement, - STATE(1855), 1, - sym_text_interpolation, - STATE(2273), 1, - sym__return_type, - [63796] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(441), 1, - sym_declaration_list, - STATE(1856), 1, - sym_text_interpolation, - STATE(2229), 1, - sym_class_interface_clause, - [63818] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1754), 1, - aux_sym__const_declaration_repeat1, - STATE(1857), 1, - sym_text_interpolation, - ACTIONS(3797), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63838] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1045), 1, - sym_compound_statement, - STATE(1858), 1, - sym_text_interpolation, - STATE(2227), 1, - sym__return_type, - [63860] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3741), 1, - anon_sym_LBRACE, - ACTIONS(3833), 1, - anon_sym_SEMI, - ACTIONS(3835), 1, - sym__automatic_semicolon, - STATE(1342), 1, - sym_compound_statement, - STATE(1859), 1, - sym_text_interpolation, - [63882] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3682), 1, - anon_sym_COMMA, - STATE(1744), 1, - aux_sym_property_declaration_repeat2, - STATE(1860), 1, - sym_text_interpolation, - ACTIONS(3837), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63902] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_COMMA, - STATE(1769), 1, - aux_sym__const_declaration_repeat1, - STATE(1861), 1, - sym_text_interpolation, - ACTIONS(3839), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63922] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1374), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1862), 1, - sym_text_interpolation, - ACTIONS(1372), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63939] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_DOLLAR, - STATE(1662), 1, - sym_variable_name, - STATE(1863), 1, - sym_text_interpolation, - STATE(1918), 1, - sym_property_element, - [63958] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_DOLLAR, - STATE(1662), 1, - sym_variable_name, - STATE(1742), 1, - sym_property_element, - STATE(1864), 1, - sym_text_interpolation, - [63977] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(813), 1, - anon_sym_RBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3841), 1, - anon_sym_COMMA, - STATE(1865), 1, - sym_text_interpolation, - STATE(2060), 1, - aux_sym_array_creation_expression_repeat1, - [63996] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3845), 1, - anon_sym_RPAREN, - STATE(1866), 1, - sym_text_interpolation, - STATE(1910), 1, - aux_sym_arguments_repeat1, - [64015] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1867), 1, - sym_text_interpolation, - ACTIONS(3847), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [64030] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2984), 1, - anon_sym_RBRACK, - ACTIONS(3849), 1, - anon_sym_COMMA, - STATE(1868), 1, - sym_text_interpolation, - STATE(2066), 1, - aux_sym_attribute_group_repeat1, - [64049] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_COMMA, - ACTIONS(3854), 1, - anon_sym_RBRACE, - STATE(1869), 2, - sym_text_interpolation, - aux_sym_match_block_repeat1, - [64066] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1870), 1, - sym_text_interpolation, - ACTIONS(3311), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [64081] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3856), 1, - anon_sym_COMMA, - ACTIONS(3858), 1, - anon_sym_RPAREN, - STATE(1871), 1, - sym_text_interpolation, - STATE(1983), 1, - aux_sym_array_creation_expression_repeat1, - [64100] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3860), 1, - anon_sym_COMMA, - ACTIONS(3862), 1, - anon_sym_RPAREN, - STATE(1872), 1, - sym_text_interpolation, - STATE(1886), 1, - aux_sym_array_creation_expression_repeat1, - [64119] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3864), 1, - anon_sym_EQ_GT, - STATE(1873), 1, - sym_text_interpolation, - STATE(2448), 1, - sym__return_type, - [64138] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3868), 1, - anon_sym_EQ, - STATE(1874), 1, - sym_text_interpolation, - ACTIONS(3866), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64155] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3530), 1, - anon_sym_LBRACE, - STATE(1875), 1, - sym_text_interpolation, - STATE(2415), 1, - sym__return_type, - [64174] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3508), 1, - anon_sym_RPAREN, - ACTIONS(3870), 1, - anon_sym_COMMA, - STATE(1876), 1, - sym_text_interpolation, - STATE(1917), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [64193] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1825), 1, - anon_sym_RPAREN, - ACTIONS(3872), 1, - anon_sym_COMMA, - STATE(1877), 1, - sym_text_interpolation, - STATE(2080), 1, - aux_sym_formal_parameters_repeat1, - [64212] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3874), 1, - anon_sym_COMMA, - ACTIONS(3876), 1, - anon_sym_RPAREN, - STATE(1877), 1, - aux_sym_formal_parameters_repeat1, - STATE(1878), 1, - sym_text_interpolation, - [64231] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3880), 1, - anon_sym_EQ, - STATE(1879), 1, - sym_text_interpolation, - ACTIONS(3878), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64248] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1880), 1, - sym_text_interpolation, - ACTIONS(3882), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [64263] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3884), 1, - anon_sym_COMMA, - ACTIONS(3886), 1, - anon_sym_RPAREN, - STATE(1881), 1, - sym_text_interpolation, - STATE(1952), 1, - aux_sym_formal_parameters_repeat1, - [64282] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(3888), 1, - anon_sym_DOT_DOT_DOT, - STATE(1882), 1, - sym_text_interpolation, - STATE(1948), 1, - sym_variable_name, - [64301] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3892), 1, - aux_sym_else_clause_token1, - STATE(1883), 1, - sym_text_interpolation, - ACTIONS(3890), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [64318] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1578), 1, - anon_sym_RPAREN, - STATE(1884), 1, - sym_text_interpolation, - STATE(2036), 1, - aux_sym__list_destructing_repeat1, - [64337] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1578), 1, - anon_sym_RPAREN, - STATE(1885), 1, - sym_text_interpolation, - STATE(2039), 1, - aux_sym__list_destructing_repeat1, - [64356] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(809), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3894), 1, - anon_sym_COMMA, - STATE(1886), 1, - sym_text_interpolation, - STATE(1924), 1, - aux_sym_array_creation_expression_repeat1, - [64375] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3896), 1, - sym_name, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1887), 1, - sym_text_interpolation, - STATE(2290), 1, - sym_namespace_use_group, - [64394] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(1888), 1, - sym_text_interpolation, - ACTIONS(3900), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64411] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3904), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_RBRACK, - STATE(1889), 1, - sym_text_interpolation, - STATE(1891), 1, - aux_sym__array_destructing_repeat1, - [64430] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(807), 1, - anon_sym_RBRACK, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_COMMA, - STATE(1890), 1, - sym_text_interpolation, - STATE(2060), 1, - aux_sym_array_creation_expression_repeat1, - [64449] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3910), 1, - anon_sym_COMMA, - ACTIONS(3913), 1, - anon_sym_RBRACK, - STATE(1891), 2, - sym_text_interpolation, - aux_sym__array_destructing_repeat1, - [64466] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3915), 1, - anon_sym_COMMA, - ACTIONS(3917), 1, - anon_sym_RBRACK, - STATE(1868), 1, - aux_sym_attribute_group_repeat1, - STATE(1892), 1, - sym_text_interpolation, - [64485] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3919), 1, - anon_sym_COMMA, - ACTIONS(3921), 1, - anon_sym_RBRACK, - STATE(1865), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1893), 1, - sym_text_interpolation, - [64504] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3923), 1, - anon_sym_COMMA, - ACTIONS(3925), 1, - anon_sym_RBRACE, - STATE(1894), 1, - sym_text_interpolation, - STATE(1937), 1, - aux_sym_match_block_repeat1, - [64523] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1334), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1895), 1, - sym_text_interpolation, - ACTIONS(1332), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64540] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2411), 1, - anon_sym_EQ_GT, - ACTIONS(3927), 1, - anon_sym_COMMA, - STATE(1896), 2, - sym_text_interpolation, - aux_sym_match_condition_list_repeat1, - [64557] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1897), 1, - sym_text_interpolation, - ACTIONS(3930), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [64572] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3932), 1, - anon_sym_COMMA, - ACTIONS(3934), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_text_interpolation, - STATE(2104), 1, - aux_sym_arguments_repeat1, - [64591] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1899), 1, - sym_text_interpolation, - ACTIONS(3936), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [64606] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3938), 1, - anon_sym_RPAREN, - STATE(1900), 1, - sym_text_interpolation, - STATE(2039), 1, - aux_sym__list_destructing_repeat1, - [64625] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3940), 1, - anon_sym_LBRACE, - ACTIONS(3942), 1, - anon_sym_COLON, - STATE(1901), 1, - sym_text_interpolation, - STATE(1969), 1, - sym_switch_block, - [64644] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - STATE(1902), 1, - sym_text_interpolation, - STATE(1930), 2, - sym_dynamic_variable_name, - sym_variable_name, - [64661] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3944), 1, - anon_sym_RPAREN, - STATE(1903), 1, - sym_text_interpolation, - STATE(2039), 1, - aux_sym__list_destructing_repeat1, - [64680] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3946), 1, - anon_sym_EQ_GT, - STATE(1904), 1, - sym_text_interpolation, - STATE(2571), 1, - sym__return_type, - [64699] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3422), 1, - sym_heredoc_end, - STATE(1905), 1, - sym_text_interpolation, - ACTIONS(3420), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [64716] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_DOLLAR, - STATE(1725), 1, - sym_variable_name, - STATE(1906), 1, - sym_text_interpolation, - STATE(1927), 1, - sym_static_variable_declaration, - [64735] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3948), 1, - anon_sym_COMMA, - ACTIONS(3950), 1, - anon_sym_RBRACK, - STATE(1907), 1, - sym_text_interpolation, - STATE(1934), 1, - aux_sym_attribute_group_repeat1, - [64754] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3904), 1, - anon_sym_COMMA, - ACTIONS(3952), 1, - anon_sym_RBRACK, - STATE(1891), 1, - aux_sym__array_destructing_repeat1, - STATE(1908), 1, - sym_text_interpolation, - [64773] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3954), 1, - anon_sym_COMMA, - ACTIONS(3956), 1, - anon_sym_RBRACK, - STATE(1890), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1909), 1, - sym_text_interpolation, - [64792] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(805), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3958), 1, - anon_sym_COMMA, - STATE(1910), 1, - sym_text_interpolation, - STATE(1998), 1, - aux_sym_arguments_repeat1, - [64811] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3904), 1, - anon_sym_COMMA, - ACTIONS(3952), 1, - anon_sym_RBRACK, - STATE(1889), 1, - aux_sym__array_destructing_repeat1, - STATE(1911), 1, - sym_text_interpolation, - [64830] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3779), 1, - anon_sym_EQ, - STATE(1912), 1, - sym_text_interpolation, - ACTIONS(3960), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [64847] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3962), 1, - anon_sym_LBRACE, - ACTIONS(3964), 1, - anon_sym_COLON, - STATE(497), 1, - sym_switch_block, - STATE(1913), 1, - sym_text_interpolation, - [64866] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3966), 1, - anon_sym_COMMA, - ACTIONS(3969), 1, - anon_sym_RBRACE, - STATE(1914), 2, - sym_text_interpolation, - aux_sym_namespace_use_group_repeat1, - [64883] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3973), 1, - anon_sym_EQ, - STATE(1915), 1, - sym_text_interpolation, - ACTIONS(3971), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64900] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3975), 1, - anon_sym_EQ_GT, - STATE(1916), 1, - sym_text_interpolation, - STATE(2378), 1, - sym__return_type, - [64919] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3977), 1, - anon_sym_COMMA, - ACTIONS(3980), 1, - anon_sym_RPAREN, - STATE(1917), 2, - sym_text_interpolation, - aux_sym_anonymous_function_use_clause_repeat1, - [64936] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1918), 1, - sym_text_interpolation, - ACTIONS(3684), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [64951] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1919), 1, - sym_text_interpolation, - ACTIONS(3664), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - [64966] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3982), 1, - anon_sym_EQ_GT, - STATE(1920), 1, - sym_text_interpolation, - STATE(2467), 1, - sym__return_type, - [64985] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3469), 1, - anon_sym_BSLASH, - ACTIONS(3984), 1, - sym_name, - STATE(1921), 1, - sym_text_interpolation, - STATE(2480), 1, - sym_namespace_name, - [65004] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1922), 1, - sym_text_interpolation, - ACTIONS(3986), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [65019] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1923), 1, - sym_text_interpolation, - ACTIONS(3988), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [65034] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3990), 1, - anon_sym_COMMA, - ACTIONS(3993), 1, - anon_sym_RPAREN, - STATE(1924), 2, - sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [65051] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1925), 1, - sym_text_interpolation, - ACTIONS(3995), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [65066] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3997), 1, - sym_name, - STATE(1926), 1, - sym_text_interpolation, - ACTIONS(3999), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65083] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1927), 1, - sym_text_interpolation, - ACTIONS(3675), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [65098] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4001), 1, - anon_sym_COMMA, - ACTIONS(4003), 1, - anon_sym_RBRACE, - STATE(1914), 1, - aux_sym_namespace_use_group_repeat1, - STATE(1928), 1, - sym_text_interpolation, - [65117] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4005), 1, - anon_sym_SQUOTE, - ACTIONS(4007), 1, - anon_sym_DQUOTE, - ACTIONS(4009), 1, - sym_heredoc_start, - STATE(1929), 1, - sym_text_interpolation, - [65136] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1930), 1, - sym_text_interpolation, - ACTIONS(3689), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [65151] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1310), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1931), 1, - sym_text_interpolation, - ACTIONS(1308), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65168] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1932), 1, - sym_text_interpolation, - ACTIONS(2657), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - sym_name, - [65183] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1290), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1933), 1, - sym_text_interpolation, - ACTIONS(1288), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65200] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2980), 1, - anon_sym_RBRACK, - ACTIONS(4011), 1, - anon_sym_COMMA, - STATE(1934), 1, - sym_text_interpolation, - STATE(2066), 1, - aux_sym_attribute_group_repeat1, - [65219] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3898), 1, - anon_sym_LBRACE, - ACTIONS(4013), 1, - sym_name, - STATE(1935), 1, - sym_text_interpolation, - STATE(2116), 1, - sym_namespace_use_group, - [65238] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1936), 1, - sym_text_interpolation, - ACTIONS(4015), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [65253] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(819), 1, - anon_sym_RBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4017), 1, - anon_sym_COMMA, - STATE(1869), 1, - aux_sym_match_block_repeat1, - STATE(1937), 1, - sym_text_interpolation, - [65272] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1938), 1, - sym_text_interpolation, - ACTIONS(3700), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [65287] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1150), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1939), 1, - sym_text_interpolation, - ACTIONS(1148), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65304] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1202), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1940), 1, - sym_text_interpolation, - ACTIONS(1200), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65321] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1430), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1941), 1, - sym_text_interpolation, - ACTIONS(1428), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65338] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1434), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1942), 1, - sym_text_interpolation, - ACTIONS(1432), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65355] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1114), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1943), 1, - sym_text_interpolation, - ACTIONS(1112), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65372] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1422), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1944), 1, - sym_text_interpolation, - ACTIONS(1420), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65389] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1398), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1945), 1, - sym_text_interpolation, - ACTIONS(1396), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65406] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1382), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1946), 1, - sym_text_interpolation, - ACTIONS(1380), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65423] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1366), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1947), 1, - sym_text_interpolation, - ACTIONS(1364), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65440] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4021), 1, - anon_sym_EQ, - STATE(1948), 1, - sym_text_interpolation, - ACTIONS(4019), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65457] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1354), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1949), 1, - sym_text_interpolation, - ACTIONS(1352), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65474] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_EQ, - STATE(1950), 1, - sym_text_interpolation, - ACTIONS(4023), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65491] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1951), 1, - sym_text_interpolation, - ACTIONS(3445), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [65506] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1757), 1, - anon_sym_RPAREN, - ACTIONS(4027), 1, - anon_sym_COMMA, - STATE(1952), 1, - sym_text_interpolation, - STATE(2080), 1, - aux_sym_formal_parameters_repeat1, - [65525] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1953), 1, - sym_text_interpolation, - ACTIONS(4029), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [65540] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(4031), 1, - anon_sym_DOT_DOT_DOT, - STATE(1954), 1, - sym_text_interpolation, - STATE(2079), 1, - sym_variable_name, - [65559] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1326), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1955), 1, - sym_text_interpolation, - ACTIONS(1324), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65576] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_EQ, - STATE(1956), 1, - sym_text_interpolation, - ACTIONS(4033), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65593] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1322), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1957), 1, - sym_text_interpolation, - ACTIONS(1320), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65610] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1314), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1958), 1, - sym_text_interpolation, - ACTIONS(1312), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65627] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(4037), 1, - anon_sym_DOT_DOT_DOT, - STATE(1959), 1, - sym_text_interpolation, - STATE(2070), 1, - sym_variable_name, - [65646] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1302), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1960), 1, - sym_text_interpolation, - ACTIONS(1300), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65663] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4041), 1, - anon_sym_EQ, - STATE(1961), 1, - sym_text_interpolation, - ACTIONS(4039), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65680] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(3450), 1, - anon_sym_LBRACE, - STATE(1962), 1, - sym_text_interpolation, - STATE(2462), 1, - sym__return_type, - [65699] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1286), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1963), 1, - sym_text_interpolation, - ACTIONS(1284), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65716] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1278), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1964), 1, - sym_text_interpolation, - ACTIONS(1276), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65733] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1965), 1, - sym_text_interpolation, - ACTIONS(3734), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [65748] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1274), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1966), 1, - sym_text_interpolation, - ACTIONS(1272), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65765] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1098), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1967), 1, - sym_text_interpolation, - ACTIONS(1096), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65782] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1266), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1968), 1, - sym_text_interpolation, - ACTIONS(1264), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65799] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1246), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1969), 1, - sym_text_interpolation, - ACTIONS(1244), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65816] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1250), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1970), 1, - sym_text_interpolation, - ACTIONS(1248), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65833] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1270), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1971), 1, - sym_text_interpolation, - ACTIONS(1268), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65850] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(4043), 1, - anon_sym_RPAREN, - STATE(1972), 1, - sym_text_interpolation, - STATE(2426), 1, - sym_variable_name, - [65869] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1282), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1973), 1, - sym_text_interpolation, - ACTIONS(1280), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65886] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1298), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1974), 1, - sym_text_interpolation, - ACTIONS(1296), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65903] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(1975), 1, - sym_text_interpolation, - ACTIONS(4045), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [65918] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3898), 1, - anon_sym_LBRACE, - ACTIONS(4013), 1, - sym_name, - STATE(1976), 1, - sym_text_interpolation, - STATE(2278), 1, - sym_namespace_use_group, - [65937] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(4047), 1, - anon_sym_EQ_GT, - STATE(1977), 1, - sym_text_interpolation, - STATE(2463), 1, - sym__return_type, - [65956] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - ACTIONS(3471), 1, - anon_sym_LBRACE, - STATE(1978), 1, - sym_text_interpolation, - STATE(2048), 1, - aux_sym_base_clause_repeat1, - [65975] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1338), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1979), 1, - sym_text_interpolation, - ACTIONS(1336), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65992] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1158), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1980), 1, - sym_text_interpolation, - ACTIONS(1156), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66009] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_COMMA, - ACTIONS(4049), 1, - anon_sym_RPAREN, - STATE(1981), 1, - sym_text_interpolation, - STATE(2045), 1, - aux_sym_unset_statement_repeat1, - [66028] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1406), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1982), 1, - sym_text_interpolation, - ACTIONS(1404), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66045] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(797), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4051), 1, - anon_sym_COMMA, - STATE(1924), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1983), 1, - sym_text_interpolation, - [66064] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3898), 1, - anon_sym_LBRACE, - ACTIONS(4013), 1, - sym_name, - STATE(1984), 1, - sym_text_interpolation, - STATE(2304), 1, - sym_namespace_use_group, - [66083] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - STATE(1985), 1, - sym_text_interpolation, - STATE(1726), 2, - sym_dynamic_variable_name, - sym_variable_name, - [66100] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3896), 1, - sym_name, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1986), 1, - sym_text_interpolation, - STATE(2304), 1, - sym_namespace_use_group, - [66119] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1410), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1987), 1, - sym_text_interpolation, - ACTIONS(1408), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66136] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1350), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1988), 1, - sym_text_interpolation, - ACTIONS(1348), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66153] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_COMMA, - ACTIONS(4053), 1, - anon_sym_RPAREN, - STATE(1989), 1, - sym_text_interpolation, - STATE(2045), 1, - aux_sym_unset_statement_repeat1, - [66172] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1386), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1990), 1, - sym_text_interpolation, - ACTIONS(1384), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66189] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1426), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1991), 1, - sym_text_interpolation, - ACTIONS(1424), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66206] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1190), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1992), 1, - sym_text_interpolation, - ACTIONS(1188), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66223] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1186), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1993), 1, - sym_text_interpolation, - ACTIONS(1184), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66240] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1146), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1994), 1, - sym_text_interpolation, - ACTIONS(1144), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66257] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1110), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1995), 1, - sym_text_interpolation, - ACTIONS(1108), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66274] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3896), 1, - sym_name, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1996), 1, - sym_text_interpolation, - STATE(2355), 1, - sym_namespace_use_group, - [66293] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3896), 1, - sym_name, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1997), 1, - sym_text_interpolation, - STATE(2116), 1, - sym_namespace_use_group, - [66312] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4055), 1, - anon_sym_COMMA, - ACTIONS(4058), 1, - anon_sym_RPAREN, - STATE(1998), 2, - sym_text_interpolation, - aux_sym_arguments_repeat1, - [66329] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1138), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(1999), 1, - sym_text_interpolation, - ACTIONS(1136), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66346] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4062), 1, - aux_sym_else_clause_token1, - STATE(2000), 1, - sym_text_interpolation, - ACTIONS(4060), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [66363] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2001), 1, - sym_text_interpolation, - ACTIONS(4064), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [66378] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1198), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2002), 1, - sym_text_interpolation, - ACTIONS(1196), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66395] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3424), 1, - sym_nowdoc_string, - ACTIONS(4066), 1, - anon_sym_, - STATE(1635), 1, - aux_sym_nowdoc_body_repeat1, - STATE(2003), 1, - sym_text_interpolation, - [66414] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1210), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2004), 1, - sym_text_interpolation, - ACTIONS(1208), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66431] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4068), 1, - anon_sym_COMMA, - ACTIONS(4070), 1, - anon_sym_RBRACE, - STATE(2005), 1, - sym_text_interpolation, - STATE(2023), 1, - aux_sym_match_block_repeat1, - [66450] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1214), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2006), 1, - sym_text_interpolation, - ACTIONS(1212), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66467] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2007), 1, - sym_text_interpolation, - ACTIONS(4072), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [66482] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1218), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2008), 1, - sym_text_interpolation, - ACTIONS(1216), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66499] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2009), 1, - sym_text_interpolation, - ACTIONS(4074), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [66514] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1222), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2010), 1, - sym_text_interpolation, - ACTIONS(1220), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66531] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4076), 1, - anon_sym_SQUOTE, - ACTIONS(4078), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - sym_heredoc_start, - STATE(2011), 1, - sym_text_interpolation, - [66550] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1222), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2012), 1, - sym_text_interpolation, - ACTIONS(1220), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66567] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1226), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2013), 1, - sym_text_interpolation, - ACTIONS(1224), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66584] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3028), 1, - anon_sym_RPAREN, - STATE(1900), 1, - aux_sym__list_destructing_repeat1, - STATE(2014), 1, - sym_text_interpolation, - [66603] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1230), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2015), 1, - sym_text_interpolation, - ACTIONS(1228), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66620] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4082), 1, - anon_sym_RPAREN, - STATE(1903), 1, - aux_sym__list_destructing_repeat1, - STATE(2016), 1, - sym_text_interpolation, - [66639] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1242), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2017), 1, - sym_text_interpolation, - ACTIONS(1240), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66656] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1254), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2018), 1, - sym_text_interpolation, - ACTIONS(1252), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66673] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1258), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2019), 1, - sym_text_interpolation, - ACTIONS(1256), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66690] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1118), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2020), 1, - sym_text_interpolation, - ACTIONS(1116), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66707] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym_comment, - STATE(2021), 1, - sym_text_interpolation, - STATE(1772), 2, - sym_dynamic_variable_name, - sym_variable_name, - [66724] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2315), 1, - anon_sym_COMMA, - ACTIONS(4084), 1, - anon_sym_EQ_GT, - STATE(1896), 1, - aux_sym_match_condition_list_repeat1, - STATE(2022), 1, - sym_text_interpolation, - [66743] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(817), 1, - anon_sym_RBRACE, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4086), 1, - anon_sym_COMMA, - STATE(1869), 1, - aux_sym_match_block_repeat1, - STATE(2023), 1, - sym_text_interpolation, - [66762] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1330), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2024), 1, - sym_text_interpolation, - ACTIONS(1328), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66779] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1342), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2025), 1, - sym_text_interpolation, - ACTIONS(1340), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66796] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1358), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2026), 1, - sym_text_interpolation, - ACTIONS(1356), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66813] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1362), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2027), 1, - sym_text_interpolation, - ACTIONS(1360), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66830] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1390), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2028), 1, - sym_text_interpolation, - ACTIONS(1388), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66847] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1170), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2029), 1, - sym_text_interpolation, - ACTIONS(1168), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66864] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1102), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2030), 1, - sym_text_interpolation, - ACTIONS(1100), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66881] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3779), 1, - anon_sym_EQ, - STATE(2031), 1, - sym_text_interpolation, - ACTIONS(4088), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [66898] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_RPAREN, - STATE(2032), 1, - sym_text_interpolation, - STATE(2041), 1, - aux_sym_arguments_repeat1, - [66917] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1294), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2033), 1, - sym_text_interpolation, - ACTIONS(1292), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66934] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2034), 1, - sym_text_interpolation, - ACTIONS(4094), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [66949] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1402), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2035), 1, - sym_text_interpolation, - ACTIONS(1400), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66966] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4096), 1, - anon_sym_RPAREN, - STATE(2036), 1, - sym_text_interpolation, - STATE(2039), 1, - aux_sym__list_destructing_repeat1, - [66985] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2037), 1, - sym_text_interpolation, - ACTIONS(4098), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [67000] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4100), 1, - anon_sym_RPAREN, - STATE(2038), 1, - sym_text_interpolation, - STATE(2039), 1, - aux_sym__list_destructing_repeat1, - [67019] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1586), 1, - anon_sym_RPAREN, - ACTIONS(4102), 1, - anon_sym_COMMA, - STATE(2039), 2, - sym_text_interpolation, - aux_sym__list_destructing_repeat1, - [67036] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(4105), 1, - anon_sym_RPAREN, - STATE(2040), 1, - sym_text_interpolation, - STATE(2399), 1, - sym_variable_name, - [67055] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(775), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4107), 1, - anon_sym_COMMA, - STATE(1998), 1, - aux_sym_arguments_repeat1, - STATE(2041), 1, - sym_text_interpolation, - [67074] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1106), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2042), 1, - sym_text_interpolation, - ACTIONS(1104), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67091] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1122), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2043), 1, - sym_text_interpolation, - ACTIONS(1120), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67108] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(799), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4109), 1, - anon_sym_COMMA, - STATE(1998), 1, - aux_sym_arguments_repeat1, - STATE(2044), 1, - sym_text_interpolation, - [67127] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3160), 1, - anon_sym_RPAREN, - ACTIONS(4111), 1, - anon_sym_COMMA, - STATE(2045), 2, - sym_text_interpolation, - aux_sym_unset_statement_repeat1, - [67144] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3779), 1, - anon_sym_EQ, - STATE(2046), 1, - sym_text_interpolation, - ACTIONS(4114), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [67161] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4116), 1, - anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_RPAREN, - STATE(2044), 1, - aux_sym_arguments_repeat1, - STATE(2047), 1, - sym_text_interpolation, - [67180] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - ACTIONS(4120), 1, - anon_sym_LBRACE, - STATE(1843), 1, - aux_sym_base_clause_repeat1, - STATE(2048), 1, - sym_text_interpolation, - [67199] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1130), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2049), 1, - sym_text_interpolation, - ACTIONS(1128), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67216] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2050), 1, - sym_text_interpolation, - ACTIONS(3993), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [67231] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4124), 1, - anon_sym_EQ, - STATE(2051), 1, - sym_text_interpolation, - ACTIONS(4122), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67248] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1134), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2052), 1, - sym_text_interpolation, - ACTIONS(1132), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67265] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1142), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2053), 1, - sym_text_interpolation, - ACTIONS(1140), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67282] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_DOLLAR, - STATE(1662), 1, - sym_variable_name, - STATE(1851), 1, - sym_property_element, - STATE(2054), 1, - sym_text_interpolation, - [67301] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1142), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2055), 1, - sym_text_interpolation, - ACTIONS(1140), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67318] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1154), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2056), 1, - sym_text_interpolation, - ACTIONS(1152), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67335] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1402), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2057), 1, - sym_text_interpolation, - ACTIONS(1400), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67352] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1162), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2058), 1, - sym_text_interpolation, - ACTIONS(1160), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67369] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1162), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2059), 1, - sym_text_interpolation, - ACTIONS(1160), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67386] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3993), 1, - anon_sym_RBRACK, - ACTIONS(4126), 1, - anon_sym_COMMA, - STATE(2060), 2, - sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [67403] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1166), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2061), 1, - sym_text_interpolation, - ACTIONS(1164), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67420] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1174), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2062), 1, - sym_text_interpolation, - ACTIONS(1172), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67437] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4129), 1, - anon_sym_COMMA, - ACTIONS(4131), 1, - anon_sym_RPAREN, - STATE(1876), 1, - aux_sym_anonymous_function_use_clause_repeat1, - STATE(2063), 1, - sym_text_interpolation, - [67456] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1178), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2064), 1, - sym_text_interpolation, - ACTIONS(1176), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67473] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1346), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2065), 1, - sym_text_interpolation, - ACTIONS(1344), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67490] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4133), 1, - anon_sym_COMMA, - ACTIONS(4136), 1, - anon_sym_RBRACK, - STATE(2066), 2, - sym_text_interpolation, - aux_sym_attribute_group_repeat1, - [67507] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4140), 1, - anon_sym_EQ, - STATE(2067), 1, - sym_text_interpolation, - ACTIONS(4138), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67524] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - ACTIONS(4142), 1, - anon_sym_DOT_DOT_DOT, - STATE(1888), 1, - sym_variable_name, - STATE(2068), 1, - sym_text_interpolation, - [67543] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(789), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4144), 1, - anon_sym_COMMA, - STATE(1998), 1, - aux_sym_arguments_repeat1, - STATE(2069), 1, - sym_text_interpolation, - [67562] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4148), 1, - anon_sym_EQ, - STATE(2070), 1, - sym_text_interpolation, - ACTIONS(4146), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67579] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4150), 1, - anon_sym_COMMA, - ACTIONS(4152), 1, - anon_sym_RPAREN, - STATE(2069), 1, - aux_sym_arguments_repeat1, - STATE(2071), 1, - sym_text_interpolation, - [67598] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1182), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2072), 1, - sym_text_interpolation, - ACTIONS(1180), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67615] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4154), 1, - anon_sym_COMMA, - ACTIONS(4156), 1, - anon_sym_RPAREN, - STATE(2073), 1, - sym_text_interpolation, - STATE(2078), 1, - aux_sym_arguments_repeat1, - [67634] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1414), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2074), 1, - sym_text_interpolation, - ACTIONS(1412), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67651] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1418), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2075), 1, - sym_text_interpolation, - ACTIONS(1416), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67668] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1378), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2076), 1, - sym_text_interpolation, - ACTIONS(1376), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67685] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1378), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2077), 1, - sym_text_interpolation, - ACTIONS(1376), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67702] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(773), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COMMA, - STATE(1998), 1, - aux_sym_arguments_repeat1, - STATE(2078), 1, - sym_text_interpolation, - [67721] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4162), 1, - anon_sym_EQ, - STATE(2079), 1, - sym_text_interpolation, - ACTIONS(4160), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67738] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4164), 1, - anon_sym_COMMA, - ACTIONS(4167), 1, - anon_sym_RPAREN, - STATE(2080), 2, - sym_text_interpolation, - aux_sym_formal_parameters_repeat1, - [67755] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1194), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2081), 1, - sym_text_interpolation, - ACTIONS(1192), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67772] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4171), 1, - anon_sym_EQ, - STATE(2082), 1, - sym_text_interpolation, - ACTIONS(4169), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67789] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1370), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2083), 1, - sym_text_interpolation, - ACTIONS(1368), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67806] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4175), 1, - anon_sym_EQ, - STATE(2084), 1, - sym_text_interpolation, - ACTIONS(4173), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67823] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4001), 1, - anon_sym_COMMA, - ACTIONS(4177), 1, - anon_sym_RBRACE, - STATE(1928), 1, - aux_sym_namespace_use_group_repeat1, - STATE(2085), 1, - sym_text_interpolation, - [67842] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1394), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2086), 1, - sym_text_interpolation, - ACTIONS(1392), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67859] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3898), 1, - anon_sym_LBRACE, - ACTIONS(4013), 1, - sym_name, - STATE(2087), 1, - sym_text_interpolation, - STATE(2326), 1, - sym_namespace_use_group, - [67878] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4179), 1, - anon_sym_COMMA, - ACTIONS(4181), 1, - anon_sym_RPAREN, - STATE(2088), 1, - sym_text_interpolation, - STATE(2091), 1, - aux_sym_arguments_repeat1, - [67897] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1206), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2089), 1, - sym_text_interpolation, - ACTIONS(1204), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67914] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(4183), 1, - anon_sym_EQ_GT, - STATE(2090), 1, - sym_text_interpolation, - STATE(2418), 1, - sym__return_type, - [67933] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(767), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4185), 1, - anon_sym_COMMA, - STATE(1998), 1, - aux_sym_arguments_repeat1, - STATE(2091), 1, - sym_text_interpolation, - [67952] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1206), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2092), 1, - sym_text_interpolation, - ACTIONS(1204), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67969] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(4187), 1, - anon_sym_EQ_GT, - STATE(2093), 1, - sym_text_interpolation, - STATE(2453), 1, - sym__return_type, - [67988] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1234), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2094), 1, - sym_text_interpolation, - ACTIONS(1232), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68005] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1238), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2095), 1, - sym_text_interpolation, - ACTIONS(1236), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68022] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1238), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2096), 1, - sym_text_interpolation, - ACTIONS(1236), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68039] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1262), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2097), 1, - sym_text_interpolation, - ACTIONS(1260), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68056] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1262), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2098), 1, - sym_text_interpolation, - ACTIONS(1260), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68073] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4189), 1, - anon_sym_COMMA, - ACTIONS(4191), 1, - anon_sym_RPAREN, - STATE(2099), 1, - sym_text_interpolation, - STATE(2101), 1, - aux_sym_arguments_repeat1, - [68092] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1306), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2100), 1, - sym_text_interpolation, - ACTIONS(1304), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68109] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(777), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4193), 1, - anon_sym_COMMA, - STATE(1998), 1, - aux_sym_arguments_repeat1, - STATE(2101), 1, - sym_text_interpolation, - [68128] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(4195), 1, - anon_sym_EQ_GT, - STATE(2102), 1, - sym_text_interpolation, - STATE(2469), 1, - sym__return_type, - [68147] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1318), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2103), 1, - sym_text_interpolation, - ACTIONS(1316), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68164] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(781), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4197), 1, - anon_sym_COMMA, - STATE(1998), 1, - aux_sym_arguments_repeat1, - STATE(2104), 1, - sym_text_interpolation, - [68183] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1094), 1, - aux_sym_else_clause_token1, - ACTIONS(1456), 1, - sym_comment, - STATE(2105), 1, - sym_text_interpolation, - ACTIONS(1092), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68200] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1032), 1, - sym_compound_statement, - STATE(2106), 1, - sym_text_interpolation, - [68216] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2107), 1, - sym_text_interpolation, - ACTIONS(3969), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [68230] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2108), 1, - sym_text_interpolation, - ACTIONS(4167), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68244] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_LPAREN, - STATE(658), 1, - sym_arguments, - STATE(2109), 1, - sym_text_interpolation, - [68260] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(441), 1, - sym_declaration_list, - STATE(2110), 1, - sym_text_interpolation, - [68276] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(2111), 1, - sym_text_interpolation, - STATE(2314), 1, - sym_variable_name, - [68292] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4199), 1, - sym_name, - STATE(1757), 1, - sym_namespace_name, - STATE(2112), 1, - sym_text_interpolation, - [68308] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(485), 1, - ts_builtin_sym_end, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4201), 1, - sym_php_tag, - STATE(2113), 1, - sym_text_interpolation, - [68324] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(528), 1, - sym_enum_declaration_list, - STATE(2114), 1, - sym_text_interpolation, - [68340] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2115), 1, - sym_text_interpolation, - ACTIONS(4203), 2, - anon_sym_string, - anon_sym_int, - [68354] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2116), 1, - sym_text_interpolation, - ACTIONS(4205), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68368] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1049), 1, - sym_compound_statement, - STATE(2117), 1, - sym_text_interpolation, - [68384] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2118), 1, - sym_text_interpolation, - ACTIONS(4207), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68398] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1042), 1, - sym_compound_statement, - STATE(2119), 1, - sym_text_interpolation, - [68414] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(2120), 1, - sym_text_interpolation, - ACTIONS(3044), 2, - sym_nowdoc_string, - anon_sym_, - [68428] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2121), 1, - sym_text_interpolation, - ACTIONS(4209), 2, - sym__eof, - sym_php_tag, - [68442] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1615), 1, - sym_formal_parameters, - STATE(2122), 1, - sym_text_interpolation, - [68458] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_LPAREN, - STATE(851), 1, - sym_arguments, - STATE(2123), 1, - sym_text_interpolation, - [68474] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2124), 1, - sym_text_interpolation, - ACTIONS(4015), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [68488] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2125), 1, - sym_text_interpolation, - ACTIONS(2349), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68502] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1044), 1, - sym_compound_statement, - STATE(2126), 1, - sym_text_interpolation, - [68518] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_declaration_list, - STATE(2127), 1, - sym_text_interpolation, - [68534] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1105), 1, - sym_declaration_list, - STATE(2128), 1, - sym_text_interpolation, - [68550] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_LPAREN, - STATE(746), 1, - sym_arguments, - STATE(2129), 1, - sym_text_interpolation, - [68566] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1977), 1, - sym_formal_parameters, - STATE(2130), 1, - sym_text_interpolation, - [68582] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(1915), 1, - sym_variable_name, - STATE(2131), 1, - sym_text_interpolation, - [68598] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4211), 1, - sym_name, - STATE(2132), 1, - sym_text_interpolation, - STATE(2480), 1, - sym_namespace_name, - [68614] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2133), 1, - sym_text_interpolation, - ACTIONS(2471), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68628] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2134), 1, - sym_text_interpolation, - ACTIONS(4214), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68642] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4211), 1, - sym_name, - STATE(2135), 1, - sym_text_interpolation, - STATE(2500), 1, - sym_namespace_name, - [68658] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_BSLASH, - STATE(2136), 1, - sym_text_interpolation, - STATE(2257), 1, - aux_sym_namespace_name_repeat1, - [68674] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4211), 1, - sym_name, - STATE(2137), 1, - sym_text_interpolation, - STATE(2495), 1, - sym_namespace_name, - [68690] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2138), 1, - sym_text_interpolation, - ACTIONS(4216), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68704] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(1679), 1, - sym_compound_statement, - STATE(2139), 1, - sym_text_interpolation, - [68720] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(2140), 1, - sym_text_interpolation, - STATE(2319), 1, - sym_variable_name, - [68736] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4218), 1, - anon_sym_LPAREN, - STATE(16), 1, - sym_parenthesized_expression, - STATE(2141), 1, - sym_text_interpolation, - [68752] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4218), 1, - anon_sym_LPAREN, - STATE(46), 1, - sym_parenthesized_expression, - STATE(2142), 1, - sym_text_interpolation, - [68768] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(2143), 1, - sym_text_interpolation, - STATE(2320), 1, - sym_variable_name, - [68784] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2144), 1, - sym_text_interpolation, - ACTIONS(4136), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [68798] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2145), 1, - sym_text_interpolation, - ACTIONS(4220), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68812] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4222), 1, - anon_sym_LPAREN, - STATE(2146), 1, - sym_text_interpolation, - STATE(2260), 1, - sym_parenthesized_expression, - [68828] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(2147), 1, - sym_text_interpolation, - STATE(2340), 1, - sym_variable_name, - [68844] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4222), 1, - anon_sym_LPAREN, - STATE(1913), 1, - sym_parenthesized_expression, - STATE(2148), 1, - sym_text_interpolation, - [68860] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2149), 1, - sym_text_interpolation, - ACTIONS(4224), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68874] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2150), 1, - sym_text_interpolation, - ACTIONS(4226), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [68888] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2151), 1, - sym_text_interpolation, - ACTIONS(4229), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68902] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(473), 1, - sym_enum_declaration_list, - STATE(2152), 1, - sym_text_interpolation, - [68918] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(776), 1, - sym_arguments, - STATE(2153), 1, - sym_text_interpolation, - [68934] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2154), 1, - sym_text_interpolation, - ACTIONS(4231), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68948] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2155), 1, - sym_text_interpolation, - ACTIONS(4233), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68962] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(214), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(538), 1, - sym_compound_statement, - STATE(2156), 1, - sym_text_interpolation, - [68978] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2157), 1, - sym_text_interpolation, - ACTIONS(3779), 2, - anon_sym_EQ, - anon_sym_RPAREN, - [68992] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2158), 1, - sym_text_interpolation, - ACTIONS(4235), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69006] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2159), 1, - sym_text_interpolation, - ACTIONS(3999), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69020] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2160), 1, - sym_text_interpolation, - ACTIONS(4237), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69034] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_RPAREN, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2161), 1, - sym_text_interpolation, - [69050] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2162), 1, - sym_text_interpolation, - ACTIONS(1586), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69064] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(503), 1, - anon_sym_COLON, - ACTIONS(1456), 1, - sym_comment, - STATE(1883), 1, - sym_colon_block, - STATE(2163), 1, - sym_text_interpolation, - [69080] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1103), 1, - sym_declaration_list, - STATE(2164), 1, - sym_text_interpolation, - [69096] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2165), 1, - sym_text_interpolation, - ACTIONS(459), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69110] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2166), 1, - sym_text_interpolation, - ACTIONS(4241), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69124] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2455), 1, - anon_sym_RPAREN, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2167), 1, - sym_text_interpolation, - [69140] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4243), 1, - sym_name, - STATE(2168), 1, - sym_text_interpolation, - STATE(2413), 1, - sym_namespace_name, - [69156] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2169), 1, - sym_text_interpolation, - ACTIONS(4246), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69170] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_SEMI, - ACTIONS(4250), 1, - sym__automatic_semicolon, - STATE(2170), 1, - sym_text_interpolation, - [69186] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(361), 1, - anon_sym_COLON, - ACTIONS(1456), 1, - sym_comment, - STATE(2171), 1, - sym_text_interpolation, - STATE(2513), 1, - sym_colon_block, - [69202] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2172), 1, - sym_text_interpolation, - ACTIONS(2415), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69216] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2173), 1, - sym_text_interpolation, - ACTIONS(4252), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69230] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1024), 1, - sym_declaration_list, - STATE(2174), 1, - sym_text_interpolation, - [69246] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2175), 1, - sym_text_interpolation, - ACTIONS(4254), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [69260] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1090), 1, - sym_compound_statement, - STATE(2176), 1, - sym_text_interpolation, - [69276] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2647), 1, - anon_sym_RPAREN, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2177), 1, - sym_text_interpolation, - [69292] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4211), 1, - sym_name, - STATE(2178), 1, - sym_text_interpolation, - STATE(2408), 1, - sym_namespace_name, - [69308] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2179), 1, - sym_text_interpolation, - ACTIONS(3335), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69322] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1875), 1, - sym_formal_parameters, - STATE(2180), 1, - sym_text_interpolation, - [69338] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1025), 1, - sym_declaration_list, - STATE(2181), 1, - sym_text_interpolation, - [69354] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(1638), 1, - sym_compound_statement, - STATE(2182), 1, - sym_text_interpolation, - [69370] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2183), 1, - sym_text_interpolation, - ACTIONS(471), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69384] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4218), 1, - anon_sym_LPAREN, - STATE(64), 1, - sym_parenthesized_expression, - STATE(2184), 1, - sym_text_interpolation, - [69400] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4222), 1, - anon_sym_LPAREN, - STATE(2185), 1, - sym_text_interpolation, - STATE(2270), 1, - sym_parenthesized_expression, - [69416] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4222), 1, - anon_sym_LPAREN, - STATE(1901), 1, - sym_parenthesized_expression, - STATE(2186), 1, - sym_text_interpolation, - [69432] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2673), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(4256), 1, - aux_sym_namespace_use_declaration_token2, - STATE(2187), 1, - sym_text_interpolation, - [69448] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4258), 1, - anon_sym_LBRACE, - STATE(434), 1, - sym_compound_statement, - STATE(2188), 1, - sym_text_interpolation, - [69464] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2189), 1, - sym_text_interpolation, - ACTIONS(4260), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69478] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4218), 1, - anon_sym_LPAREN, - STATE(67), 1, - sym_parenthesized_expression, - STATE(2190), 1, - sym_text_interpolation, - [69494] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2191), 1, - sym_text_interpolation, - ACTIONS(4262), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69508] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2192), 1, - sym_text_interpolation, - ACTIONS(4264), 2, - anon_sym_SEMI, - anon_sym_COLON, - [69522] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4218), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym_parenthesized_expression, - STATE(2193), 1, - sym_text_interpolation, - [69538] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2194), 1, - sym_text_interpolation, - ACTIONS(4114), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [69552] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(519), 1, - sym_declaration_list, - STATE(2195), 1, - sym_text_interpolation, - [69568] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2196), 1, - sym_text_interpolation, - ACTIONS(4266), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69582] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2197), 1, - sym_text_interpolation, - ACTIONS(3980), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69596] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2198), 1, - sym_text_interpolation, - ACTIONS(4268), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [69610] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2199), 1, - sym_text_interpolation, - ACTIONS(3082), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [69624] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1873), 1, - sym_formal_parameters, - STATE(2200), 1, - sym_text_interpolation, - [69640] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4218), 1, - anon_sym_LPAREN, - STATE(74), 1, - sym_parenthesized_expression, - STATE(2201), 1, - sym_text_interpolation, - [69656] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4218), 1, - anon_sym_LPAREN, - STATE(72), 1, - sym_parenthesized_expression, - STATE(2202), 1, - sym_text_interpolation, - [69672] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2203), 1, - sym_text_interpolation, - ACTIONS(3333), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69686] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2204), 1, - sym_text_interpolation, - ACTIONS(4058), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69700] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2205), 1, - sym_text_interpolation, - ACTIONS(4270), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69714] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4272), 1, - anon_sym_LPAREN, - ACTIONS(4274), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym_text_interpolation, - [69730] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4222), 1, - anon_sym_LPAREN, - STATE(2163), 1, - sym_parenthesized_expression, - STATE(2207), 1, - sym_text_interpolation, - [69746] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1581), 1, - sym_formal_parameters, - STATE(2208), 1, - sym_text_interpolation, - [69762] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(444), 1, - sym_declaration_list, - STATE(2209), 1, - sym_text_interpolation, - [69778] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2210), 1, - sym_text_interpolation, - ACTIONS(4276), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69792] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2211), 1, - sym_text_interpolation, - ACTIONS(4278), 2, - anon_sym_string, - anon_sym_int, - [69806] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2212), 1, - sym_text_interpolation, - ACTIONS(4280), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69820] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4218), 1, - anon_sym_LPAREN, - STATE(79), 1, - sym_parenthesized_expression, - STATE(2213), 1, - sym_text_interpolation, - [69836] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2214), 1, - sym_text_interpolation, - ACTIONS(4282), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69850] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2215), 1, - sym_text_interpolation, - ACTIONS(2349), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69864] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2216), 1, - sym_text_interpolation, - ACTIONS(4284), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69878] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2217), 1, - sym_text_interpolation, - ACTIONS(4286), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [69892] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_LPAREN, - STATE(2218), 1, - sym_text_interpolation, - STATE(2334), 1, - sym_parenthesized_expression, - [69908] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_declaration_list, - STATE(2219), 1, - sym_text_interpolation, - [69924] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1048), 1, - sym_compound_statement, - STATE(2220), 1, - sym_text_interpolation, - [69940] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2221), 1, - sym_text_interpolation, - ACTIONS(4290), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69954] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2222), 1, - sym_text_interpolation, - ACTIONS(4292), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69968] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2223), 1, - sym_text_interpolation, - ACTIONS(2319), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69982] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(1945), 1, - sym_compound_statement, - STATE(2224), 1, - sym_text_interpolation, - [69998] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1051), 1, - sym_compound_statement, - STATE(2225), 1, - sym_text_interpolation, - [70014] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2226), 1, - sym_text_interpolation, - ACTIONS(4294), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70028] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1054), 1, - sym_compound_statement, - STATE(2227), 1, - sym_text_interpolation, - [70044] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(476), 1, - sym_enum_declaration_list, - STATE(2228), 1, - sym_text_interpolation, - [70060] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(439), 1, - sym_declaration_list, - STATE(2229), 1, - sym_text_interpolation, - [70076] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1106), 1, - sym_compound_statement, - STATE(2230), 1, - sym_text_interpolation, - [70092] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2231), 1, - sym_text_interpolation, - ACTIONS(2319), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70106] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2232), 1, - sym_text_interpolation, - ACTIONS(4296), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70120] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2233), 1, - sym_text_interpolation, - ACTIONS(4298), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70134] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1554), 1, - sym_formal_parameters, - STATE(2234), 1, - sym_text_interpolation, - [70150] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2235), 1, - sym_text_interpolation, - ACTIONS(4300), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70164] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1556), 1, - sym_formal_parameters, - STATE(2236), 1, - sym_text_interpolation, - [70180] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2237), 1, - sym_text_interpolation, - ACTIONS(4302), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [70194] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1107), 1, - sym_compound_statement, - STATE(2238), 1, - sym_text_interpolation, - [70210] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(449), 1, - sym_declaration_list, - STATE(2239), 1, - sym_text_interpolation, - [70226] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4305), 1, - anon_sym_LPAREN, - STATE(1678), 1, - sym_formal_parameters, - STATE(2240), 1, - sym_text_interpolation, - [70242] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2241), 1, - sym_text_interpolation, - ACTIONS(4307), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70256] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(445), 1, - sym_declaration_list, - STATE(2242), 1, - sym_text_interpolation, - [70272] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2243), 1, - sym_text_interpolation, - ACTIONS(495), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70286] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1570), 1, - sym_formal_parameters, - STATE(2244), 1, - sym_text_interpolation, - [70302] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2245), 1, - sym_text_interpolation, - ACTIONS(4309), 2, - anon_sym_string, - anon_sym_int, - [70316] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(898), 1, - sym_compound_statement, - STATE(2246), 1, - sym_text_interpolation, - [70332] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2247), 1, - sym_text_interpolation, - ACTIONS(523), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70346] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(1664), 1, - sym_compound_statement, - STATE(2248), 1, - sym_text_interpolation, - [70362] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2249), 1, - sym_text_interpolation, - ACTIONS(4311), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70376] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1672), 1, - sym_declaration_list, - STATE(2250), 1, - sym_text_interpolation, - [70392] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3463), 1, - anon_sym_LBRACE, - STATE(2072), 1, - sym_enum_declaration_list, - STATE(2251), 1, - sym_text_interpolation, - [70408] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1112), 1, - sym_compound_statement, - STATE(2252), 1, - sym_text_interpolation, - [70424] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - STATE(1955), 1, - sym_declaration_list, - STATE(2253), 1, - sym_text_interpolation, - [70440] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2254), 1, - sym_text_interpolation, - ACTIONS(2457), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70454] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(894), 1, - sym_compound_statement, - STATE(2255), 1, - sym_text_interpolation, - [70470] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2453), 1, - anon_sym_RPAREN, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2256), 1, - sym_text_interpolation, - [70486] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4313), 1, - anon_sym_BSLASH, - STATE(1628), 1, - aux_sym_namespace_name_repeat1, - STATE(2257), 1, - sym_text_interpolation, - [70502] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(893), 1, - sym_compound_statement, - STATE(2258), 1, - sym_text_interpolation, - [70518] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(903), 1, - sym_compound_statement, - STATE(2259), 1, - sym_text_interpolation, - [70534] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(1114), 1, - sym_match_block, - STATE(2260), 1, - sym_text_interpolation, - [70550] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2261), 1, - sym_text_interpolation, - ACTIONS(4318), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70564] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(214), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(498), 1, - sym_compound_statement, - STATE(2262), 1, - sym_text_interpolation, - [70580] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1549), 1, - sym_formal_parameters, - STATE(2263), 1, - sym_text_interpolation, - [70596] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1101), 1, - sym_compound_statement, - STATE(2264), 1, - sym_text_interpolation, - [70612] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2265), 1, - sym_text_interpolation, - ACTIONS(4029), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [70626] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - STATE(952), 1, - sym_declaration_list, - STATE(2266), 1, - sym_text_interpolation, - [70642] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2267), 1, - sym_text_interpolation, - ACTIONS(4320), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70656] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1097), 1, - sym_compound_statement, - STATE(2268), 1, - sym_text_interpolation, - [70672] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2269), 1, - sym_text_interpolation, - ACTIONS(4322), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70686] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4324), 1, - anon_sym_LBRACE, - STATE(901), 1, - sym_match_block, - STATE(2270), 1, - sym_text_interpolation, - [70702] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4326), 1, - anon_sym_SEMI, - ACTIONS(4328), 1, - sym__automatic_semicolon, - STATE(2271), 1, - sym_text_interpolation, - [70718] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2272), 1, - sym_text_interpolation, - ACTIONS(3142), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70732] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_compound_statement, - STATE(2273), 1, - sym_text_interpolation, - [70748] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_LPAREN, - STATE(608), 1, - sym_arguments, - STATE(2274), 1, - sym_text_interpolation, - [70764] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(1706), 1, - sym_compound_statement, - STATE(2275), 1, - sym_text_interpolation, - [70780] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(2145), 1, - sym_variable_name, - STATE(2276), 1, - sym_text_interpolation, - [70796] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2277), 1, - sym_text_interpolation, - ACTIONS(4330), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70810] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2278), 1, - sym_text_interpolation, - ACTIONS(4332), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70824] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(947), 1, - sym_compound_statement, - STATE(2279), 1, - sym_text_interpolation, - [70840] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1715), 1, - sym_declaration_list, - STATE(2280), 1, - sym_text_interpolation, - [70856] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(2118), 1, - sym_variable_name, - STATE(2281), 1, - sym_text_interpolation, - [70872] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1631), 1, - sym_declaration_list, - STATE(2282), 1, - sym_text_interpolation, - [70888] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(891), 1, - sym_compound_statement, - STATE(2283), 1, - sym_text_interpolation, - [70904] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(2082), 1, - sym_variable_name, - STATE(2284), 1, - sym_text_interpolation, - [70920] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(909), 1, - sym_compound_statement, - STATE(2285), 1, - sym_text_interpolation, - [70936] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(2134), 1, - sym_variable_name, - STATE(2286), 1, - sym_text_interpolation, - [70952] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(922), 1, - sym_compound_statement, - STATE(2287), 1, - sym_text_interpolation, - [70968] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2288), 1, - sym_text_interpolation, - ACTIONS(4334), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70982] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_LPAREN, - STATE(576), 1, - sym_arguments, - STATE(2289), 1, - sym_text_interpolation, - [70998] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2290), 1, - sym_text_interpolation, - ACTIONS(3696), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71012] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1703), 1, - sym_declaration_list, - STATE(2291), 1, - sym_text_interpolation, - [71028] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - STATE(945), 1, - sym_declaration_list, - STATE(2292), 1, - sym_text_interpolation, - [71044] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - STATE(940), 1, - sym_declaration_list, - STATE(2293), 1, - sym_text_interpolation, - [71060] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2294), 1, - sym_text_interpolation, - ACTIONS(4336), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71074] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2295), 1, - sym_text_interpolation, - ACTIONS(3721), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [71088] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4340), 1, - sym__automatic_semicolon, - STATE(2296), 1, - sym_text_interpolation, - [71104] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2297), 1, - sym_text_interpolation, - ACTIONS(4342), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71118] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2298), 1, - sym_text_interpolation, - ACTIONS(4344), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71132] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4211), 1, - sym_name, - STATE(2299), 1, - sym_text_interpolation, - STATE(2414), 1, - sym_namespace_name, - [71148] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2300), 1, - sym_text_interpolation, - ACTIONS(4346), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71162] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2301), 1, - sym_text_interpolation, - ACTIONS(4348), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71176] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3463), 1, - anon_sym_LBRACE, - STATE(2029), 1, - sym_enum_declaration_list, - STATE(2302), 1, - sym_text_interpolation, - [71192] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(932), 1, - sym_compound_statement, - STATE(2303), 1, - sym_text_interpolation, - [71208] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2304), 1, - sym_text_interpolation, - ACTIONS(4350), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71222] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_compound_statement, - STATE(2305), 1, - sym_text_interpolation, - [71238] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(939), 1, - sym_compound_statement, - STATE(2306), 1, - sym_text_interpolation, - [71254] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(951), 1, - sym_compound_statement, - STATE(2307), 1, - sym_text_interpolation, - [71270] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1121), 1, - sym_declaration_list, - STATE(2308), 1, - sym_text_interpolation, - [71286] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1636), 1, - sym_declaration_list, - STATE(2309), 1, - sym_text_interpolation, - [71302] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(2093), 1, - sym_formal_parameters, - STATE(2310), 1, - sym_text_interpolation, - [71318] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3463), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym_enum_declaration_list, - STATE(2311), 1, - sym_text_interpolation, - [71334] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(889), 1, - sym_compound_statement, - STATE(2312), 1, - sym_text_interpolation, - [71350] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1632), 1, - sym_declaration_list, - STATE(2313), 1, - sym_text_interpolation, - [71366] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2314), 1, - sym_text_interpolation, - ACTIONS(4352), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71380] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2315), 1, - sym_text_interpolation, - ACTIONS(3854), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [71394] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4354), 1, - anon_sym_SEMI, - ACTIONS(4356), 1, - sym__automatic_semicolon, - STATE(2316), 1, - sym_text_interpolation, - [71410] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(2288), 1, - sym_variable_name, - STATE(2317), 1, - sym_text_interpolation, - [71426] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(2102), 1, - sym_formal_parameters, - STATE(2318), 1, - sym_text_interpolation, - [71442] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2319), 1, - sym_text_interpolation, - ACTIONS(4358), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71456] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2320), 1, - sym_text_interpolation, - ACTIONS(4360), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71470] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2321), 1, - sym_text_interpolation, - ACTIONS(2443), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71484] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - STATE(931), 1, - sym_declaration_list, - STATE(2322), 1, - sym_text_interpolation, - [71500] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4258), 1, - anon_sym_LBRACE, - STATE(429), 1, - sym_compound_statement, - STATE(2323), 1, - sym_text_interpolation, - [71516] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - STATE(899), 1, - sym_declaration_list, - STATE(2324), 1, - sym_text_interpolation, - [71532] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOLLAR, - STATE(2205), 1, - sym_variable_name, - STATE(2325), 1, - sym_text_interpolation, - [71548] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2326), 1, - sym_text_interpolation, - ACTIONS(4362), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71562] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(1970), 1, - sym_compound_statement, - STATE(2327), 1, - sym_text_interpolation, - [71578] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4305), 1, - anon_sym_LPAREN, - STATE(1649), 1, - sym_formal_parameters, - STATE(2328), 1, - sym_text_interpolation, - [71594] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(906), 1, - sym_compound_statement, - STATE(2329), 1, - sym_text_interpolation, - [71610] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1962), 1, - sym_formal_parameters, - STATE(2330), 1, - sym_text_interpolation, - [71626] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2331), 1, - sym_text_interpolation, - ACTIONS(4364), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71640] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2332), 1, - sym_text_interpolation, - ACTIONS(4366), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71654] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4218), 1, - anon_sym_LPAREN, - STATE(78), 1, - sym_parenthesized_expression, - STATE(2333), 1, - sym_text_interpolation, - [71670] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2334), 1, - sym_text_interpolation, - ACTIONS(4368), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71684] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2335), 1, - sym_text_interpolation, - ACTIONS(4370), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71698] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - STATE(1982), 1, - sym_declaration_list, - STATE(2336), 1, - sym_text_interpolation, - [71714] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2337), 1, - sym_text_interpolation, - ACTIONS(1580), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71728] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2338), 1, - sym_text_interpolation, - ACTIONS(3913), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71742] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2339), 1, - sym_text_interpolation, - ACTIONS(4372), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71756] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2340), 1, - sym_text_interpolation, - ACTIONS(4374), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71770] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1625), 1, - sym_declaration_list, - STATE(2341), 1, - sym_text_interpolation, - [71786] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2342), 1, - sym_text_interpolation, - ACTIONS(4376), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [71800] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2673), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(4378), 1, - aux_sym_namespace_use_declaration_token2, - STATE(2343), 1, - sym_text_interpolation, - [71816] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4218), 1, - anon_sym_LPAREN, - STATE(18), 1, - sym_parenthesized_expression, - STATE(2344), 1, - sym_text_interpolation, - [71832] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3251), 1, - anon_sym_LBRACE, - STATE(1027), 1, - sym_compound_statement, - STATE(2345), 1, - sym_text_interpolation, - [71848] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3463), 1, - anon_sym_LBRACE, - STATE(1988), 1, - sym_enum_declaration_list, - STATE(2346), 1, - sym_text_interpolation, - [71864] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1701), 1, - sym_declaration_list, - STATE(2347), 1, - sym_text_interpolation, - [71880] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1584), 1, - sym_formal_parameters, - STATE(2348), 1, - sym_text_interpolation, - [71896] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(1098), 1, - sym_declaration_list, - STATE(2349), 1, - sym_text_interpolation, - [71912] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(944), 1, - sym_compound_statement, - STATE(2350), 1, - sym_text_interpolation, - [71928] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(540), 1, - sym_declaration_list, - STATE(2351), 1, - sym_text_interpolation, - [71944] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2352), 1, - sym_text_interpolation, - ACTIONS(4380), 2, - anon_sym_string, - anon_sym_int, - [71958] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(526), 1, - sym_enum_declaration_list, - STATE(2353), 1, - sym_text_interpolation, - [71974] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(900), 1, - sym_compound_statement, - STATE(2354), 1, - sym_text_interpolation, - [71990] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - STATE(2355), 1, - sym_text_interpolation, - ACTIONS(3795), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72004] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(921), 1, - sym_compound_statement, - STATE(2356), 1, - sym_text_interpolation, - [72020] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(446), 1, - sym_declaration_list, - STATE(2357), 1, - sym_text_interpolation, - [72036] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - sym_comment, - STATE(1637), 1, - sym_compound_statement, - STATE(2358), 1, - sym_text_interpolation, - [72052] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1586), 1, - sym_formal_parameters, - STATE(2359), 1, - sym_text_interpolation, - [72068] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2431), 1, - anon_sym_RPAREN, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2360), 1, - sym_text_interpolation, - [72084] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_LPAREN, - STATE(2216), 1, - sym_parenthesized_expression, - STATE(2361), 1, - sym_text_interpolation, - [72100] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3182), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_declaration_list, - STATE(2362), 1, - sym_text_interpolation, - [72116] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4258), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_compound_statement, - STATE(2363), 1, - sym_text_interpolation, - [72132] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4382), 1, - aux_sym_while_statement_token2, - STATE(2364), 1, - sym_text_interpolation, - [72145] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4384), 1, - anon_sym_RPAREN, - STATE(2365), 1, - sym_text_interpolation, - [72158] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4386), 1, - anon_sym_LPAREN, - STATE(2366), 1, - sym_text_interpolation, - [72171] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4388), 1, - anon_sym_RPAREN, - STATE(2367), 1, - sym_text_interpolation, - [72184] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4390), 1, - anon_sym_EQ, - STATE(2368), 1, - sym_text_interpolation, - [72197] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(855), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - STATE(2369), 1, - sym_text_interpolation, - [72210] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4392), 1, - anon_sym_RPAREN, - STATE(2370), 1, - sym_text_interpolation, - [72223] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2431), 1, - anon_sym_RPAREN, - STATE(2371), 1, - sym_text_interpolation, - [72236] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3858), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_text_interpolation, - [72249] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4394), 1, - sym_name, - STATE(2373), 1, - sym_text_interpolation, - [72262] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(853), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - STATE(2374), 1, - sym_text_interpolation, - [72275] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3921), 1, - anon_sym_RBRACK, - STATE(2375), 1, - sym_text_interpolation, - [72288] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4396), 1, - anon_sym_RPAREN, - STATE(2376), 1, - sym_text_interpolation, - [72301] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4398), 1, - anon_sym_SEMI, - STATE(2377), 1, - sym_text_interpolation, - [72314] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4400), 1, - anon_sym_EQ_GT, - STATE(2378), 1, - sym_text_interpolation, - [72327] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3845), 1, - anon_sym_RPAREN, - STATE(2379), 1, - sym_text_interpolation, - [72340] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4402), 1, - anon_sym_EQ, - STATE(2380), 1, - sym_text_interpolation, - [72353] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3862), 1, - anon_sym_RPAREN, - STATE(2381), 1, - sym_text_interpolation, - [72366] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4404), 1, - anon_sym_RPAREN, - STATE(2382), 1, - sym_text_interpolation, - [72379] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3956), 1, - anon_sym_RBRACK, - STATE(2383), 1, - sym_text_interpolation, - [72392] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4406), 1, - anon_sym_EQ, - STATE(2384), 1, - sym_text_interpolation, - [72405] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4408), 1, - anon_sym_RPAREN, - STATE(2385), 1, - sym_text_interpolation, - [72418] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4410), 1, - anon_sym_COLON_COLON, - STATE(2386), 1, - sym_text_interpolation, - [72431] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4412), 1, - anon_sym_EQ, - STATE(2387), 1, - sym_text_interpolation, - [72444] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_EQ_GT, - STATE(2388), 1, - sym_text_interpolation, - [72457] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4416), 1, - anon_sym_LPAREN, - STATE(2389), 1, - sym_text_interpolation, - [72470] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2189), 1, - anon_sym_STAR_STAR, - STATE(2390), 1, - sym_text_interpolation, - [72483] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4239), 1, - anon_sym_EQ, - STATE(2391), 1, - sym_text_interpolation, - [72496] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4418), 1, - sym_name, - STATE(2392), 1, - sym_text_interpolation, - [72509] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3925), 1, - anon_sym_RBRACE, - STATE(2393), 1, - sym_text_interpolation, - [72522] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3876), 1, - anon_sym_RPAREN, - STATE(2394), 1, - sym_text_interpolation, - [72535] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4420), 1, - sym_name, - STATE(2395), 1, - sym_text_interpolation, - [72548] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4422), 1, - anon_sym_SQUOTE2, - STATE(2396), 1, - sym_text_interpolation, - [72561] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4424), 1, - anon_sym_DQUOTE2, - STATE(2397), 1, - sym_text_interpolation, - [72574] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3934), 1, - anon_sym_RPAREN, - STATE(2398), 1, - sym_text_interpolation, - [72587] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4426), 1, - anon_sym_RPAREN, - STATE(2399), 1, - sym_text_interpolation, - [72600] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_RBRACK, - STATE(2400), 1, - sym_text_interpolation, - [72613] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(881), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - STATE(2401), 1, - sym_text_interpolation, - [72626] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4430), 1, - sym_name, - STATE(2402), 1, - sym_text_interpolation, - [72639] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3886), 1, - anon_sym_RPAREN, - STATE(2403), 1, - sym_text_interpolation, - [72652] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4432), 1, - sym_heredoc_end, - STATE(2404), 1, - sym_text_interpolation, - [72665] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4434), 1, - anon_sym_EQ, - STATE(2405), 1, - sym_text_interpolation, - [72678] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4436), 1, - anon_sym_SQUOTE, - STATE(2406), 1, - sym_text_interpolation, - [72691] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4438), 1, - sym_name, - STATE(2407), 1, - sym_text_interpolation, - [72704] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4440), 1, - anon_sym_BSLASH, - STATE(2408), 1, - sym_text_interpolation, - [72717] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4442), 1, - anon_sym_BSLASH, - STATE(2409), 1, - sym_text_interpolation, - [72730] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4444), 1, - sym_name, - STATE(2410), 1, - sym_text_interpolation, - [72743] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4446), 1, - sym_name, - STATE(2411), 1, - sym_text_interpolation, - [72756] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4013), 1, - sym_name, - STATE(2412), 1, - sym_text_interpolation, - [72769] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4448), 1, - anon_sym_BSLASH, - STATE(2413), 1, - sym_text_interpolation, - [72782] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4450), 1, - anon_sym_BSLASH, - STATE(2414), 1, - sym_text_interpolation, - [72795] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4045), 1, - anon_sym_LBRACE, - STATE(2415), 1, - sym_text_interpolation, - [72808] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4452), 1, - aux_sym_foreach_statement_token2, - STATE(2416), 1, - sym_text_interpolation, - [72821] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4454), 1, - anon_sym_RPAREN, - STATE(2417), 1, - sym_text_interpolation, - [72834] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4456), 1, - anon_sym_EQ_GT, - STATE(2418), 1, - sym_text_interpolation, - [72847] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(863), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - STATE(2419), 1, - sym_text_interpolation, - [72860] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4458), 1, - sym_heredoc_end, - STATE(2420), 1, - sym_text_interpolation, - [72873] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4460), 1, - aux_sym__arrow_function_header_token1, - STATE(2421), 1, - sym_text_interpolation, - [72886] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4462), 1, - aux_sym_class_declaration_token1, - STATE(2422), 1, - sym_text_interpolation, - [72899] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4464), 1, - sym_heredoc_end, - STATE(2423), 1, - sym_text_interpolation, - [72912] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4466), 1, - sym_name, - STATE(2424), 1, - sym_text_interpolation, - [72925] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4468), 1, - sym_name, - STATE(2425), 1, - sym_text_interpolation, - [72938] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4470), 1, - anon_sym_RPAREN, - STATE(2426), 1, - sym_text_interpolation, - [72951] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4472), 1, - sym_heredoc_end, - STATE(2427), 1, - sym_text_interpolation, - [72964] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4474), 1, - sym_heredoc_end, - STATE(2428), 1, - sym_text_interpolation, - [72977] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4476), 1, - sym_name, - STATE(2429), 1, - sym_text_interpolation, - [72990] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3896), 1, - sym_name, - STATE(2430), 1, - sym_text_interpolation, - [73003] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4478), 1, - aux_sym_if_statement_token2, - STATE(2431), 1, - sym_text_interpolation, - [73016] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4480), 1, - sym_name, - STATE(2432), 1, - sym_text_interpolation, - [73029] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4482), 1, - anon_sym_RPAREN, - STATE(2433), 1, - sym_text_interpolation, - [73042] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2305), 1, - anon_sym_STAR_STAR, - STATE(2434), 1, - sym_text_interpolation, - [73055] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4484), 1, - sym_heredoc_start, - STATE(2435), 1, - sym_text_interpolation, - [73068] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4486), 1, - sym_heredoc_start, - STATE(2436), 1, - sym_text_interpolation, - [73081] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2453), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_text_interpolation, - [73094] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4488), 1, - anon_sym_SQUOTE, - STATE(2438), 1, - sym_text_interpolation, - [73107] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4490), 1, - sym_name, - STATE(2439), 1, - sym_text_interpolation, - [73120] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4492), 1, - anon_sym_EQ_GT, - STATE(2440), 1, - sym_text_interpolation, - [73133] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4494), 1, - anon_sym_EQ, - STATE(2441), 1, - sym_text_interpolation, - [73146] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_COLON_COLON, - STATE(2442), 1, - sym_text_interpolation, - [73159] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4498), 1, - anon_sym_RPAREN, - STATE(2443), 1, - sym_text_interpolation, - [73172] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(849), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - STATE(2444), 1, - sym_text_interpolation, - [73185] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_EQ, - STATE(2445), 1, - sym_text_interpolation, - [73198] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4502), 1, - aux_sym_if_statement_token2, - STATE(2446), 1, - sym_text_interpolation, - [73211] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3536), 1, - sym_name, - STATE(2447), 1, - sym_text_interpolation, - [73224] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4504), 1, - anon_sym_EQ_GT, - STATE(2448), 1, - sym_text_interpolation, - [73237] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4506), 1, - anon_sym_COLON_COLON, - STATE(2449), 1, - sym_text_interpolation, - [73250] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2263), 1, - anon_sym_STAR_STAR, - STATE(2450), 1, - sym_text_interpolation, - [73263] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4508), 1, - anon_sym_RPAREN, - STATE(2451), 1, - sym_text_interpolation, - [73276] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4510), 1, - sym_name, - STATE(2452), 1, - sym_text_interpolation, - [73289] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4512), 1, - anon_sym_EQ_GT, - STATE(2453), 1, - sym_text_interpolation, - [73302] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4514), 1, - aux_sym_class_declaration_token1, - STATE(2454), 1, - sym_text_interpolation, - [73315] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4516), 1, - sym_name, - STATE(2455), 1, - sym_text_interpolation, - [73328] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_EQ_GT, - STATE(2456), 1, - sym_text_interpolation, - [73341] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4520), 1, - anon_sym_DQUOTE2, - STATE(2457), 1, - sym_text_interpolation, - [73354] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4522), 1, - anon_sym_SQUOTE2, - STATE(2458), 1, - sym_text_interpolation, - [73367] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4524), 1, - anon_sym_RPAREN, - STATE(2459), 1, - sym_text_interpolation, - [73380] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4526), 1, - aux_sym_while_statement_token1, - STATE(2460), 1, - sym_text_interpolation, - [73393] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4528), 1, - anon_sym_RPAREN, - STATE(2461), 1, - sym_text_interpolation, - [73406] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_LBRACE, - STATE(2462), 1, - sym_text_interpolation, - [73419] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4530), 1, - anon_sym_EQ_GT, - STATE(2463), 1, - sym_text_interpolation, - [73432] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4532), 1, - aux_sym_while_statement_token2, - STATE(2464), 1, - sym_text_interpolation, - [73445] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4534), 1, - anon_sym_RPAREN, - STATE(2465), 1, - sym_text_interpolation, - [73458] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_SEMI, - ACTIONS(1456), 1, - sym_comment, - STATE(2466), 1, - sym_text_interpolation, - [73471] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4536), 1, - anon_sym_EQ_GT, - STATE(2467), 1, - sym_text_interpolation, - [73484] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4538), 1, - anon_sym_RPAREN, - STATE(2468), 1, - sym_text_interpolation, - [73497] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4540), 1, - anon_sym_EQ_GT, - STATE(2469), 1, - sym_text_interpolation, - [73510] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4274), 1, - anon_sym_RPAREN, - STATE(2470), 1, - sym_text_interpolation, - [73523] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4542), 1, - sym_name, - STATE(2471), 1, - sym_text_interpolation, - [73536] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4544), 1, - sym_name, - STATE(2472), 1, - sym_text_interpolation, - [73549] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4546), 1, - sym_name, - STATE(2473), 1, - sym_text_interpolation, - [73562] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4548), 1, - anon_sym_RBRACK, - STATE(2474), 1, - sym_text_interpolation, - [73575] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4550), 1, - aux_sym_if_statement_token2, - STATE(2475), 1, - sym_text_interpolation, - [73588] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4552), 1, - aux_sym_class_declaration_token1, - STATE(2476), 1, - sym_text_interpolation, - [73601] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4070), 1, - anon_sym_RBRACE, - STATE(2477), 1, - sym_text_interpolation, - [73614] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4554), 1, - anon_sym_EQ_GT, - STATE(2478), 1, - sym_text_interpolation, - [73627] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4556), 1, - anon_sym_EQ_GT, - STATE(2479), 1, - sym_text_interpolation, - [73640] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3483), 1, - anon_sym_BSLASH, - STATE(2480), 1, - sym_text_interpolation, - [73653] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4558), 1, - sym_name, - STATE(2481), 1, - sym_text_interpolation, - [73666] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4560), 1, - anon_sym_COLON_COLON, - STATE(2482), 1, - sym_text_interpolation, - [73679] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4562), 1, - aux_sym_class_declaration_token1, - STATE(2483), 1, - sym_text_interpolation, - [73692] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4564), 1, - aux_sym_namespace_use_declaration_token3, - STATE(2484), 1, - sym_text_interpolation, - [73705] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4566), 1, - anon_sym_BSLASH, - STATE(2485), 1, - sym_text_interpolation, - [73718] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4568), 1, - anon_sym_COLON_COLON, - STATE(2486), 1, - sym_text_interpolation, - [73731] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4570), 1, - anon_sym_EQ, - STATE(2487), 1, - sym_text_interpolation, - [73744] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4572), 1, - sym_string_value, - STATE(2488), 1, - sym_text_interpolation, - [73757] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4574), 1, - aux_sym_while_statement_token1, - STATE(2489), 1, - sym_text_interpolation, - [73770] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4576), 1, - sym_heredoc_start, - STATE(2490), 1, - sym_text_interpolation, - [73783] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4578), 1, - sym_heredoc_start, - STATE(2491), 1, - sym_text_interpolation, - [73796] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4580), 1, - anon_sym_RPAREN, - STATE(2492), 1, - sym_text_interpolation, - [73809] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4582), 1, - aux_sym_class_declaration_token1, - STATE(2493), 1, - sym_text_interpolation, - [73822] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4584), 1, - anon_sym_BSLASH, - STATE(2494), 1, - sym_text_interpolation, - [73835] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4586), 1, - anon_sym_BSLASH, - STATE(2495), 1, - sym_text_interpolation, - [73848] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4588), 1, - anon_sym_RPAREN, - STATE(2496), 1, - sym_text_interpolation, - [73861] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4590), 1, - sym_name, - STATE(2497), 1, - sym_text_interpolation, - [73874] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4272), 1, - anon_sym_LPAREN, - STATE(2498), 1, - sym_text_interpolation, - [73887] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4592), 1, - anon_sym_BSLASH, - STATE(2499), 1, - sym_text_interpolation, - [73900] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4594), 1, - anon_sym_BSLASH, - STATE(2500), 1, - sym_text_interpolation, - [73913] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4596), 1, - anon_sym_RPAREN, - STATE(2501), 1, - sym_text_interpolation, - [73926] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4598), 1, - aux_sym_foreach_statement_token2, - STATE(2502), 1, - sym_text_interpolation, - [73939] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(869), 1, - anon_sym_SEMI, - ACTIONS(1456), 1, - sym_comment, - STATE(2503), 1, - sym_text_interpolation, - [73952] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4600), 1, - sym_name, - STATE(2504), 1, - sym_text_interpolation, - [73965] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4602), 1, - sym_name, - STATE(2505), 1, - sym_text_interpolation, - [73978] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2647), 1, - anon_sym_RPAREN, - STATE(2506), 1, - sym_text_interpolation, - [73991] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4604), 1, - sym_name, - STATE(2507), 1, - sym_text_interpolation, - [74004] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(865), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - STATE(2508), 1, - sym_text_interpolation, - [74017] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4606), 1, - sym_name, - STATE(2509), 1, - sym_text_interpolation, - [74030] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4608), 1, - anon_sym_SEMI, - STATE(2510), 1, - sym_text_interpolation, - [74043] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2455), 1, - anon_sym_RPAREN, - STATE(2511), 1, - sym_text_interpolation, - [74056] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4610), 1, - sym_name, - STATE(2512), 1, - sym_text_interpolation, - [74069] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4612), 1, - aux_sym_if_statement_token2, - STATE(2513), 1, - sym_text_interpolation, - [74082] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(845), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - STATE(2514), 1, - sym_text_interpolation, - [74095] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4614), 1, - sym_name, - STATE(2515), 1, - sym_text_interpolation, - [74108] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4616), 1, - anon_sym_RPAREN, - STATE(2516), 1, - sym_text_interpolation, - [74121] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4618), 1, - anon_sym_COLON_COLON, - STATE(2517), 1, - sym_text_interpolation, - [74134] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4092), 1, - anon_sym_RPAREN, - STATE(2518), 1, - sym_text_interpolation, - [74147] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3606), 1, - sym_name, - STATE(2519), 1, - sym_text_interpolation, - [74160] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4620), 1, - anon_sym_COLON_COLON, - STATE(2520), 1, - sym_text_interpolation, - [74173] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_RPAREN, - STATE(2521), 1, - sym_text_interpolation, - [74186] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4622), 1, - anon_sym_SEMI, - STATE(2522), 1, - sym_text_interpolation, - [74199] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - STATE(2523), 1, - sym_text_interpolation, - [74212] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4624), 1, - anon_sym_COLON_COLON, - STATE(2524), 1, - sym_text_interpolation, - [74225] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(887), 1, - anon_sym_RPAREN, - ACTIONS(1456), 1, - sym_comment, - STATE(2525), 1, - sym_text_interpolation, - [74238] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4626), 1, - anon_sym_EQ, - STATE(2526), 1, - sym_text_interpolation, - [74251] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4628), 1, - anon_sym_EQ_GT, - STATE(2527), 1, - sym_text_interpolation, - [74264] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4630), 1, - anon_sym_RBRACK, - STATE(2528), 1, - sym_text_interpolation, - [74277] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4632), 1, - aux_sym_namespace_use_declaration_token3, - STATE(2529), 1, - sym_text_interpolation, - [74290] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4634), 1, - anon_sym_RPAREN, - STATE(2530), 1, - sym_text_interpolation, - [74303] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4636), 1, - aux_sym_namespace_use_declaration_token3, - STATE(2531), 1, - sym_text_interpolation, - [74316] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4638), 1, - aux_sym__arrow_function_header_token1, - STATE(2532), 1, - sym_text_interpolation, - [74329] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4640), 1, - aux_sym_class_declaration_token1, - STATE(2533), 1, - sym_text_interpolation, - [74342] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(871), 1, - anon_sym_SEMI, - ACTIONS(1456), 1, - sym_comment, - STATE(2534), 1, - sym_text_interpolation, - [74355] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4642), 1, - anon_sym_BSLASH, - STATE(2535), 1, - sym_text_interpolation, - [74368] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4644), 1, - sym_name, - STATE(2536), 1, - sym_text_interpolation, - [74381] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4118), 1, - anon_sym_RPAREN, - STATE(2537), 1, - sym_text_interpolation, - [74394] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4646), 1, - anon_sym_SEMI, - STATE(2538), 1, - sym_text_interpolation, - [74407] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4648), 1, - sym_name, - STATE(2539), 1, - sym_text_interpolation, - [74420] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4650), 1, - sym_string_value, - STATE(2540), 1, - sym_text_interpolation, - [74433] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4652), 1, - anon_sym_LPAREN, - STATE(2541), 1, - sym_text_interpolation, - [74446] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4654), 1, - anon_sym_COLON_COLON, - STATE(2542), 1, - sym_text_interpolation, - [74459] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4656), 1, - anon_sym_COLON_COLON, - STATE(2543), 1, - sym_text_interpolation, - [74472] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4658), 1, - anon_sym_RBRACK, - STATE(2544), 1, - sym_text_interpolation, - [74485] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4660), 1, - anon_sym_LPAREN, - STATE(2545), 1, - sym_text_interpolation, - [74498] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4662), 1, - anon_sym_LPAREN, - STATE(2546), 1, - sym_text_interpolation, - [74511] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4664), 1, - sym_integer, - STATE(2547), 1, - sym_text_interpolation, - [74524] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4666), 1, - sym_name, - STATE(2548), 1, - sym_text_interpolation, - [74537] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4668), 1, - anon_sym_RBRACK, - STATE(2549), 1, - sym_text_interpolation, - [74550] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4670), 1, - anon_sym_LPAREN, - STATE(2550), 1, - sym_text_interpolation, - [74563] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4672), 1, - anon_sym_LPAREN, - STATE(2551), 1, - sym_text_interpolation, - [74576] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2552), 1, - sym_text_interpolation, - [74589] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4156), 1, - anon_sym_RPAREN, - STATE(2553), 1, - sym_text_interpolation, - [74602] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4676), 1, - sym_name, - STATE(2554), 1, - sym_text_interpolation, - [74615] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4678), 1, - anon_sym_LPAREN, - STATE(2555), 1, - sym_text_interpolation, - [74628] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4680), 1, - anon_sym_LPAREN, - STATE(2556), 1, - sym_text_interpolation, - [74641] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4682), 1, - sym_name, - STATE(2557), 1, - sym_text_interpolation, - [74654] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4152), 1, - anon_sym_RPAREN, - STATE(2558), 1, - sym_text_interpolation, - [74667] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4684), 1, - sym_heredoc_end, - STATE(2559), 1, - sym_text_interpolation, - [74680] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4686), 1, - sym_name, - STATE(2560), 1, - sym_text_interpolation, - [74693] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4688), 1, - aux_sym_if_statement_token2, - STATE(2561), 1, - sym_text_interpolation, - [74706] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4690), 1, - anon_sym_LPAREN, - STATE(2562), 1, - sym_text_interpolation, - [74719] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4692), 1, - sym_name, - STATE(2563), 1, - sym_text_interpolation, - [74732] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4694), 1, - anon_sym_SEMI, - STATE(2564), 1, - sym_text_interpolation, - [74745] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4696), 1, - anon_sym_COLON_COLON, - STATE(2565), 1, - sym_text_interpolation, - [74758] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(879), 1, - anon_sym_SEMI, - ACTIONS(1456), 1, - sym_comment, - STATE(2566), 1, - sym_text_interpolation, - [74771] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4698), 1, - anon_sym_COLON_COLON, - STATE(2567), 1, - sym_text_interpolation, - [74784] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(3044), 1, - sym_heredoc_end, - STATE(2568), 1, - sym_text_interpolation, - [74797] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4700), 1, - anon_sym_SEMI, - STATE(2569), 1, - sym_text_interpolation, - [74810] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_LPAREN, - STATE(2570), 1, - sym_text_interpolation, - [74823] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - STATE(2571), 1, - sym_text_interpolation, - [74836] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4706), 1, - anon_sym_SEMI, - STATE(2572), 1, - sym_text_interpolation, - [74849] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4181), 1, - anon_sym_RPAREN, - STATE(2573), 1, - sym_text_interpolation, - [74862] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4708), 1, - anon_sym_LPAREN, - STATE(2574), 1, - sym_text_interpolation, - [74875] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4710), 1, - anon_sym_LPAREN, - STATE(2575), 1, - sym_text_interpolation, - [74888] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4191), 1, - anon_sym_RPAREN, - STATE(2576), 1, - sym_text_interpolation, - [74901] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4712), 1, - anon_sym_SEMI, - STATE(2577), 1, - sym_text_interpolation, - [74914] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4714), 1, - anon_sym_COLON_COLON, - STATE(2578), 1, - sym_text_interpolation, - [74927] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4716), 1, - anon_sym_LPAREN, - STATE(2579), 1, - sym_text_interpolation, - [74940] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4718), 1, - ts_builtin_sym_end, - STATE(2580), 1, - sym_text_interpolation, - [74953] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4720), 1, - anon_sym_LPAREN, - STATE(2581), 1, - sym_text_interpolation, - [74966] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4722), 1, - anon_sym_LPAREN, - STATE(2582), 1, - sym_text_interpolation, - [74979] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_STAR_STAR, - STATE(2583), 1, - sym_text_interpolation, - [74992] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4724), 1, - anon_sym_LPAREN, - STATE(2584), 1, - sym_text_interpolation, - [75005] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1456), 1, - sym_comment, - ACTIONS(4726), 1, - anon_sym_LPAREN, - STATE(2585), 1, - sym_text_interpolation, - [75018] = 1, - ACTIONS(4728), 1, - ts_builtin_sym_end, - [75022] = 1, - ACTIONS(4730), 1, - ts_builtin_sym_end, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(559)] = 0, - [SMALL_STATE(560)] = 79, - [SMALL_STATE(561)] = 158, - [SMALL_STATE(562)] = 237, - [SMALL_STATE(563)] = 316, - [SMALL_STATE(564)] = 395, - [SMALL_STATE(565)] = 482, - [SMALL_STATE(566)] = 556, - [SMALL_STATE(567)] = 630, - [SMALL_STATE(568)] = 704, - [SMALL_STATE(569)] = 778, - [SMALL_STATE(570)] = 852, - [SMALL_STATE(571)] = 926, - [SMALL_STATE(572)] = 1000, - [SMALL_STATE(573)] = 1074, - [SMALL_STATE(574)] = 1148, - [SMALL_STATE(575)] = 1222, - [SMALL_STATE(576)] = 1296, - [SMALL_STATE(577)] = 1370, - [SMALL_STATE(578)] = 1444, - [SMALL_STATE(579)] = 1529, - [SMALL_STATE(580)] = 1610, - [SMALL_STATE(581)] = 1695, - [SMALL_STATE(582)] = 1779, - [SMALL_STATE(583)] = 1863, - [SMALL_STATE(584)] = 1946, - [SMALL_STATE(585)] = 2021, - [SMALL_STATE(586)] = 2104, - [SMALL_STATE(587)] = 2183, - [SMALL_STATE(588)] = 2266, - [SMALL_STATE(589)] = 2341, - [SMALL_STATE(590)] = 2430, - [SMALL_STATE(591)] = 2509, - [SMALL_STATE(592)] = 2584, - [SMALL_STATE(593)] = 2659, - [SMALL_STATE(594)] = 2734, - [SMALL_STATE(595)] = 2817, - [SMALL_STATE(596)] = 2887, - [SMALL_STATE(597)] = 2971, - [SMALL_STATE(598)] = 3053, - [SMALL_STATE(599)] = 3123, - [SMALL_STATE(600)] = 3193, - [SMALL_STATE(601)] = 3277, - [SMALL_STATE(602)] = 3347, - [SMALL_STATE(603)] = 3417, - [SMALL_STATE(604)] = 3487, - [SMALL_STATE(605)] = 3565, - [SMALL_STATE(606)] = 3635, - [SMALL_STATE(607)] = 3705, - [SMALL_STATE(608)] = 3775, - [SMALL_STATE(609)] = 3845, - [SMALL_STATE(610)] = 3915, - [SMALL_STATE(611)] = 3985, - [SMALL_STATE(612)] = 4055, - [SMALL_STATE(613)] = 4125, - [SMALL_STATE(614)] = 4195, - [SMALL_STATE(615)] = 4265, - [SMALL_STATE(616)] = 4347, - [SMALL_STATE(617)] = 4425, - [SMALL_STATE(618)] = 4509, - [SMALL_STATE(619)] = 4579, - [SMALL_STATE(620)] = 4656, - [SMALL_STATE(621)] = 4739, - [SMALL_STATE(622)] = 4816, - [SMALL_STATE(623)] = 4899, - [SMALL_STATE(624)] = 4976, - [SMALL_STATE(625)] = 5053, - [SMALL_STATE(626)] = 5131, - [SMALL_STATE(627)] = 5207, - [SMALL_STATE(628)] = 5283, - [SMALL_STATE(629)] = 5361, - [SMALL_STATE(630)] = 5439, - [SMALL_STATE(631)] = 5516, - [SMALL_STATE(632)] = 5581, - [SMALL_STATE(633)] = 5646, - [SMALL_STATE(634)] = 5707, - [SMALL_STATE(635)] = 5772, - [SMALL_STATE(636)] = 5843, - [SMALL_STATE(637)] = 5952, - [SMALL_STATE(638)] = 6017, - [SMALL_STATE(639)] = 6082, - [SMALL_STATE(640)] = 6153, - [SMALL_STATE(641)] = 6222, - [SMALL_STATE(642)] = 6289, - [SMALL_STATE(643)] = 6360, - [SMALL_STATE(644)] = 6431, - [SMALL_STATE(645)] = 6540, - [SMALL_STATE(646)] = 6600, - [SMALL_STATE(647)] = 6710, - [SMALL_STATE(648)] = 6770, - [SMALL_STATE(649)] = 6880, - [SMALL_STATE(650)] = 6940, - [SMALL_STATE(651)] = 7000, - [SMALL_STATE(652)] = 7060, - [SMALL_STATE(653)] = 7120, - [SMALL_STATE(654)] = 7180, - [SMALL_STATE(655)] = 7240, - [SMALL_STATE(656)] = 7304, - [SMALL_STATE(657)] = 7364, - [SMALL_STATE(658)] = 7424, - [SMALL_STATE(659)] = 7484, - [SMALL_STATE(660)] = 7544, - [SMALL_STATE(661)] = 7604, - [SMALL_STATE(662)] = 7664, - [SMALL_STATE(663)] = 7724, - [SMALL_STATE(664)] = 7784, - [SMALL_STATE(665)] = 7844, - [SMALL_STATE(666)] = 7904, - [SMALL_STATE(667)] = 7967, - [SMALL_STATE(668)] = 8028, - [SMALL_STATE(669)] = 8135, - [SMALL_STATE(670)] = 8200, - [SMALL_STATE(671)] = 8265, - [SMALL_STATE(672)] = 8326, - [SMALL_STATE(673)] = 8387, - [SMALL_STATE(674)] = 8448, - [SMALL_STATE(675)] = 8549, - [SMALL_STATE(676)] = 8614, - [SMALL_STATE(677)] = 8717, - [SMALL_STATE(678)] = 8778, - [SMALL_STATE(679)] = 8841, - [SMALL_STATE(680)] = 8948, - [SMALL_STATE(681)] = 9011, - [SMALL_STATE(682)] = 9076, - [SMALL_STATE(683)] = 9139, - [SMALL_STATE(684)] = 9202, - [SMALL_STATE(685)] = 9265, - [SMALL_STATE(686)] = 9330, - [SMALL_STATE(687)] = 9437, - [SMALL_STATE(688)] = 9502, - [SMALL_STATE(689)] = 9563, - [SMALL_STATE(690)] = 9628, - [SMALL_STATE(691)] = 9691, - [SMALL_STATE(692)] = 9756, - [SMALL_STATE(693)] = 9819, - [SMALL_STATE(694)] = 9882, - [SMALL_STATE(695)] = 9989, - [SMALL_STATE(696)] = 10054, - [SMALL_STATE(697)] = 10117, - [SMALL_STATE(698)] = 10182, - [SMALL_STATE(699)] = 10285, - [SMALL_STATE(700)] = 10350, - [SMALL_STATE(701)] = 10413, - [SMALL_STATE(702)] = 10476, - [SMALL_STATE(703)] = 10539, - [SMALL_STATE(704)] = 10604, - [SMALL_STATE(705)] = 10662, - [SMALL_STATE(706)] = 10720, - [SMALL_STATE(707)] = 10778, - [SMALL_STATE(708)] = 10836, - [SMALL_STATE(709)] = 10894, - [SMALL_STATE(710)] = 10952, - [SMALL_STATE(711)] = 11010, - [SMALL_STATE(712)] = 11068, - [SMALL_STATE(713)] = 11126, - [SMALL_STATE(714)] = 11186, - [SMALL_STATE(715)] = 11244, - [SMALL_STATE(716)] = 11302, - [SMALL_STATE(717)] = 11406, - [SMALL_STATE(718)] = 11464, - [SMALL_STATE(719)] = 11522, - [SMALL_STATE(720)] = 11580, - [SMALL_STATE(721)] = 11638, - [SMALL_STATE(722)] = 11696, - [SMALL_STATE(723)] = 11754, - [SMALL_STATE(724)] = 11812, - [SMALL_STATE(725)] = 11870, - [SMALL_STATE(726)] = 11928, - [SMALL_STATE(727)] = 11986, - [SMALL_STATE(728)] = 12044, - [SMALL_STATE(729)] = 12102, - [SMALL_STATE(730)] = 12162, - [SMALL_STATE(731)] = 12220, - [SMALL_STATE(732)] = 12278, - [SMALL_STATE(733)] = 12336, - [SMALL_STATE(734)] = 12440, - [SMALL_STATE(735)] = 12498, - [SMALL_STATE(736)] = 12602, - [SMALL_STATE(737)] = 12660, - [SMALL_STATE(738)] = 12718, - [SMALL_STATE(739)] = 12776, - [SMALL_STATE(740)] = 12834, - [SMALL_STATE(741)] = 12892, - [SMALL_STATE(742)] = 12950, - [SMALL_STATE(743)] = 13008, - [SMALL_STATE(744)] = 13066, - [SMALL_STATE(745)] = 13124, - [SMALL_STATE(746)] = 13228, - [SMALL_STATE(747)] = 13286, - [SMALL_STATE(748)] = 13344, - [SMALL_STATE(749)] = 13448, - [SMALL_STATE(750)] = 13515, - [SMALL_STATE(751)] = 13576, - [SMALL_STATE(752)] = 13637, - [SMALL_STATE(753)] = 13698, - [SMALL_STATE(754)] = 13765, - [SMALL_STATE(755)] = 13822, - [SMALL_STATE(756)] = 13883, - [SMALL_STATE(757)] = 13946, - [SMALL_STATE(758)] = 14007, - [SMALL_STATE(759)] = 14108, - [SMALL_STATE(760)] = 14169, - [SMALL_STATE(761)] = 14236, - [SMALL_STATE(762)] = 14303, - [SMALL_STATE(763)] = 14362, - [SMALL_STATE(764)] = 14421, - [SMALL_STATE(765)] = 14486, - [SMALL_STATE(766)] = 14543, - [SMALL_STATE(767)] = 14602, - [SMALL_STATE(768)] = 14661, - [SMALL_STATE(769)] = 14720, - [SMALL_STATE(770)] = 14776, - [SMALL_STATE(771)] = 14832, - [SMALL_STATE(772)] = 14888, - [SMALL_STATE(773)] = 14944, - [SMALL_STATE(774)] = 15000, - [SMALL_STATE(775)] = 15056, - [SMALL_STATE(776)] = 15112, - [SMALL_STATE(777)] = 15168, - [SMALL_STATE(778)] = 15236, - [SMALL_STATE(779)] = 15292, - [SMALL_STATE(780)] = 15348, - [SMALL_STATE(781)] = 15404, - [SMALL_STATE(782)] = 15460, - [SMALL_STATE(783)] = 15516, - [SMALL_STATE(784)] = 15572, - [SMALL_STATE(785)] = 15628, - [SMALL_STATE(786)] = 15684, - [SMALL_STATE(787)] = 15740, - [SMALL_STATE(788)] = 15796, - [SMALL_STATE(789)] = 15864, - [SMALL_STATE(790)] = 15932, - [SMALL_STATE(791)] = 16027, - [SMALL_STATE(792)] = 16086, - [SMALL_STATE(793)] = 16145, - [SMALL_STATE(794)] = 16204, - [SMALL_STATE(795)] = 16299, - [SMALL_STATE(796)] = 16358, - [SMALL_STATE(797)] = 16413, - [SMALL_STATE(798)] = 16472, - [SMALL_STATE(799)] = 16529, - [SMALL_STATE(800)] = 16624, - [SMALL_STATE(801)] = 16685, - [SMALL_STATE(802)] = 16744, - [SMALL_STATE(803)] = 16839, - [SMALL_STATE(804)] = 16934, - [SMALL_STATE(805)] = 16989, - [SMALL_STATE(806)] = 17050, - [SMALL_STATE(807)] = 17109, - [SMALL_STATE(808)] = 17168, - [SMALL_STATE(809)] = 17225, - [SMALL_STATE(810)] = 17286, - [SMALL_STATE(811)] = 17347, - [SMALL_STATE(812)] = 17442, - [SMALL_STATE(813)] = 17499, - [SMALL_STATE(814)] = 17558, - [SMALL_STATE(815)] = 17615, - [SMALL_STATE(816)] = 17670, - [SMALL_STATE(817)] = 17729, - [SMALL_STATE(818)] = 17824, - [SMALL_STATE(819)] = 17885, - [SMALL_STATE(820)] = 17980, - [SMALL_STATE(821)] = 18037, - [SMALL_STATE(822)] = 18098, - [SMALL_STATE(823)] = 18159, - [SMALL_STATE(824)] = 18220, - [SMALL_STATE(825)] = 18315, - [SMALL_STATE(826)] = 18372, - [SMALL_STATE(827)] = 18467, - [SMALL_STATE(828)] = 18522, - [SMALL_STATE(829)] = 18581, - [SMALL_STATE(830)] = 18640, - [SMALL_STATE(831)] = 18701, - [SMALL_STATE(832)] = 18796, - [SMALL_STATE(833)] = 18891, - [SMALL_STATE(834)] = 18948, - [SMALL_STATE(835)] = 19009, - [SMALL_STATE(836)] = 19104, - [SMALL_STATE(837)] = 19165, - [SMALL_STATE(838)] = 19260, - [SMALL_STATE(839)] = 19355, - [SMALL_STATE(840)] = 19416, - [SMALL_STATE(841)] = 19475, - [SMALL_STATE(842)] = 19529, - [SMALL_STATE(843)] = 19583, - [SMALL_STATE(844)] = 19637, - [SMALL_STATE(845)] = 19691, - [SMALL_STATE(846)] = 19747, - [SMALL_STATE(847)] = 19801, - [SMALL_STATE(848)] = 19859, - [SMALL_STATE(849)] = 19913, - [SMALL_STATE(850)] = 19967, - [SMALL_STATE(851)] = 20021, - [SMALL_STATE(852)] = 20075, - [SMALL_STATE(853)] = 20129, - [SMALL_STATE(854)] = 20183, - [SMALL_STATE(855)] = 20237, - [SMALL_STATE(856)] = 20291, - [SMALL_STATE(857)] = 20345, - [SMALL_STATE(858)] = 20399, - [SMALL_STATE(859)] = 20453, - [SMALL_STATE(860)] = 20507, - [SMALL_STATE(861)] = 20561, - [SMALL_STATE(862)] = 20615, - [SMALL_STATE(863)] = 20669, - [SMALL_STATE(864)] = 20723, - [SMALL_STATE(865)] = 20777, - [SMALL_STATE(866)] = 20833, - [SMALL_STATE(867)] = 20889, - [SMALL_STATE(868)] = 20943, - [SMALL_STATE(869)] = 20997, - [SMALL_STATE(870)] = 21051, - [SMALL_STATE(871)] = 21105, - [SMALL_STATE(872)] = 21159, - [SMALL_STATE(873)] = 21213, - [SMALL_STATE(874)] = 21267, - [SMALL_STATE(875)] = 21321, - [SMALL_STATE(876)] = 21375, - [SMALL_STATE(877)] = 21429, - [SMALL_STATE(878)] = 21483, - [SMALL_STATE(879)] = 21537, - [SMALL_STATE(880)] = 21591, - [SMALL_STATE(881)] = 21645, - [SMALL_STATE(882)] = 21699, - [SMALL_STATE(883)] = 21753, - [SMALL_STATE(884)] = 21808, - [SMALL_STATE(885)] = 21863, - [SMALL_STATE(886)] = 21918, - [SMALL_STATE(887)] = 21973, - [SMALL_STATE(888)] = 22028, - [SMALL_STATE(889)] = 22080, - [SMALL_STATE(890)] = 22132, - [SMALL_STATE(891)] = 22184, - [SMALL_STATE(892)] = 22236, - [SMALL_STATE(893)] = 22288, - [SMALL_STATE(894)] = 22340, - [SMALL_STATE(895)] = 22392, - [SMALL_STATE(896)] = 22444, - [SMALL_STATE(897)] = 22496, - [SMALL_STATE(898)] = 22548, - [SMALL_STATE(899)] = 22600, - [SMALL_STATE(900)] = 22652, - [SMALL_STATE(901)] = 22704, - [SMALL_STATE(902)] = 22756, - [SMALL_STATE(903)] = 22808, - [SMALL_STATE(904)] = 22860, - [SMALL_STATE(905)] = 22912, - [SMALL_STATE(906)] = 22964, - [SMALL_STATE(907)] = 23016, - [SMALL_STATE(908)] = 23068, - [SMALL_STATE(909)] = 23120, - [SMALL_STATE(910)] = 23172, - [SMALL_STATE(911)] = 23224, - [SMALL_STATE(912)] = 23276, - [SMALL_STATE(913)] = 23330, - [SMALL_STATE(914)] = 23382, - [SMALL_STATE(915)] = 23434, - [SMALL_STATE(916)] = 23486, - [SMALL_STATE(917)] = 23538, - [SMALL_STATE(918)] = 23590, - [SMALL_STATE(919)] = 23642, - [SMALL_STATE(920)] = 23694, - [SMALL_STATE(921)] = 23746, - [SMALL_STATE(922)] = 23798, - [SMALL_STATE(923)] = 23850, - [SMALL_STATE(924)] = 23902, - [SMALL_STATE(925)] = 23954, - [SMALL_STATE(926)] = 24006, - [SMALL_STATE(927)] = 24058, - [SMALL_STATE(928)] = 24110, - [SMALL_STATE(929)] = 24162, - [SMALL_STATE(930)] = 24214, - [SMALL_STATE(931)] = 24266, - [SMALL_STATE(932)] = 24318, - [SMALL_STATE(933)] = 24370, - [SMALL_STATE(934)] = 24422, - [SMALL_STATE(935)] = 24474, - [SMALL_STATE(936)] = 24526, - [SMALL_STATE(937)] = 24578, - [SMALL_STATE(938)] = 24630, - [SMALL_STATE(939)] = 24682, - [SMALL_STATE(940)] = 24734, - [SMALL_STATE(941)] = 24786, - [SMALL_STATE(942)] = 24838, - [SMALL_STATE(943)] = 24890, - [SMALL_STATE(944)] = 24942, - [SMALL_STATE(945)] = 24994, - [SMALL_STATE(946)] = 25046, - [SMALL_STATE(947)] = 25098, - [SMALL_STATE(948)] = 25150, - [SMALL_STATE(949)] = 25202, - [SMALL_STATE(950)] = 25254, - [SMALL_STATE(951)] = 25306, - [SMALL_STATE(952)] = 25358, - [SMALL_STATE(953)] = 25410, - [SMALL_STATE(954)] = 25461, - [SMALL_STATE(955)] = 25512, - [SMALL_STATE(956)] = 25598, - [SMALL_STATE(957)] = 25680, - [SMALL_STATE(958)] = 25766, - [SMALL_STATE(959)] = 25846, - [SMALL_STATE(960)] = 25932, - [SMALL_STATE(961)] = 26018, - [SMALL_STATE(962)] = 26104, - [SMALL_STATE(963)] = 26184, - [SMALL_STATE(964)] = 26272, - [SMALL_STATE(965)] = 26358, - [SMALL_STATE(966)] = 26412, - [SMALL_STATE(967)] = 26464, - [SMALL_STATE(968)] = 26536, - [SMALL_STATE(969)] = 26604, - [SMALL_STATE(970)] = 26684, - [SMALL_STATE(971)] = 26742, - [SMALL_STATE(972)] = 26822, - [SMALL_STATE(973)] = 26902, - [SMALL_STATE(974)] = 26976, - [SMALL_STATE(975)] = 27032, - [SMALL_STATE(976)] = 27118, - [SMALL_STATE(977)] = 27178, - [SMALL_STATE(978)] = 27264, - [SMALL_STATE(979)] = 27328, - [SMALL_STATE(980)] = 27398, - [SMALL_STATE(981)] = 27450, - [SMALL_STATE(982)] = 27536, - [SMALL_STATE(983)] = 27588, - [SMALL_STATE(984)] = 27664, - [SMALL_STATE(985)] = 27750, - [SMALL_STATE(986)] = 27830, - [SMALL_STATE(987)] = 27914, - [SMALL_STATE(988)] = 27994, - [SMALL_STATE(989)] = 28073, - [SMALL_STATE(990)] = 28124, - [SMALL_STATE(991)] = 28209, - [SMALL_STATE(992)] = 28294, - [SMALL_STATE(993)] = 28379, - [SMALL_STATE(994)] = 28430, - [SMALL_STATE(995)] = 28497, - [SMALL_STATE(996)] = 28568, - [SMALL_STATE(997)] = 28621, - [SMALL_STATE(998)] = 28700, - [SMALL_STATE(999)] = 28779, - [SMALL_STATE(1000)] = 28862, - [SMALL_STATE(1001)] = 28943, - [SMALL_STATE(1002)] = 29018, - [SMALL_STATE(1003)] = 29091, - [SMALL_STATE(1004)] = 29176, - [SMALL_STATE(1005)] = 29261, - [SMALL_STATE(1006)] = 29330, - [SMALL_STATE(1007)] = 29393, - [SMALL_STATE(1008)] = 29452, - [SMALL_STATE(1009)] = 29507, - [SMALL_STATE(1010)] = 29564, - [SMALL_STATE(1011)] = 29643, - [SMALL_STATE(1012)] = 29728, - [SMALL_STATE(1013)] = 29807, - [SMALL_STATE(1014)] = 29892, - [SMALL_STATE(1015)] = 29977, - [SMALL_STATE(1016)] = 30064, - [SMALL_STATE(1017)] = 30143, - [SMALL_STATE(1018)] = 30222, - [SMALL_STATE(1019)] = 30273, - [SMALL_STATE(1020)] = 30358, - [SMALL_STATE(1021)] = 30443, - [SMALL_STATE(1022)] = 30527, - [SMALL_STATE(1023)] = 30585, - [SMALL_STATE(1024)] = 30633, - [SMALL_STATE(1025)] = 30681, - [SMALL_STATE(1026)] = 30729, - [SMALL_STATE(1027)] = 30777, - [SMALL_STATE(1028)] = 30825, - [SMALL_STATE(1029)] = 30873, - [SMALL_STATE(1030)] = 30921, - [SMALL_STATE(1031)] = 30969, - [SMALL_STATE(1032)] = 31047, - [SMALL_STATE(1033)] = 31095, - [SMALL_STATE(1034)] = 31143, - [SMALL_STATE(1035)] = 31221, - [SMALL_STATE(1036)] = 31269, - [SMALL_STATE(1037)] = 31317, - [SMALL_STATE(1038)] = 31365, - [SMALL_STATE(1039)] = 31413, - [SMALL_STATE(1040)] = 31461, - [SMALL_STATE(1041)] = 31509, - [SMALL_STATE(1042)] = 31557, - [SMALL_STATE(1043)] = 31605, - [SMALL_STATE(1044)] = 31653, - [SMALL_STATE(1045)] = 31701, - [SMALL_STATE(1046)] = 31749, - [SMALL_STATE(1047)] = 31797, - [SMALL_STATE(1048)] = 31845, - [SMALL_STATE(1049)] = 31893, - [SMALL_STATE(1050)] = 31941, - [SMALL_STATE(1051)] = 31989, - [SMALL_STATE(1052)] = 32037, - [SMALL_STATE(1053)] = 32085, - [SMALL_STATE(1054)] = 32133, - [SMALL_STATE(1055)] = 32181, - [SMALL_STATE(1056)] = 32265, - [SMALL_STATE(1057)] = 32313, - [SMALL_STATE(1058)] = 32361, - [SMALL_STATE(1059)] = 32409, - [SMALL_STATE(1060)] = 32457, - [SMALL_STATE(1061)] = 32505, - [SMALL_STATE(1062)] = 32583, - [SMALL_STATE(1063)] = 32667, - [SMALL_STATE(1064)] = 32715, - [SMALL_STATE(1065)] = 32793, - [SMALL_STATE(1066)] = 32871, - [SMALL_STATE(1067)] = 32919, - [SMALL_STATE(1068)] = 32967, - [SMALL_STATE(1069)] = 33015, - [SMALL_STATE(1070)] = 33063, - [SMALL_STATE(1071)] = 33119, - [SMALL_STATE(1072)] = 33173, - [SMALL_STATE(1073)] = 33237, - [SMALL_STATE(1074)] = 33299, - [SMALL_STATE(1075)] = 33367, - [SMALL_STATE(1076)] = 33415, - [SMALL_STATE(1077)] = 33487, - [SMALL_STATE(1078)] = 33573, - [SMALL_STATE(1079)] = 33621, - [SMALL_STATE(1080)] = 33705, - [SMALL_STATE(1081)] = 33789, - [SMALL_STATE(1082)] = 33873, - [SMALL_STATE(1083)] = 33957, - [SMALL_STATE(1084)] = 34031, - [SMALL_STATE(1085)] = 34111, - [SMALL_STATE(1086)] = 34193, - [SMALL_STATE(1087)] = 34271, - [SMALL_STATE(1088)] = 34349, - [SMALL_STATE(1089)] = 34397, - [SMALL_STATE(1090)] = 34481, - [SMALL_STATE(1091)] = 34529, - [SMALL_STATE(1092)] = 34581, - [SMALL_STATE(1093)] = 34651, - [SMALL_STATE(1094)] = 34717, - [SMALL_STATE(1095)] = 34765, - [SMALL_STATE(1096)] = 34813, - [SMALL_STATE(1097)] = 34861, - [SMALL_STATE(1098)] = 34909, - [SMALL_STATE(1099)] = 34957, - [SMALL_STATE(1100)] = 35007, - [SMALL_STATE(1101)] = 35091, - [SMALL_STATE(1102)] = 35139, - [SMALL_STATE(1103)] = 35223, - [SMALL_STATE(1104)] = 35271, - [SMALL_STATE(1105)] = 35319, - [SMALL_STATE(1106)] = 35367, - [SMALL_STATE(1107)] = 35415, - [SMALL_STATE(1108)] = 35463, - [SMALL_STATE(1109)] = 35511, - [SMALL_STATE(1110)] = 35559, - [SMALL_STATE(1111)] = 35607, - [SMALL_STATE(1112)] = 35655, - [SMALL_STATE(1113)] = 35703, - [SMALL_STATE(1114)] = 35753, - [SMALL_STATE(1115)] = 35801, - [SMALL_STATE(1116)] = 35849, - [SMALL_STATE(1117)] = 35899, - [SMALL_STATE(1118)] = 35947, - [SMALL_STATE(1119)] = 35995, - [SMALL_STATE(1120)] = 36043, - [SMALL_STATE(1121)] = 36093, - [SMALL_STATE(1122)] = 36141, - [SMALL_STATE(1123)] = 36224, - [SMALL_STATE(1124)] = 36307, - [SMALL_STATE(1125)] = 36390, - [SMALL_STATE(1126)] = 36467, - [SMALL_STATE(1127)] = 36544, - [SMALL_STATE(1128)] = 36621, - [SMALL_STATE(1129)] = 36698, - [SMALL_STATE(1130)] = 36775, - [SMALL_STATE(1131)] = 36852, - [SMALL_STATE(1132)] = 36907, - [SMALL_STATE(1133)] = 36960, - [SMALL_STATE(1134)] = 37017, - [SMALL_STATE(1135)] = 37078, - [SMALL_STATE(1136)] = 37145, - [SMALL_STATE(1137)] = 37216, - [SMALL_STATE(1138)] = 37281, - [SMALL_STATE(1139)] = 37358, - [SMALL_STATE(1140)] = 37407, - [SMALL_STATE(1141)] = 37476, - [SMALL_STATE(1142)] = 37559, - [SMALL_STATE(1143)] = 37642, - [SMALL_STATE(1144)] = 37723, - [SMALL_STATE(1145)] = 37774, - [SMALL_STATE(1146)] = 37823, - [SMALL_STATE(1147)] = 37902, - [SMALL_STATE(1148)] = 37951, - [SMALL_STATE(1149)] = 38034, - [SMALL_STATE(1150)] = 38117, - [SMALL_STATE(1151)] = 38190, - [SMALL_STATE(1152)] = 38273, - [SMALL_STATE(1153)] = 38358, - [SMALL_STATE(1154)] = 38441, - [SMALL_STATE(1155)] = 38524, - [SMALL_STATE(1156)] = 38600, - [SMALL_STATE(1157)] = 38673, - [SMALL_STATE(1158)] = 38756, - [SMALL_STATE(1159)] = 38839, - [SMALL_STATE(1160)] = 38924, - [SMALL_STATE(1161)] = 39007, - [SMALL_STATE(1162)] = 39098, - [SMALL_STATE(1163)] = 39189, - [SMALL_STATE(1164)] = 39270, - [SMALL_STATE(1165)] = 39351, - [SMALL_STATE(1166)] = 39434, - [SMALL_STATE(1167)] = 39517, - [SMALL_STATE(1168)] = 39608, - [SMALL_STATE(1169)] = 39699, - [SMALL_STATE(1170)] = 39790, - [SMALL_STATE(1171)] = 39881, - [SMALL_STATE(1172)] = 39972, - [SMALL_STATE(1173)] = 40053, - [SMALL_STATE(1174)] = 40142, - [SMALL_STATE(1175)] = 40233, - [SMALL_STATE(1176)] = 40315, - [SMALL_STATE(1177)] = 40395, - [SMALL_STATE(1178)] = 40475, - [SMALL_STATE(1179)] = 40555, - [SMALL_STATE(1180)] = 40635, - [SMALL_STATE(1181)] = 40715, - [SMALL_STATE(1182)] = 40795, - [SMALL_STATE(1183)] = 40875, - [SMALL_STATE(1184)] = 40955, - [SMALL_STATE(1185)] = 41037, - [SMALL_STATE(1186)] = 41117, - [SMALL_STATE(1187)] = 41197, - [SMALL_STATE(1188)] = 41277, - [SMALL_STATE(1189)] = 41357, - [SMALL_STATE(1190)] = 41437, - [SMALL_STATE(1191)] = 41519, - [SMALL_STATE(1192)] = 41599, - [SMALL_STATE(1193)] = 41679, - [SMALL_STATE(1194)] = 41759, - [SMALL_STATE(1195)] = 41839, - [SMALL_STATE(1196)] = 41921, - [SMALL_STATE(1197)] = 42001, - [SMALL_STATE(1198)] = 42051, - [SMALL_STATE(1199)] = 42131, - [SMALL_STATE(1200)] = 42213, - [SMALL_STATE(1201)] = 42295, - [SMALL_STATE(1202)] = 42375, - [SMALL_STATE(1203)] = 42455, - [SMALL_STATE(1204)] = 42535, - [SMALL_STATE(1205)] = 42615, - [SMALL_STATE(1206)] = 42695, - [SMALL_STATE(1207)] = 42775, - [SMALL_STATE(1208)] = 42825, - [SMALL_STATE(1209)] = 42905, - [SMALL_STATE(1210)] = 42985, - [SMALL_STATE(1211)] = 43067, - [SMALL_STATE(1212)] = 43147, - [SMALL_STATE(1213)] = 43229, - [SMALL_STATE(1214)] = 43308, - [SMALL_STATE(1215)] = 43387, - [SMALL_STATE(1216)] = 43466, - [SMALL_STATE(1217)] = 43545, - [SMALL_STATE(1218)] = 43588, - [SMALL_STATE(1219)] = 43667, - [SMALL_STATE(1220)] = 43746, - [SMALL_STATE(1221)] = 43825, - [SMALL_STATE(1222)] = 43904, - [SMALL_STATE(1223)] = 43985, - [SMALL_STATE(1224)] = 44064, - [SMALL_STATE(1225)] = 44143, - [SMALL_STATE(1226)] = 44222, - [SMALL_STATE(1227)] = 44301, - [SMALL_STATE(1228)] = 44380, - [SMALL_STATE(1229)] = 44459, - [SMALL_STATE(1230)] = 44538, - [SMALL_STATE(1231)] = 44617, - [SMALL_STATE(1232)] = 44696, - [SMALL_STATE(1233)] = 44775, - [SMALL_STATE(1234)] = 44854, - [SMALL_STATE(1235)] = 44933, - [SMALL_STATE(1236)] = 45012, - [SMALL_STATE(1237)] = 45091, - [SMALL_STATE(1238)] = 45170, - [SMALL_STATE(1239)] = 45249, - [SMALL_STATE(1240)] = 45328, - [SMALL_STATE(1241)] = 45407, - [SMALL_STATE(1242)] = 45486, - [SMALL_STATE(1243)] = 45565, - [SMALL_STATE(1244)] = 45644, - [SMALL_STATE(1245)] = 45723, - [SMALL_STATE(1246)] = 45802, - [SMALL_STATE(1247)] = 45881, - [SMALL_STATE(1248)] = 45960, - [SMALL_STATE(1249)] = 46039, - [SMALL_STATE(1250)] = 46120, - [SMALL_STATE(1251)] = 46199, - [SMALL_STATE(1252)] = 46278, - [SMALL_STATE(1253)] = 46357, - [SMALL_STATE(1254)] = 46436, - [SMALL_STATE(1255)] = 46515, - [SMALL_STATE(1256)] = 46594, - [SMALL_STATE(1257)] = 46673, - [SMALL_STATE(1258)] = 46752, - [SMALL_STATE(1259)] = 46831, - [SMALL_STATE(1260)] = 46910, - [SMALL_STATE(1261)] = 46989, - [SMALL_STATE(1262)] = 47068, - [SMALL_STATE(1263)] = 47147, - [SMALL_STATE(1264)] = 47226, - [SMALL_STATE(1265)] = 47307, - [SMALL_STATE(1266)] = 47386, - [SMALL_STATE(1267)] = 47465, - [SMALL_STATE(1268)] = 47546, - [SMALL_STATE(1269)] = 47625, - [SMALL_STATE(1270)] = 47704, - [SMALL_STATE(1271)] = 47783, - [SMALL_STATE(1272)] = 47862, - [SMALL_STATE(1273)] = 47941, - [SMALL_STATE(1274)] = 48020, - [SMALL_STATE(1275)] = 48099, - [SMALL_STATE(1276)] = 48166, - [SMALL_STATE(1277)] = 48245, - [SMALL_STATE(1278)] = 48324, - [SMALL_STATE(1279)] = 48403, - [SMALL_STATE(1280)] = 48482, - [SMALL_STATE(1281)] = 48561, - [SMALL_STATE(1282)] = 48640, - [SMALL_STATE(1283)] = 48719, - [SMALL_STATE(1284)] = 48798, - [SMALL_STATE(1285)] = 48877, - [SMALL_STATE(1286)] = 48921, - [SMALL_STATE(1287)] = 48985, - [SMALL_STATE(1288)] = 49027, - [SMALL_STATE(1289)] = 49069, - [SMALL_STATE(1290)] = 49133, - [SMALL_STATE(1291)] = 49174, - [SMALL_STATE(1292)] = 49215, - [SMALL_STATE(1293)] = 49256, - [SMALL_STATE(1294)] = 49297, - [SMALL_STATE(1295)] = 49351, - [SMALL_STATE(1296)] = 49405, - [SMALL_STATE(1297)] = 49459, - [SMALL_STATE(1298)] = 49513, - [SMALL_STATE(1299)] = 49567, - [SMALL_STATE(1300)] = 49621, - [SMALL_STATE(1301)] = 49662, - [SMALL_STATE(1302)] = 49705, - [SMALL_STATE(1303)] = 49740, - [SMALL_STATE(1304)] = 49787, - [SMALL_STATE(1305)] = 49822, - [SMALL_STATE(1306)] = 49869, - [SMALL_STATE(1307)] = 49904, - [SMALL_STATE(1308)] = 49951, - [SMALL_STATE(1309)] = 49986, - [SMALL_STATE(1310)] = 50042, - [SMALL_STATE(1311)] = 50100, - [SMALL_STATE(1312)] = 50134, - [SMALL_STATE(1313)] = 50167, - [SMALL_STATE(1314)] = 50226, - [SMALL_STATE(1315)] = 50281, - [SMALL_STATE(1316)] = 50333, - [SMALL_STATE(1317)] = 50383, - [SMALL_STATE(1318)] = 50435, - [SMALL_STATE(1319)] = 50487, - [SMALL_STATE(1320)] = 50522, - [SMALL_STATE(1321)] = 50555, - [SMALL_STATE(1322)] = 50604, - [SMALL_STATE(1323)] = 50653, - [SMALL_STATE(1324)] = 50697, - [SMALL_STATE(1325)] = 50727, - [SMALL_STATE(1326)] = 50754, - [SMALL_STATE(1327)] = 50799, - [SMALL_STATE(1328)] = 50826, - [SMALL_STATE(1329)] = 50853, - [SMALL_STATE(1330)] = 50880, - [SMALL_STATE(1331)] = 50906, - [SMALL_STATE(1332)] = 50932, - [SMALL_STATE(1333)] = 50958, - [SMALL_STATE(1334)] = 50984, - [SMALL_STATE(1335)] = 51010, - [SMALL_STATE(1336)] = 51056, - [SMALL_STATE(1337)] = 51102, - [SMALL_STATE(1338)] = 51128, - [SMALL_STATE(1339)] = 51166, - [SMALL_STATE(1340)] = 51192, - [SMALL_STATE(1341)] = 51238, - [SMALL_STATE(1342)] = 51264, - [SMALL_STATE(1343)] = 51290, - [SMALL_STATE(1344)] = 51316, - [SMALL_STATE(1345)] = 51362, - [SMALL_STATE(1346)] = 51388, - [SMALL_STATE(1347)] = 51414, - [SMALL_STATE(1348)] = 51458, - [SMALL_STATE(1349)] = 51484, - [SMALL_STATE(1350)] = 51510, - [SMALL_STATE(1351)] = 51536, - [SMALL_STATE(1352)] = 51562, - [SMALL_STATE(1353)] = 51596, - [SMALL_STATE(1354)] = 51622, - [SMALL_STATE(1355)] = 51650, - [SMALL_STATE(1356)] = 51676, - [SMALL_STATE(1357)] = 51721, - [SMALL_STATE(1358)] = 51764, - [SMALL_STATE(1359)] = 51805, - [SMALL_STATE(1360)] = 51830, - [SMALL_STATE(1361)] = 51855, - [SMALL_STATE(1362)] = 51898, - [SMALL_STATE(1363)] = 51923, - [SMALL_STATE(1364)] = 51948, - [SMALL_STATE(1365)] = 51993, - [SMALL_STATE(1366)] = 52018, - [SMALL_STATE(1367)] = 52043, - [SMALL_STATE(1368)] = 52068, - [SMALL_STATE(1369)] = 52093, - [SMALL_STATE(1370)] = 52118, - [SMALL_STATE(1371)] = 52143, - [SMALL_STATE(1372)] = 52168, - [SMALL_STATE(1373)] = 52193, - [SMALL_STATE(1374)] = 52218, - [SMALL_STATE(1375)] = 52243, - [SMALL_STATE(1376)] = 52268, - [SMALL_STATE(1377)] = 52311, - [SMALL_STATE(1378)] = 52336, - [SMALL_STATE(1379)] = 52361, - [SMALL_STATE(1380)] = 52386, - [SMALL_STATE(1381)] = 52411, - [SMALL_STATE(1382)] = 52436, - [SMALL_STATE(1383)] = 52461, - [SMALL_STATE(1384)] = 52486, - [SMALL_STATE(1385)] = 52527, - [SMALL_STATE(1386)] = 52552, - [SMALL_STATE(1387)] = 52577, - [SMALL_STATE(1388)] = 52618, - [SMALL_STATE(1389)] = 52661, - [SMALL_STATE(1390)] = 52701, - [SMALL_STATE(1391)] = 52741, - [SMALL_STATE(1392)] = 52781, - [SMALL_STATE(1393)] = 52821, - [SMALL_STATE(1394)] = 52858, - [SMALL_STATE(1395)] = 52883, - [SMALL_STATE(1396)] = 52920, - [SMALL_STATE(1397)] = 52945, - [SMALL_STATE(1398)] = 52982, - [SMALL_STATE(1399)] = 53019, - [SMALL_STATE(1400)] = 53044, - [SMALL_STATE(1401)] = 53069, - [SMALL_STATE(1402)] = 53094, - [SMALL_STATE(1403)] = 53131, - [SMALL_STATE(1404)] = 53156, - [SMALL_STATE(1405)] = 53181, - [SMALL_STATE(1406)] = 53206, - [SMALL_STATE(1407)] = 53241, - [SMALL_STATE(1408)] = 53266, - [SMALL_STATE(1409)] = 53303, - [SMALL_STATE(1410)] = 53328, - [SMALL_STATE(1411)] = 53363, - [SMALL_STATE(1412)] = 53398, - [SMALL_STATE(1413)] = 53423, - [SMALL_STATE(1414)] = 53455, - [SMALL_STATE(1415)] = 53487, - [SMALL_STATE(1416)] = 53521, - [SMALL_STATE(1417)] = 53553, - [SMALL_STATE(1418)] = 53587, - [SMALL_STATE(1419)] = 53615, - [SMALL_STATE(1420)] = 53645, - [SMALL_STATE(1421)] = 53679, - [SMALL_STATE(1422)] = 53703, - [SMALL_STATE(1423)] = 53731, - [SMALL_STATE(1424)] = 53765, - [SMALL_STATE(1425)] = 53789, - [SMALL_STATE(1426)] = 53817, - [SMALL_STATE(1427)] = 53851, - [SMALL_STATE(1428)] = 53872, - [SMALL_STATE(1429)] = 53903, - [SMALL_STATE(1430)] = 53936, - [SMALL_STATE(1431)] = 53965, - [SMALL_STATE(1432)] = 53994, - [SMALL_STATE(1433)] = 54023, - [SMALL_STATE(1434)] = 54056, - [SMALL_STATE(1435)] = 54085, - [SMALL_STATE(1436)] = 54116, - [SMALL_STATE(1437)] = 54143, - [SMALL_STATE(1438)] = 54174, - [SMALL_STATE(1439)] = 54203, - [SMALL_STATE(1440)] = 54234, - [SMALL_STATE(1441)] = 54265, - [SMALL_STATE(1442)] = 54286, - [SMALL_STATE(1443)] = 54307, - [SMALL_STATE(1444)] = 54332, - [SMALL_STATE(1445)] = 54353, - [SMALL_STATE(1446)] = 54382, - [SMALL_STATE(1447)] = 54411, - [SMALL_STATE(1448)] = 54442, - [SMALL_STATE(1449)] = 54471, - [SMALL_STATE(1450)] = 54492, - [SMALL_STATE(1451)] = 54521, - [SMALL_STATE(1452)] = 54550, - [SMALL_STATE(1453)] = 54577, - [SMALL_STATE(1454)] = 54606, - [SMALL_STATE(1455)] = 54627, - [SMALL_STATE(1456)] = 54658, - [SMALL_STATE(1457)] = 54687, - [SMALL_STATE(1458)] = 54718, - [SMALL_STATE(1459)] = 54745, - [SMALL_STATE(1460)] = 54772, - [SMALL_STATE(1461)] = 54801, - [SMALL_STATE(1462)] = 54830, - [SMALL_STATE(1463)] = 54859, - [SMALL_STATE(1464)] = 54890, - [SMALL_STATE(1465)] = 54919, - [SMALL_STATE(1466)] = 54950, - [SMALL_STATE(1467)] = 54979, - [SMALL_STATE(1468)] = 55006, - [SMALL_STATE(1469)] = 55033, - [SMALL_STATE(1470)] = 55062, - [SMALL_STATE(1471)] = 55091, - [SMALL_STATE(1472)] = 55112, - [SMALL_STATE(1473)] = 55141, - [SMALL_STATE(1474)] = 55170, - [SMALL_STATE(1475)] = 55199, - [SMALL_STATE(1476)] = 55226, - [SMALL_STATE(1477)] = 55257, - [SMALL_STATE(1478)] = 55288, - [SMALL_STATE(1479)] = 55317, - [SMALL_STATE(1480)] = 55346, - [SMALL_STATE(1481)] = 55369, - [SMALL_STATE(1482)] = 55400, - [SMALL_STATE(1483)] = 55429, - [SMALL_STATE(1484)] = 55458, - [SMALL_STATE(1485)] = 55487, - [SMALL_STATE(1486)] = 55516, - [SMALL_STATE(1487)] = 55550, - [SMALL_STATE(1488)] = 55584, - [SMALL_STATE(1489)] = 55618, - [SMALL_STATE(1490)] = 55640, - [SMALL_STATE(1491)] = 55670, - [SMALL_STATE(1492)] = 55704, - [SMALL_STATE(1493)] = 55738, - [SMALL_STATE(1494)] = 55772, - [SMALL_STATE(1495)] = 55804, - [SMALL_STATE(1496)] = 55830, - [SMALL_STATE(1497)] = 55856, - [SMALL_STATE(1498)] = 55882, - [SMALL_STATE(1499)] = 55908, - [SMALL_STATE(1500)] = 55936, - [SMALL_STATE(1501)] = 55957, - [SMALL_STATE(1502)] = 55978, - [SMALL_STATE(1503)] = 56001, - [SMALL_STATE(1504)] = 56022, - [SMALL_STATE(1505)] = 56045, - [SMALL_STATE(1506)] = 56072, - [SMALL_STATE(1507)] = 56099, - [SMALL_STATE(1508)] = 56126, - [SMALL_STATE(1509)] = 56149, - [SMALL_STATE(1510)] = 56172, - [SMALL_STATE(1511)] = 56203, - [SMALL_STATE(1512)] = 56224, - [SMALL_STATE(1513)] = 56247, - [SMALL_STATE(1514)] = 56274, - [SMALL_STATE(1515)] = 56295, - [SMALL_STATE(1516)] = 56316, - [SMALL_STATE(1517)] = 56343, - [SMALL_STATE(1518)] = 56364, - [SMALL_STATE(1519)] = 56387, - [SMALL_STATE(1520)] = 56410, - [SMALL_STATE(1521)] = 56433, - [SMALL_STATE(1522)] = 56456, - [SMALL_STATE(1523)] = 56479, - [SMALL_STATE(1524)] = 56506, - [SMALL_STATE(1525)] = 56529, - [SMALL_STATE(1526)] = 56552, - [SMALL_STATE(1527)] = 56575, - [SMALL_STATE(1528)] = 56596, - [SMALL_STATE(1529)] = 56623, - [SMALL_STATE(1530)] = 56650, - [SMALL_STATE(1531)] = 56671, - [SMALL_STATE(1532)] = 56698, - [SMALL_STATE(1533)] = 56721, - [SMALL_STATE(1534)] = 56744, - [SMALL_STATE(1535)] = 56765, - [SMALL_STATE(1536)] = 56786, - [SMALL_STATE(1537)] = 56807, - [SMALL_STATE(1538)] = 56832, - [SMALL_STATE(1539)] = 56853, - [SMALL_STATE(1540)] = 56872, - [SMALL_STATE(1541)] = 56895, - [SMALL_STATE(1542)] = 56918, - [SMALL_STATE(1543)] = 56941, - [SMALL_STATE(1544)] = 56962, - [SMALL_STATE(1545)] = 56983, - [SMALL_STATE(1546)] = 57011, - [SMALL_STATE(1547)] = 57039, - [SMALL_STATE(1548)] = 57067, - [SMALL_STATE(1549)] = 57095, - [SMALL_STATE(1550)] = 57123, - [SMALL_STATE(1551)] = 57149, - [SMALL_STATE(1552)] = 57177, - [SMALL_STATE(1553)] = 57205, - [SMALL_STATE(1554)] = 57231, - [SMALL_STATE(1555)] = 57259, - [SMALL_STATE(1556)] = 57287, - [SMALL_STATE(1557)] = 57315, - [SMALL_STATE(1558)] = 57341, - [SMALL_STATE(1559)] = 57369, - [SMALL_STATE(1560)] = 57397, - [SMALL_STATE(1561)] = 57417, - [SMALL_STATE(1562)] = 57437, - [SMALL_STATE(1563)] = 57457, - [SMALL_STATE(1564)] = 57485, - [SMALL_STATE(1565)] = 57505, - [SMALL_STATE(1566)] = 57525, - [SMALL_STATE(1567)] = 57543, - [SMALL_STATE(1568)] = 57571, - [SMALL_STATE(1569)] = 57599, - [SMALL_STATE(1570)] = 57617, - [SMALL_STATE(1571)] = 57645, - [SMALL_STATE(1572)] = 57671, - [SMALL_STATE(1573)] = 57699, - [SMALL_STATE(1574)] = 57727, - [SMALL_STATE(1575)] = 57753, - [SMALL_STATE(1576)] = 57777, - [SMALL_STATE(1577)] = 57803, - [SMALL_STATE(1578)] = 57827, - [SMALL_STATE(1579)] = 57855, - [SMALL_STATE(1580)] = 57881, - [SMALL_STATE(1581)] = 57909, - [SMALL_STATE(1582)] = 57937, - [SMALL_STATE(1583)] = 57963, - [SMALL_STATE(1584)] = 57987, - [SMALL_STATE(1585)] = 58015, - [SMALL_STATE(1586)] = 58043, - [SMALL_STATE(1587)] = 58071, - [SMALL_STATE(1588)] = 58097, - [SMALL_STATE(1589)] = 58125, - [SMALL_STATE(1590)] = 58149, - [SMALL_STATE(1591)] = 58177, - [SMALL_STATE(1592)] = 58205, - [SMALL_STATE(1593)] = 58233, - [SMALL_STATE(1594)] = 58255, - [SMALL_STATE(1595)] = 58273, - [SMALL_STATE(1596)] = 58293, - [SMALL_STATE(1597)] = 58317, - [SMALL_STATE(1598)] = 58345, - [SMALL_STATE(1599)] = 58371, - [SMALL_STATE(1600)] = 58397, - [SMALL_STATE(1601)] = 58425, - [SMALL_STATE(1602)] = 58453, - [SMALL_STATE(1603)] = 58473, - [SMALL_STATE(1604)] = 58499, - [SMALL_STATE(1605)] = 58519, - [SMALL_STATE(1606)] = 58539, - [SMALL_STATE(1607)] = 58563, - [SMALL_STATE(1608)] = 58591, - [SMALL_STATE(1609)] = 58617, - [SMALL_STATE(1610)] = 58643, - [SMALL_STATE(1611)] = 58663, - [SMALL_STATE(1612)] = 58681, - [SMALL_STATE(1613)] = 58705, - [SMALL_STATE(1614)] = 58733, - [SMALL_STATE(1615)] = 58761, - [SMALL_STATE(1616)] = 58789, - [SMALL_STATE(1617)] = 58817, - [SMALL_STATE(1618)] = 58838, - [SMALL_STATE(1619)] = 58863, - [SMALL_STATE(1620)] = 58886, - [SMALL_STATE(1621)] = 58907, - [SMALL_STATE(1622)] = 58932, - [SMALL_STATE(1623)] = 58955, - [SMALL_STATE(1624)] = 58978, - [SMALL_STATE(1625)] = 59003, - [SMALL_STATE(1626)] = 59024, - [SMALL_STATE(1627)] = 59043, - [SMALL_STATE(1628)] = 59062, - [SMALL_STATE(1629)] = 59081, - [SMALL_STATE(1630)] = 59102, - [SMALL_STATE(1631)] = 59123, - [SMALL_STATE(1632)] = 59144, - [SMALL_STATE(1633)] = 59165, - [SMALL_STATE(1634)] = 59188, - [SMALL_STATE(1635)] = 59211, - [SMALL_STATE(1636)] = 59234, - [SMALL_STATE(1637)] = 59255, - [SMALL_STATE(1638)] = 59274, - [SMALL_STATE(1639)] = 59297, - [SMALL_STATE(1640)] = 59320, - [SMALL_STATE(1641)] = 59345, - [SMALL_STATE(1642)] = 59366, - [SMALL_STATE(1643)] = 59387, - [SMALL_STATE(1644)] = 59410, - [SMALL_STATE(1645)] = 59429, - [SMALL_STATE(1646)] = 59450, - [SMALL_STATE(1647)] = 59467, - [SMALL_STATE(1648)] = 59488, - [SMALL_STATE(1649)] = 59507, - [SMALL_STATE(1650)] = 59528, - [SMALL_STATE(1651)] = 59547, - [SMALL_STATE(1652)] = 59568, - [SMALL_STATE(1653)] = 59591, - [SMALL_STATE(1654)] = 59612, - [SMALL_STATE(1655)] = 59629, - [SMALL_STATE(1656)] = 59654, - [SMALL_STATE(1657)] = 59679, - [SMALL_STATE(1658)] = 59704, - [SMALL_STATE(1659)] = 59727, - [SMALL_STATE(1660)] = 59750, - [SMALL_STATE(1661)] = 59773, - [SMALL_STATE(1662)] = 59792, - [SMALL_STATE(1663)] = 59813, - [SMALL_STATE(1664)] = 59834, - [SMALL_STATE(1665)] = 59853, - [SMALL_STATE(1666)] = 59876, - [SMALL_STATE(1667)] = 59899, - [SMALL_STATE(1668)] = 59924, - [SMALL_STATE(1669)] = 59947, - [SMALL_STATE(1670)] = 59970, - [SMALL_STATE(1671)] = 59995, - [SMALL_STATE(1672)] = 60014, - [SMALL_STATE(1673)] = 60035, - [SMALL_STATE(1674)] = 60056, - [SMALL_STATE(1675)] = 60077, - [SMALL_STATE(1676)] = 60094, - [SMALL_STATE(1677)] = 60119, - [SMALL_STATE(1678)] = 60144, - [SMALL_STATE(1679)] = 60165, - [SMALL_STATE(1680)] = 60188, - [SMALL_STATE(1681)] = 60205, - [SMALL_STATE(1682)] = 60222, - [SMALL_STATE(1683)] = 60245, - [SMALL_STATE(1684)] = 60262, - [SMALL_STATE(1685)] = 60287, - [SMALL_STATE(1686)] = 60310, - [SMALL_STATE(1687)] = 60333, - [SMALL_STATE(1688)] = 60358, - [SMALL_STATE(1689)] = 60383, - [SMALL_STATE(1690)] = 60408, - [SMALL_STATE(1691)] = 60431, - [SMALL_STATE(1692)] = 60452, - [SMALL_STATE(1693)] = 60475, - [SMALL_STATE(1694)] = 60494, - [SMALL_STATE(1695)] = 60511, - [SMALL_STATE(1696)] = 60536, - [SMALL_STATE(1697)] = 60559, - [SMALL_STATE(1698)] = 60582, - [SMALL_STATE(1699)] = 60607, - [SMALL_STATE(1700)] = 60632, - [SMALL_STATE(1701)] = 60655, - [SMALL_STATE(1702)] = 60676, - [SMALL_STATE(1703)] = 60697, - [SMALL_STATE(1704)] = 60718, - [SMALL_STATE(1705)] = 60739, - [SMALL_STATE(1706)] = 60762, - [SMALL_STATE(1707)] = 60781, - [SMALL_STATE(1708)] = 60804, - [SMALL_STATE(1709)] = 60829, - [SMALL_STATE(1710)] = 60850, - [SMALL_STATE(1711)] = 60873, - [SMALL_STATE(1712)] = 60894, - [SMALL_STATE(1713)] = 60919, - [SMALL_STATE(1714)] = 60940, - [SMALL_STATE(1715)] = 60963, - [SMALL_STATE(1716)] = 60984, - [SMALL_STATE(1717)] = 61007, - [SMALL_STATE(1718)] = 61028, - [SMALL_STATE(1719)] = 61044, - [SMALL_STATE(1720)] = 61062, - [SMALL_STATE(1721)] = 61084, - [SMALL_STATE(1722)] = 61102, - [SMALL_STATE(1723)] = 61124, - [SMALL_STATE(1724)] = 61146, - [SMALL_STATE(1725)] = 61166, - [SMALL_STATE(1726)] = 61184, - [SMALL_STATE(1727)] = 61204, - [SMALL_STATE(1728)] = 61224, - [SMALL_STATE(1729)] = 61246, - [SMALL_STATE(1730)] = 61268, - [SMALL_STATE(1731)] = 61290, - [SMALL_STATE(1732)] = 61310, - [SMALL_STATE(1733)] = 61328, - [SMALL_STATE(1734)] = 61350, - [SMALL_STATE(1735)] = 61368, - [SMALL_STATE(1736)] = 61390, - [SMALL_STATE(1737)] = 61410, - [SMALL_STATE(1738)] = 61430, - [SMALL_STATE(1739)] = 61448, - [SMALL_STATE(1740)] = 61468, - [SMALL_STATE(1741)] = 61486, - [SMALL_STATE(1742)] = 61504, - [SMALL_STATE(1743)] = 61524, - [SMALL_STATE(1744)] = 61544, - [SMALL_STATE(1745)] = 61564, - [SMALL_STATE(1746)] = 61586, - [SMALL_STATE(1747)] = 61604, - [SMALL_STATE(1748)] = 61622, - [SMALL_STATE(1749)] = 61644, - [SMALL_STATE(1750)] = 61664, - [SMALL_STATE(1751)] = 61680, - [SMALL_STATE(1752)] = 61700, - [SMALL_STATE(1753)] = 61722, - [SMALL_STATE(1754)] = 61742, - [SMALL_STATE(1755)] = 61762, - [SMALL_STATE(1756)] = 61784, - [SMALL_STATE(1757)] = 61802, - [SMALL_STATE(1758)] = 61822, - [SMALL_STATE(1759)] = 61838, - [SMALL_STATE(1760)] = 61854, - [SMALL_STATE(1761)] = 61876, - [SMALL_STATE(1762)] = 61898, - [SMALL_STATE(1763)] = 61920, - [SMALL_STATE(1764)] = 61942, - [SMALL_STATE(1765)] = 61964, - [SMALL_STATE(1766)] = 61986, - [SMALL_STATE(1767)] = 62006, - [SMALL_STATE(1768)] = 62028, - [SMALL_STATE(1769)] = 62048, - [SMALL_STATE(1770)] = 62066, - [SMALL_STATE(1771)] = 62088, - [SMALL_STATE(1772)] = 62108, - [SMALL_STATE(1773)] = 62128, - [SMALL_STATE(1774)] = 62144, - [SMALL_STATE(1775)] = 62164, - [SMALL_STATE(1776)] = 62186, - [SMALL_STATE(1777)] = 62206, - [SMALL_STATE(1778)] = 62228, - [SMALL_STATE(1779)] = 62248, - [SMALL_STATE(1780)] = 62270, - [SMALL_STATE(1781)] = 62290, - [SMALL_STATE(1782)] = 62312, - [SMALL_STATE(1783)] = 62334, - [SMALL_STATE(1784)] = 62350, - [SMALL_STATE(1785)] = 62372, - [SMALL_STATE(1786)] = 62394, - [SMALL_STATE(1787)] = 62416, - [SMALL_STATE(1788)] = 62438, - [SMALL_STATE(1789)] = 62460, - [SMALL_STATE(1790)] = 62482, - [SMALL_STATE(1791)] = 62504, - [SMALL_STATE(1792)] = 62524, - [SMALL_STATE(1793)] = 62542, - [SMALL_STATE(1794)] = 62564, - [SMALL_STATE(1795)] = 62582, - [SMALL_STATE(1796)] = 62604, - [SMALL_STATE(1797)] = 62624, - [SMALL_STATE(1798)] = 62640, - [SMALL_STATE(1799)] = 62662, - [SMALL_STATE(1800)] = 62684, - [SMALL_STATE(1801)] = 62700, - [SMALL_STATE(1802)] = 62720, - [SMALL_STATE(1803)] = 62740, - [SMALL_STATE(1804)] = 62756, - [SMALL_STATE(1805)] = 62776, - [SMALL_STATE(1806)] = 62796, - [SMALL_STATE(1807)] = 62816, - [SMALL_STATE(1808)] = 62832, - [SMALL_STATE(1809)] = 62852, - [SMALL_STATE(1810)] = 62874, - [SMALL_STATE(1811)] = 62896, - [SMALL_STATE(1812)] = 62912, - [SMALL_STATE(1813)] = 62928, - [SMALL_STATE(1814)] = 62948, - [SMALL_STATE(1815)] = 62970, - [SMALL_STATE(1816)] = 62992, - [SMALL_STATE(1817)] = 63014, - [SMALL_STATE(1818)] = 63034, - [SMALL_STATE(1819)] = 63054, - [SMALL_STATE(1820)] = 63070, - [SMALL_STATE(1821)] = 63086, - [SMALL_STATE(1822)] = 63106, - [SMALL_STATE(1823)] = 63126, - [SMALL_STATE(1824)] = 63146, - [SMALL_STATE(1825)] = 63162, - [SMALL_STATE(1826)] = 63182, - [SMALL_STATE(1827)] = 63204, - [SMALL_STATE(1828)] = 63226, - [SMALL_STATE(1829)] = 63246, - [SMALL_STATE(1830)] = 63268, - [SMALL_STATE(1831)] = 63288, - [SMALL_STATE(1832)] = 63310, - [SMALL_STATE(1833)] = 63330, - [SMALL_STATE(1834)] = 63352, - [SMALL_STATE(1835)] = 63374, - [SMALL_STATE(1836)] = 63394, - [SMALL_STATE(1837)] = 63414, - [SMALL_STATE(1838)] = 63436, - [SMALL_STATE(1839)] = 63456, - [SMALL_STATE(1840)] = 63478, - [SMALL_STATE(1841)] = 63498, - [SMALL_STATE(1842)] = 63514, - [SMALL_STATE(1843)] = 63536, - [SMALL_STATE(1844)] = 63554, - [SMALL_STATE(1845)] = 63574, - [SMALL_STATE(1846)] = 63596, - [SMALL_STATE(1847)] = 63618, - [SMALL_STATE(1848)] = 63638, - [SMALL_STATE(1849)] = 63660, - [SMALL_STATE(1850)] = 63678, - [SMALL_STATE(1851)] = 63694, - [SMALL_STATE(1852)] = 63714, - [SMALL_STATE(1853)] = 63734, - [SMALL_STATE(1854)] = 63754, - [SMALL_STATE(1855)] = 63774, - [SMALL_STATE(1856)] = 63796, - [SMALL_STATE(1857)] = 63818, - [SMALL_STATE(1858)] = 63838, - [SMALL_STATE(1859)] = 63860, - [SMALL_STATE(1860)] = 63882, - [SMALL_STATE(1861)] = 63902, - [SMALL_STATE(1862)] = 63922, - [SMALL_STATE(1863)] = 63939, - [SMALL_STATE(1864)] = 63958, - [SMALL_STATE(1865)] = 63977, - [SMALL_STATE(1866)] = 63996, - [SMALL_STATE(1867)] = 64015, - [SMALL_STATE(1868)] = 64030, - [SMALL_STATE(1869)] = 64049, - [SMALL_STATE(1870)] = 64066, - [SMALL_STATE(1871)] = 64081, - [SMALL_STATE(1872)] = 64100, - [SMALL_STATE(1873)] = 64119, - [SMALL_STATE(1874)] = 64138, - [SMALL_STATE(1875)] = 64155, - [SMALL_STATE(1876)] = 64174, - [SMALL_STATE(1877)] = 64193, - [SMALL_STATE(1878)] = 64212, - [SMALL_STATE(1879)] = 64231, - [SMALL_STATE(1880)] = 64248, - [SMALL_STATE(1881)] = 64263, - [SMALL_STATE(1882)] = 64282, - [SMALL_STATE(1883)] = 64301, - [SMALL_STATE(1884)] = 64318, - [SMALL_STATE(1885)] = 64337, - [SMALL_STATE(1886)] = 64356, - [SMALL_STATE(1887)] = 64375, - [SMALL_STATE(1888)] = 64394, - [SMALL_STATE(1889)] = 64411, - [SMALL_STATE(1890)] = 64430, - [SMALL_STATE(1891)] = 64449, - [SMALL_STATE(1892)] = 64466, - [SMALL_STATE(1893)] = 64485, - [SMALL_STATE(1894)] = 64504, - [SMALL_STATE(1895)] = 64523, - [SMALL_STATE(1896)] = 64540, - [SMALL_STATE(1897)] = 64557, - [SMALL_STATE(1898)] = 64572, - [SMALL_STATE(1899)] = 64591, - [SMALL_STATE(1900)] = 64606, - [SMALL_STATE(1901)] = 64625, - [SMALL_STATE(1902)] = 64644, - [SMALL_STATE(1903)] = 64661, - [SMALL_STATE(1904)] = 64680, - [SMALL_STATE(1905)] = 64699, - [SMALL_STATE(1906)] = 64716, - [SMALL_STATE(1907)] = 64735, - [SMALL_STATE(1908)] = 64754, - [SMALL_STATE(1909)] = 64773, - [SMALL_STATE(1910)] = 64792, - [SMALL_STATE(1911)] = 64811, - [SMALL_STATE(1912)] = 64830, - [SMALL_STATE(1913)] = 64847, - [SMALL_STATE(1914)] = 64866, - [SMALL_STATE(1915)] = 64883, - [SMALL_STATE(1916)] = 64900, - [SMALL_STATE(1917)] = 64919, - [SMALL_STATE(1918)] = 64936, - [SMALL_STATE(1919)] = 64951, - [SMALL_STATE(1920)] = 64966, - [SMALL_STATE(1921)] = 64985, - [SMALL_STATE(1922)] = 65004, - [SMALL_STATE(1923)] = 65019, - [SMALL_STATE(1924)] = 65034, - [SMALL_STATE(1925)] = 65051, - [SMALL_STATE(1926)] = 65066, - [SMALL_STATE(1927)] = 65083, - [SMALL_STATE(1928)] = 65098, - [SMALL_STATE(1929)] = 65117, - [SMALL_STATE(1930)] = 65136, - [SMALL_STATE(1931)] = 65151, - [SMALL_STATE(1932)] = 65168, - [SMALL_STATE(1933)] = 65183, - [SMALL_STATE(1934)] = 65200, - [SMALL_STATE(1935)] = 65219, - [SMALL_STATE(1936)] = 65238, - [SMALL_STATE(1937)] = 65253, - [SMALL_STATE(1938)] = 65272, - [SMALL_STATE(1939)] = 65287, - [SMALL_STATE(1940)] = 65304, - [SMALL_STATE(1941)] = 65321, - [SMALL_STATE(1942)] = 65338, - [SMALL_STATE(1943)] = 65355, - [SMALL_STATE(1944)] = 65372, - [SMALL_STATE(1945)] = 65389, - [SMALL_STATE(1946)] = 65406, - [SMALL_STATE(1947)] = 65423, - [SMALL_STATE(1948)] = 65440, - [SMALL_STATE(1949)] = 65457, - [SMALL_STATE(1950)] = 65474, - [SMALL_STATE(1951)] = 65491, - [SMALL_STATE(1952)] = 65506, - [SMALL_STATE(1953)] = 65525, - [SMALL_STATE(1954)] = 65540, - [SMALL_STATE(1955)] = 65559, - [SMALL_STATE(1956)] = 65576, - [SMALL_STATE(1957)] = 65593, - [SMALL_STATE(1958)] = 65610, - [SMALL_STATE(1959)] = 65627, - [SMALL_STATE(1960)] = 65646, - [SMALL_STATE(1961)] = 65663, - [SMALL_STATE(1962)] = 65680, - [SMALL_STATE(1963)] = 65699, - [SMALL_STATE(1964)] = 65716, - [SMALL_STATE(1965)] = 65733, - [SMALL_STATE(1966)] = 65748, - [SMALL_STATE(1967)] = 65765, - [SMALL_STATE(1968)] = 65782, - [SMALL_STATE(1969)] = 65799, - [SMALL_STATE(1970)] = 65816, - [SMALL_STATE(1971)] = 65833, - [SMALL_STATE(1972)] = 65850, - [SMALL_STATE(1973)] = 65869, - [SMALL_STATE(1974)] = 65886, - [SMALL_STATE(1975)] = 65903, - [SMALL_STATE(1976)] = 65918, - [SMALL_STATE(1977)] = 65937, - [SMALL_STATE(1978)] = 65956, - [SMALL_STATE(1979)] = 65975, - [SMALL_STATE(1980)] = 65992, - [SMALL_STATE(1981)] = 66009, - [SMALL_STATE(1982)] = 66028, - [SMALL_STATE(1983)] = 66045, - [SMALL_STATE(1984)] = 66064, - [SMALL_STATE(1985)] = 66083, - [SMALL_STATE(1986)] = 66100, - [SMALL_STATE(1987)] = 66119, - [SMALL_STATE(1988)] = 66136, - [SMALL_STATE(1989)] = 66153, - [SMALL_STATE(1990)] = 66172, - [SMALL_STATE(1991)] = 66189, - [SMALL_STATE(1992)] = 66206, - [SMALL_STATE(1993)] = 66223, - [SMALL_STATE(1994)] = 66240, - [SMALL_STATE(1995)] = 66257, - [SMALL_STATE(1996)] = 66274, - [SMALL_STATE(1997)] = 66293, - [SMALL_STATE(1998)] = 66312, - [SMALL_STATE(1999)] = 66329, - [SMALL_STATE(2000)] = 66346, - [SMALL_STATE(2001)] = 66363, - [SMALL_STATE(2002)] = 66378, - [SMALL_STATE(2003)] = 66395, - [SMALL_STATE(2004)] = 66414, - [SMALL_STATE(2005)] = 66431, - [SMALL_STATE(2006)] = 66450, - [SMALL_STATE(2007)] = 66467, - [SMALL_STATE(2008)] = 66482, - [SMALL_STATE(2009)] = 66499, - [SMALL_STATE(2010)] = 66514, - [SMALL_STATE(2011)] = 66531, - [SMALL_STATE(2012)] = 66550, - [SMALL_STATE(2013)] = 66567, - [SMALL_STATE(2014)] = 66584, - [SMALL_STATE(2015)] = 66603, - [SMALL_STATE(2016)] = 66620, - [SMALL_STATE(2017)] = 66639, - [SMALL_STATE(2018)] = 66656, - [SMALL_STATE(2019)] = 66673, - [SMALL_STATE(2020)] = 66690, - [SMALL_STATE(2021)] = 66707, - [SMALL_STATE(2022)] = 66724, - [SMALL_STATE(2023)] = 66743, - [SMALL_STATE(2024)] = 66762, - [SMALL_STATE(2025)] = 66779, - [SMALL_STATE(2026)] = 66796, - [SMALL_STATE(2027)] = 66813, - [SMALL_STATE(2028)] = 66830, - [SMALL_STATE(2029)] = 66847, - [SMALL_STATE(2030)] = 66864, - [SMALL_STATE(2031)] = 66881, - [SMALL_STATE(2032)] = 66898, - [SMALL_STATE(2033)] = 66917, - [SMALL_STATE(2034)] = 66934, - [SMALL_STATE(2035)] = 66949, - [SMALL_STATE(2036)] = 66966, - [SMALL_STATE(2037)] = 66985, - [SMALL_STATE(2038)] = 67000, - [SMALL_STATE(2039)] = 67019, - [SMALL_STATE(2040)] = 67036, - [SMALL_STATE(2041)] = 67055, - [SMALL_STATE(2042)] = 67074, - [SMALL_STATE(2043)] = 67091, - [SMALL_STATE(2044)] = 67108, - [SMALL_STATE(2045)] = 67127, - [SMALL_STATE(2046)] = 67144, - [SMALL_STATE(2047)] = 67161, - [SMALL_STATE(2048)] = 67180, - [SMALL_STATE(2049)] = 67199, - [SMALL_STATE(2050)] = 67216, - [SMALL_STATE(2051)] = 67231, - [SMALL_STATE(2052)] = 67248, - [SMALL_STATE(2053)] = 67265, - [SMALL_STATE(2054)] = 67282, - [SMALL_STATE(2055)] = 67301, - [SMALL_STATE(2056)] = 67318, - [SMALL_STATE(2057)] = 67335, - [SMALL_STATE(2058)] = 67352, - [SMALL_STATE(2059)] = 67369, - [SMALL_STATE(2060)] = 67386, - [SMALL_STATE(2061)] = 67403, - [SMALL_STATE(2062)] = 67420, - [SMALL_STATE(2063)] = 67437, - [SMALL_STATE(2064)] = 67456, - [SMALL_STATE(2065)] = 67473, - [SMALL_STATE(2066)] = 67490, - [SMALL_STATE(2067)] = 67507, - [SMALL_STATE(2068)] = 67524, - [SMALL_STATE(2069)] = 67543, - [SMALL_STATE(2070)] = 67562, - [SMALL_STATE(2071)] = 67579, - [SMALL_STATE(2072)] = 67598, - [SMALL_STATE(2073)] = 67615, - [SMALL_STATE(2074)] = 67634, - [SMALL_STATE(2075)] = 67651, - [SMALL_STATE(2076)] = 67668, - [SMALL_STATE(2077)] = 67685, - [SMALL_STATE(2078)] = 67702, - [SMALL_STATE(2079)] = 67721, - [SMALL_STATE(2080)] = 67738, - [SMALL_STATE(2081)] = 67755, - [SMALL_STATE(2082)] = 67772, - [SMALL_STATE(2083)] = 67789, - [SMALL_STATE(2084)] = 67806, - [SMALL_STATE(2085)] = 67823, - [SMALL_STATE(2086)] = 67842, - [SMALL_STATE(2087)] = 67859, - [SMALL_STATE(2088)] = 67878, - [SMALL_STATE(2089)] = 67897, - [SMALL_STATE(2090)] = 67914, - [SMALL_STATE(2091)] = 67933, - [SMALL_STATE(2092)] = 67952, - [SMALL_STATE(2093)] = 67969, - [SMALL_STATE(2094)] = 67988, - [SMALL_STATE(2095)] = 68005, - [SMALL_STATE(2096)] = 68022, - [SMALL_STATE(2097)] = 68039, - [SMALL_STATE(2098)] = 68056, - [SMALL_STATE(2099)] = 68073, - [SMALL_STATE(2100)] = 68092, - [SMALL_STATE(2101)] = 68109, - [SMALL_STATE(2102)] = 68128, - [SMALL_STATE(2103)] = 68147, - [SMALL_STATE(2104)] = 68164, - [SMALL_STATE(2105)] = 68183, - [SMALL_STATE(2106)] = 68200, - [SMALL_STATE(2107)] = 68216, - [SMALL_STATE(2108)] = 68230, - [SMALL_STATE(2109)] = 68244, - [SMALL_STATE(2110)] = 68260, - [SMALL_STATE(2111)] = 68276, - [SMALL_STATE(2112)] = 68292, - [SMALL_STATE(2113)] = 68308, - [SMALL_STATE(2114)] = 68324, - [SMALL_STATE(2115)] = 68340, - [SMALL_STATE(2116)] = 68354, - [SMALL_STATE(2117)] = 68368, - [SMALL_STATE(2118)] = 68384, - [SMALL_STATE(2119)] = 68398, - [SMALL_STATE(2120)] = 68414, - [SMALL_STATE(2121)] = 68428, - [SMALL_STATE(2122)] = 68442, - [SMALL_STATE(2123)] = 68458, - [SMALL_STATE(2124)] = 68474, - [SMALL_STATE(2125)] = 68488, - [SMALL_STATE(2126)] = 68502, - [SMALL_STATE(2127)] = 68518, - [SMALL_STATE(2128)] = 68534, - [SMALL_STATE(2129)] = 68550, - [SMALL_STATE(2130)] = 68566, - [SMALL_STATE(2131)] = 68582, - [SMALL_STATE(2132)] = 68598, - [SMALL_STATE(2133)] = 68614, - [SMALL_STATE(2134)] = 68628, - [SMALL_STATE(2135)] = 68642, - [SMALL_STATE(2136)] = 68658, - [SMALL_STATE(2137)] = 68674, - [SMALL_STATE(2138)] = 68690, - [SMALL_STATE(2139)] = 68704, - [SMALL_STATE(2140)] = 68720, - [SMALL_STATE(2141)] = 68736, - [SMALL_STATE(2142)] = 68752, - [SMALL_STATE(2143)] = 68768, - [SMALL_STATE(2144)] = 68784, - [SMALL_STATE(2145)] = 68798, - [SMALL_STATE(2146)] = 68812, - [SMALL_STATE(2147)] = 68828, - [SMALL_STATE(2148)] = 68844, - [SMALL_STATE(2149)] = 68860, - [SMALL_STATE(2150)] = 68874, - [SMALL_STATE(2151)] = 68888, - [SMALL_STATE(2152)] = 68902, - [SMALL_STATE(2153)] = 68918, - [SMALL_STATE(2154)] = 68934, - [SMALL_STATE(2155)] = 68948, - [SMALL_STATE(2156)] = 68962, - [SMALL_STATE(2157)] = 68978, - [SMALL_STATE(2158)] = 68992, - [SMALL_STATE(2159)] = 69006, - [SMALL_STATE(2160)] = 69020, - [SMALL_STATE(2161)] = 69034, - [SMALL_STATE(2162)] = 69050, - [SMALL_STATE(2163)] = 69064, - [SMALL_STATE(2164)] = 69080, - [SMALL_STATE(2165)] = 69096, - [SMALL_STATE(2166)] = 69110, - [SMALL_STATE(2167)] = 69124, - [SMALL_STATE(2168)] = 69140, - [SMALL_STATE(2169)] = 69156, - [SMALL_STATE(2170)] = 69170, - [SMALL_STATE(2171)] = 69186, - [SMALL_STATE(2172)] = 69202, - [SMALL_STATE(2173)] = 69216, - [SMALL_STATE(2174)] = 69230, - [SMALL_STATE(2175)] = 69246, - [SMALL_STATE(2176)] = 69260, - [SMALL_STATE(2177)] = 69276, - [SMALL_STATE(2178)] = 69292, - [SMALL_STATE(2179)] = 69308, - [SMALL_STATE(2180)] = 69322, - [SMALL_STATE(2181)] = 69338, - [SMALL_STATE(2182)] = 69354, - [SMALL_STATE(2183)] = 69370, - [SMALL_STATE(2184)] = 69384, - [SMALL_STATE(2185)] = 69400, - [SMALL_STATE(2186)] = 69416, - [SMALL_STATE(2187)] = 69432, - [SMALL_STATE(2188)] = 69448, - [SMALL_STATE(2189)] = 69464, - [SMALL_STATE(2190)] = 69478, - [SMALL_STATE(2191)] = 69494, - [SMALL_STATE(2192)] = 69508, - [SMALL_STATE(2193)] = 69522, - [SMALL_STATE(2194)] = 69538, - [SMALL_STATE(2195)] = 69552, - [SMALL_STATE(2196)] = 69568, - [SMALL_STATE(2197)] = 69582, - [SMALL_STATE(2198)] = 69596, - [SMALL_STATE(2199)] = 69610, - [SMALL_STATE(2200)] = 69624, - [SMALL_STATE(2201)] = 69640, - [SMALL_STATE(2202)] = 69656, - [SMALL_STATE(2203)] = 69672, - [SMALL_STATE(2204)] = 69686, - [SMALL_STATE(2205)] = 69700, - [SMALL_STATE(2206)] = 69714, - [SMALL_STATE(2207)] = 69730, - [SMALL_STATE(2208)] = 69746, - [SMALL_STATE(2209)] = 69762, - [SMALL_STATE(2210)] = 69778, - [SMALL_STATE(2211)] = 69792, - [SMALL_STATE(2212)] = 69806, - [SMALL_STATE(2213)] = 69820, - [SMALL_STATE(2214)] = 69836, - [SMALL_STATE(2215)] = 69850, - [SMALL_STATE(2216)] = 69864, - [SMALL_STATE(2217)] = 69878, - [SMALL_STATE(2218)] = 69892, - [SMALL_STATE(2219)] = 69908, - [SMALL_STATE(2220)] = 69924, - [SMALL_STATE(2221)] = 69940, - [SMALL_STATE(2222)] = 69954, - [SMALL_STATE(2223)] = 69968, - [SMALL_STATE(2224)] = 69982, - [SMALL_STATE(2225)] = 69998, - [SMALL_STATE(2226)] = 70014, - [SMALL_STATE(2227)] = 70028, - [SMALL_STATE(2228)] = 70044, - [SMALL_STATE(2229)] = 70060, - [SMALL_STATE(2230)] = 70076, - [SMALL_STATE(2231)] = 70092, - [SMALL_STATE(2232)] = 70106, - [SMALL_STATE(2233)] = 70120, - [SMALL_STATE(2234)] = 70134, - [SMALL_STATE(2235)] = 70150, - [SMALL_STATE(2236)] = 70164, - [SMALL_STATE(2237)] = 70180, - [SMALL_STATE(2238)] = 70194, - [SMALL_STATE(2239)] = 70210, - [SMALL_STATE(2240)] = 70226, - [SMALL_STATE(2241)] = 70242, - [SMALL_STATE(2242)] = 70256, - [SMALL_STATE(2243)] = 70272, - [SMALL_STATE(2244)] = 70286, - [SMALL_STATE(2245)] = 70302, - [SMALL_STATE(2246)] = 70316, - [SMALL_STATE(2247)] = 70332, - [SMALL_STATE(2248)] = 70346, - [SMALL_STATE(2249)] = 70362, - [SMALL_STATE(2250)] = 70376, - [SMALL_STATE(2251)] = 70392, - [SMALL_STATE(2252)] = 70408, - [SMALL_STATE(2253)] = 70424, - [SMALL_STATE(2254)] = 70440, - [SMALL_STATE(2255)] = 70454, - [SMALL_STATE(2256)] = 70470, - [SMALL_STATE(2257)] = 70486, - [SMALL_STATE(2258)] = 70502, - [SMALL_STATE(2259)] = 70518, - [SMALL_STATE(2260)] = 70534, - [SMALL_STATE(2261)] = 70550, - [SMALL_STATE(2262)] = 70564, - [SMALL_STATE(2263)] = 70580, - [SMALL_STATE(2264)] = 70596, - [SMALL_STATE(2265)] = 70612, - [SMALL_STATE(2266)] = 70626, - [SMALL_STATE(2267)] = 70642, - [SMALL_STATE(2268)] = 70656, - [SMALL_STATE(2269)] = 70672, - [SMALL_STATE(2270)] = 70686, - [SMALL_STATE(2271)] = 70702, - [SMALL_STATE(2272)] = 70718, - [SMALL_STATE(2273)] = 70732, - [SMALL_STATE(2274)] = 70748, - [SMALL_STATE(2275)] = 70764, - [SMALL_STATE(2276)] = 70780, - [SMALL_STATE(2277)] = 70796, - [SMALL_STATE(2278)] = 70810, - [SMALL_STATE(2279)] = 70824, - [SMALL_STATE(2280)] = 70840, - [SMALL_STATE(2281)] = 70856, - [SMALL_STATE(2282)] = 70872, - [SMALL_STATE(2283)] = 70888, - [SMALL_STATE(2284)] = 70904, - [SMALL_STATE(2285)] = 70920, - [SMALL_STATE(2286)] = 70936, - [SMALL_STATE(2287)] = 70952, - [SMALL_STATE(2288)] = 70968, - [SMALL_STATE(2289)] = 70982, - [SMALL_STATE(2290)] = 70998, - [SMALL_STATE(2291)] = 71012, - [SMALL_STATE(2292)] = 71028, - [SMALL_STATE(2293)] = 71044, - [SMALL_STATE(2294)] = 71060, - [SMALL_STATE(2295)] = 71074, - [SMALL_STATE(2296)] = 71088, - [SMALL_STATE(2297)] = 71104, - [SMALL_STATE(2298)] = 71118, - [SMALL_STATE(2299)] = 71132, - [SMALL_STATE(2300)] = 71148, - [SMALL_STATE(2301)] = 71162, - [SMALL_STATE(2302)] = 71176, - [SMALL_STATE(2303)] = 71192, - [SMALL_STATE(2304)] = 71208, - [SMALL_STATE(2305)] = 71222, - [SMALL_STATE(2306)] = 71238, - [SMALL_STATE(2307)] = 71254, - [SMALL_STATE(2308)] = 71270, - [SMALL_STATE(2309)] = 71286, - [SMALL_STATE(2310)] = 71302, - [SMALL_STATE(2311)] = 71318, - [SMALL_STATE(2312)] = 71334, - [SMALL_STATE(2313)] = 71350, - [SMALL_STATE(2314)] = 71366, - [SMALL_STATE(2315)] = 71380, - [SMALL_STATE(2316)] = 71394, - [SMALL_STATE(2317)] = 71410, - [SMALL_STATE(2318)] = 71426, - [SMALL_STATE(2319)] = 71442, - [SMALL_STATE(2320)] = 71456, - [SMALL_STATE(2321)] = 71470, - [SMALL_STATE(2322)] = 71484, - [SMALL_STATE(2323)] = 71500, - [SMALL_STATE(2324)] = 71516, - [SMALL_STATE(2325)] = 71532, - [SMALL_STATE(2326)] = 71548, - [SMALL_STATE(2327)] = 71562, - [SMALL_STATE(2328)] = 71578, - [SMALL_STATE(2329)] = 71594, - [SMALL_STATE(2330)] = 71610, - [SMALL_STATE(2331)] = 71626, - [SMALL_STATE(2332)] = 71640, - [SMALL_STATE(2333)] = 71654, - [SMALL_STATE(2334)] = 71670, - [SMALL_STATE(2335)] = 71684, - [SMALL_STATE(2336)] = 71698, - [SMALL_STATE(2337)] = 71714, - [SMALL_STATE(2338)] = 71728, - [SMALL_STATE(2339)] = 71742, - [SMALL_STATE(2340)] = 71756, - [SMALL_STATE(2341)] = 71770, - [SMALL_STATE(2342)] = 71786, - [SMALL_STATE(2343)] = 71800, - [SMALL_STATE(2344)] = 71816, - [SMALL_STATE(2345)] = 71832, - [SMALL_STATE(2346)] = 71848, - [SMALL_STATE(2347)] = 71864, - [SMALL_STATE(2348)] = 71880, - [SMALL_STATE(2349)] = 71896, - [SMALL_STATE(2350)] = 71912, - [SMALL_STATE(2351)] = 71928, - [SMALL_STATE(2352)] = 71944, - [SMALL_STATE(2353)] = 71958, - [SMALL_STATE(2354)] = 71974, - [SMALL_STATE(2355)] = 71990, - [SMALL_STATE(2356)] = 72004, - [SMALL_STATE(2357)] = 72020, - [SMALL_STATE(2358)] = 72036, - [SMALL_STATE(2359)] = 72052, - [SMALL_STATE(2360)] = 72068, - [SMALL_STATE(2361)] = 72084, - [SMALL_STATE(2362)] = 72100, - [SMALL_STATE(2363)] = 72116, - [SMALL_STATE(2364)] = 72132, - [SMALL_STATE(2365)] = 72145, - [SMALL_STATE(2366)] = 72158, - [SMALL_STATE(2367)] = 72171, - [SMALL_STATE(2368)] = 72184, - [SMALL_STATE(2369)] = 72197, - [SMALL_STATE(2370)] = 72210, - [SMALL_STATE(2371)] = 72223, - [SMALL_STATE(2372)] = 72236, - [SMALL_STATE(2373)] = 72249, - [SMALL_STATE(2374)] = 72262, - [SMALL_STATE(2375)] = 72275, - [SMALL_STATE(2376)] = 72288, - [SMALL_STATE(2377)] = 72301, - [SMALL_STATE(2378)] = 72314, - [SMALL_STATE(2379)] = 72327, - [SMALL_STATE(2380)] = 72340, - [SMALL_STATE(2381)] = 72353, - [SMALL_STATE(2382)] = 72366, - [SMALL_STATE(2383)] = 72379, - [SMALL_STATE(2384)] = 72392, - [SMALL_STATE(2385)] = 72405, - [SMALL_STATE(2386)] = 72418, - [SMALL_STATE(2387)] = 72431, - [SMALL_STATE(2388)] = 72444, - [SMALL_STATE(2389)] = 72457, - [SMALL_STATE(2390)] = 72470, - [SMALL_STATE(2391)] = 72483, - [SMALL_STATE(2392)] = 72496, - [SMALL_STATE(2393)] = 72509, - [SMALL_STATE(2394)] = 72522, - [SMALL_STATE(2395)] = 72535, - [SMALL_STATE(2396)] = 72548, - [SMALL_STATE(2397)] = 72561, - [SMALL_STATE(2398)] = 72574, - [SMALL_STATE(2399)] = 72587, - [SMALL_STATE(2400)] = 72600, - [SMALL_STATE(2401)] = 72613, - [SMALL_STATE(2402)] = 72626, - [SMALL_STATE(2403)] = 72639, - [SMALL_STATE(2404)] = 72652, - [SMALL_STATE(2405)] = 72665, - [SMALL_STATE(2406)] = 72678, - [SMALL_STATE(2407)] = 72691, - [SMALL_STATE(2408)] = 72704, - [SMALL_STATE(2409)] = 72717, - [SMALL_STATE(2410)] = 72730, - [SMALL_STATE(2411)] = 72743, - [SMALL_STATE(2412)] = 72756, - [SMALL_STATE(2413)] = 72769, - [SMALL_STATE(2414)] = 72782, - [SMALL_STATE(2415)] = 72795, - [SMALL_STATE(2416)] = 72808, - [SMALL_STATE(2417)] = 72821, - [SMALL_STATE(2418)] = 72834, - [SMALL_STATE(2419)] = 72847, - [SMALL_STATE(2420)] = 72860, - [SMALL_STATE(2421)] = 72873, - [SMALL_STATE(2422)] = 72886, - [SMALL_STATE(2423)] = 72899, - [SMALL_STATE(2424)] = 72912, - [SMALL_STATE(2425)] = 72925, - [SMALL_STATE(2426)] = 72938, - [SMALL_STATE(2427)] = 72951, - [SMALL_STATE(2428)] = 72964, - [SMALL_STATE(2429)] = 72977, - [SMALL_STATE(2430)] = 72990, - [SMALL_STATE(2431)] = 73003, - [SMALL_STATE(2432)] = 73016, - [SMALL_STATE(2433)] = 73029, - [SMALL_STATE(2434)] = 73042, - [SMALL_STATE(2435)] = 73055, - [SMALL_STATE(2436)] = 73068, - [SMALL_STATE(2437)] = 73081, - [SMALL_STATE(2438)] = 73094, - [SMALL_STATE(2439)] = 73107, - [SMALL_STATE(2440)] = 73120, - [SMALL_STATE(2441)] = 73133, - [SMALL_STATE(2442)] = 73146, - [SMALL_STATE(2443)] = 73159, - [SMALL_STATE(2444)] = 73172, - [SMALL_STATE(2445)] = 73185, - [SMALL_STATE(2446)] = 73198, - [SMALL_STATE(2447)] = 73211, - [SMALL_STATE(2448)] = 73224, - [SMALL_STATE(2449)] = 73237, - [SMALL_STATE(2450)] = 73250, - [SMALL_STATE(2451)] = 73263, - [SMALL_STATE(2452)] = 73276, - [SMALL_STATE(2453)] = 73289, - [SMALL_STATE(2454)] = 73302, - [SMALL_STATE(2455)] = 73315, - [SMALL_STATE(2456)] = 73328, - [SMALL_STATE(2457)] = 73341, - [SMALL_STATE(2458)] = 73354, - [SMALL_STATE(2459)] = 73367, - [SMALL_STATE(2460)] = 73380, - [SMALL_STATE(2461)] = 73393, - [SMALL_STATE(2462)] = 73406, - [SMALL_STATE(2463)] = 73419, - [SMALL_STATE(2464)] = 73432, - [SMALL_STATE(2465)] = 73445, - [SMALL_STATE(2466)] = 73458, - [SMALL_STATE(2467)] = 73471, - [SMALL_STATE(2468)] = 73484, - [SMALL_STATE(2469)] = 73497, - [SMALL_STATE(2470)] = 73510, - [SMALL_STATE(2471)] = 73523, - [SMALL_STATE(2472)] = 73536, - [SMALL_STATE(2473)] = 73549, - [SMALL_STATE(2474)] = 73562, - [SMALL_STATE(2475)] = 73575, - [SMALL_STATE(2476)] = 73588, - [SMALL_STATE(2477)] = 73601, - [SMALL_STATE(2478)] = 73614, - [SMALL_STATE(2479)] = 73627, - [SMALL_STATE(2480)] = 73640, - [SMALL_STATE(2481)] = 73653, - [SMALL_STATE(2482)] = 73666, - [SMALL_STATE(2483)] = 73679, - [SMALL_STATE(2484)] = 73692, - [SMALL_STATE(2485)] = 73705, - [SMALL_STATE(2486)] = 73718, - [SMALL_STATE(2487)] = 73731, - [SMALL_STATE(2488)] = 73744, - [SMALL_STATE(2489)] = 73757, - [SMALL_STATE(2490)] = 73770, - [SMALL_STATE(2491)] = 73783, - [SMALL_STATE(2492)] = 73796, - [SMALL_STATE(2493)] = 73809, - [SMALL_STATE(2494)] = 73822, - [SMALL_STATE(2495)] = 73835, - [SMALL_STATE(2496)] = 73848, - [SMALL_STATE(2497)] = 73861, - [SMALL_STATE(2498)] = 73874, - [SMALL_STATE(2499)] = 73887, - [SMALL_STATE(2500)] = 73900, - [SMALL_STATE(2501)] = 73913, - [SMALL_STATE(2502)] = 73926, - [SMALL_STATE(2503)] = 73939, - [SMALL_STATE(2504)] = 73952, - [SMALL_STATE(2505)] = 73965, - [SMALL_STATE(2506)] = 73978, - [SMALL_STATE(2507)] = 73991, - [SMALL_STATE(2508)] = 74004, - [SMALL_STATE(2509)] = 74017, - [SMALL_STATE(2510)] = 74030, - [SMALL_STATE(2511)] = 74043, - [SMALL_STATE(2512)] = 74056, - [SMALL_STATE(2513)] = 74069, - [SMALL_STATE(2514)] = 74082, - [SMALL_STATE(2515)] = 74095, - [SMALL_STATE(2516)] = 74108, - [SMALL_STATE(2517)] = 74121, - [SMALL_STATE(2518)] = 74134, - [SMALL_STATE(2519)] = 74147, - [SMALL_STATE(2520)] = 74160, - [SMALL_STATE(2521)] = 74173, - [SMALL_STATE(2522)] = 74186, - [SMALL_STATE(2523)] = 74199, - [SMALL_STATE(2524)] = 74212, - [SMALL_STATE(2525)] = 74225, - [SMALL_STATE(2526)] = 74238, - [SMALL_STATE(2527)] = 74251, - [SMALL_STATE(2528)] = 74264, - [SMALL_STATE(2529)] = 74277, - [SMALL_STATE(2530)] = 74290, - [SMALL_STATE(2531)] = 74303, - [SMALL_STATE(2532)] = 74316, - [SMALL_STATE(2533)] = 74329, - [SMALL_STATE(2534)] = 74342, - [SMALL_STATE(2535)] = 74355, - [SMALL_STATE(2536)] = 74368, - [SMALL_STATE(2537)] = 74381, - [SMALL_STATE(2538)] = 74394, - [SMALL_STATE(2539)] = 74407, - [SMALL_STATE(2540)] = 74420, - [SMALL_STATE(2541)] = 74433, - [SMALL_STATE(2542)] = 74446, - [SMALL_STATE(2543)] = 74459, - [SMALL_STATE(2544)] = 74472, - [SMALL_STATE(2545)] = 74485, - [SMALL_STATE(2546)] = 74498, - [SMALL_STATE(2547)] = 74511, - [SMALL_STATE(2548)] = 74524, - [SMALL_STATE(2549)] = 74537, - [SMALL_STATE(2550)] = 74550, - [SMALL_STATE(2551)] = 74563, - [SMALL_STATE(2552)] = 74576, - [SMALL_STATE(2553)] = 74589, - [SMALL_STATE(2554)] = 74602, - [SMALL_STATE(2555)] = 74615, - [SMALL_STATE(2556)] = 74628, - [SMALL_STATE(2557)] = 74641, - [SMALL_STATE(2558)] = 74654, - [SMALL_STATE(2559)] = 74667, - [SMALL_STATE(2560)] = 74680, - [SMALL_STATE(2561)] = 74693, - [SMALL_STATE(2562)] = 74706, - [SMALL_STATE(2563)] = 74719, - [SMALL_STATE(2564)] = 74732, - [SMALL_STATE(2565)] = 74745, - [SMALL_STATE(2566)] = 74758, - [SMALL_STATE(2567)] = 74771, - [SMALL_STATE(2568)] = 74784, - [SMALL_STATE(2569)] = 74797, - [SMALL_STATE(2570)] = 74810, - [SMALL_STATE(2571)] = 74823, - [SMALL_STATE(2572)] = 74836, - [SMALL_STATE(2573)] = 74849, - [SMALL_STATE(2574)] = 74862, - [SMALL_STATE(2575)] = 74875, - [SMALL_STATE(2576)] = 74888, - [SMALL_STATE(2577)] = 74901, - [SMALL_STATE(2578)] = 74914, - [SMALL_STATE(2579)] = 74927, - [SMALL_STATE(2580)] = 74940, - [SMALL_STATE(2581)] = 74953, - [SMALL_STATE(2582)] = 74966, - [SMALL_STATE(2583)] = 74979, - [SMALL_STATE(2584)] = 74992, - [SMALL_STATE(2585)] = 75005, - [SMALL_STATE(2586)] = 75018, - [SMALL_STATE(2587)] = 75022, -}; - -static const TSParseActionEntry ts_parse_actions[] = { - [0] = {.entry = {.count = 0, .reusable = false}}, - [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [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(41), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [13] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [15] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(789), - [18] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [20] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(515), - [23] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1410), - [26] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1985), - [29] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1656), - [32] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1387), - [35] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1433), - [38] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1575), - [41] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2132), - [44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), - [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2563), - [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2560), - [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2557), - [56] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2554), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1217), - [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1288), - [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1312), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1311), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1745), - [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(97), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2552), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(203), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2551), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2550), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1047), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2139), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2548), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(201), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(200), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(199), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(270), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2141), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(83), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2546), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2545), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2142), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2146), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2148), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(277), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(282), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(282), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(551), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(287), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(648), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(835), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2541), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(102), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(729), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1397), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2540), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1340), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1929), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1388), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1710), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(88), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(345), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(347), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(348), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(349), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 122), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 122), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), - [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), - [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), - [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 122), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 122), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2574), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2190), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2581), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2585), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2184), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(728), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(874), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2366), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2363), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 16), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(2213), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(84), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(2213), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(84), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 85), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 85), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 85), SHIFT_REPEAT(2213), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 151), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 151), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 165), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 165), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 2), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 2), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 138), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 138), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 128), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 128), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 139), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 139), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 39), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 39), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 50), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 50), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 160), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 160), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 10), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 10), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 137), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 137), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 82), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 82), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 58), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 58), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 152), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 152), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 160), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 160), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 119), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 119), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 139), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 139), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 138), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 138), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 159), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 159), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 43), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 43), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 42), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 42), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 128), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 128), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 84), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 84), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 81), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 81), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 39), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 39), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 16), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 16), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 83), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 83), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 152), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 152), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 16), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 16), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 25), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 25), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 84), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 84), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 16), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 16), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 16), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 16), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 10), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 10), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 10), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 10), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 10), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 10), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 50), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 50), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 99), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 99), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 97), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 97), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 39), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 39), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 97), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 97), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 58), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 58), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 10), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 10), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 44), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 44), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 89), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 89), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 8), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 8), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 16), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 16), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 43), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 43), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 10), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 10), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 92), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 92), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 92), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 92), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 41), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 41), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 130), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 130), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 130), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 130), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 129), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 129), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2432), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 21), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1406), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(729), - [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1921), - [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2132), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(96), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2498), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(117), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2488), - [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1336), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2011), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1682), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, .production_id = 48), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, .production_id = 48), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, .production_id = 17), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, .production_id = 17), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 15), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 15), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, .production_id = 154), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, .production_id = 154), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, .production_id = 126), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, .production_id = 126), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 88), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 88), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 15), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 15), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, .production_id = 153), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, .production_id = 153), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 15), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 15), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, .production_id = 87), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, .production_id = 87), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, .production_id = 125), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, .production_id = 125), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 86), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 86), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 15), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 15), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 57), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 57), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 136), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 136), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 156), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 156), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 157), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 157), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 158), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 158), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 166), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 166), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 75), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 75), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 16), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 16), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 135), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 135), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 155), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 155), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 34), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 34), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 134), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 134), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 133), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 133), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 132), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 132), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 20), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 20), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 64), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 64), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 131), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 131), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 45), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 45), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 41), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 41), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 45), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 45), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 12), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 12), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 93), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 93), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 104), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 104), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 94), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 94), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 45), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 45), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 141), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 141), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 103), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 103), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 102), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 102), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 45), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 45), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 21), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 19), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, .production_id = 54), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1291), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1217), - [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1288), - [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1293), - [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1290), - [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1287), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 27), - [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1291), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1415), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1513), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1589), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1217), - [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1288), - [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1293), - [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1290), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1287), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1397), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 109), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 145), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 144), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 143), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 142), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 120), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 1), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 73), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 105), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 121), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 162), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, .production_id = 127), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 107), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 113), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 161), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 49), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 147), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1444), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1415), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1513), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), - [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2439), - [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1454), - [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1449), - [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1471), - [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1442), - [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1427), - [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1397), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1398), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 1), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 1), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5), - [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(371), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1407), - [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1403), - [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1489), - [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1643), - [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1403), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_heredoc_body, 2), SHIFT(1489), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(371), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1407), - [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1403), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1643), - [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1403), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1397), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1444), - [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1454), - [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1449), - [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1471), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1442), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1427), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 117), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 118), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 148), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 79), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 149), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 25), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 116), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(381), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1500), - [2847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1530), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1530), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), - [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1696), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 8), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(414), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1595), - [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1595), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1705), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 80), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 1), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_member_declaration, 1), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 80), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 163), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 78), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 115), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 150), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 164), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 38), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 150), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 80), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 70), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 9), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 163), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 167), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 23), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 23), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 5), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 5), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 6), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 6), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__new_line, 1), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__new_line, 1), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2562), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2358), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), - [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 5), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 5), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(403), - [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2192), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(2333), - [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(82), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(2333), - [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(82), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), - [3319] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), SHIFT(1294), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 85), SHIFT_REPEAT(2333), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), - [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1297), - [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1298), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), - [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2432), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 85), - [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 85), SHIFT_REPEAT(2207), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 85), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc_body, 2), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1417), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1295), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 33), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1296), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2402), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 11), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2402), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1299), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), - [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1719), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2402), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1792), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), - [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), SHIFT_REPEAT(1794), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 1), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1510), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), - [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1906), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), - [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1863), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), - [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1902), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), - [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1408), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2), SHIFT(1294), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), - [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1583), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nowdoc_body_repeat1, 1), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 1), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), - [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1423), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1294), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(156), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 13), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 1), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 16), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 16), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 112), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(150), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(356), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 18), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 4), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1700), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 106), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, .production_id = 3), - [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1727), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 24), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 124), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(149), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 124), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 28), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 29), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 35), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 30), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 31), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 32), - [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 100), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(147), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 42), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 42), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 74), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 47), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 46), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 47), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(155), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(826), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 47), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(145), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), SHIFT_REPEAT(1402), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 72), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 71), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 69), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(758), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 67), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 66), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 61), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 59), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 51), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 68), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2136), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 65), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 70), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2136), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 146), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2432), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 9), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 123), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 108), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 110), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 111), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 3), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 14), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 101), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 40), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 98), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, .production_id = 140), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 60), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 90), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 2), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_array_access_argument, 1), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 52), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4718] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), -}; - -#ifdef __cplusplus -extern "C" { -#endif -void *tree_sitter_php_external_scanner_create(void); -void tree_sitter_php_external_scanner_destroy(void *); -bool tree_sitter_php_external_scanner_scan(void *, TSLexer *, const bool *); -unsigned tree_sitter_php_external_scanner_serialize(void *, char *); -void tree_sitter_php_external_scanner_deserialize(void *, const char *, unsigned); - -#ifdef _WIN32 -#define extern __declspec(dllexport) -#endif - -extern const TSLanguage *tree_sitter_php(void) { - static const TSLanguage language = { - .version = LANGUAGE_VERSION, - .symbol_count = SYMBOL_COUNT, - .alias_count = ALIAS_COUNT, - .token_count = TOKEN_COUNT, - .external_token_count = EXTERNAL_TOKEN_COUNT, - .state_count = STATE_COUNT, - .large_state_count = LARGE_STATE_COUNT, - .production_id_count = PRODUCTION_ID_COUNT, - .field_count = FIELD_COUNT, - .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .parse_table = &ts_parse_table[0][0], - .small_parse_table = ts_small_parse_table, - .small_parse_table_map = ts_small_parse_table_map, - .parse_actions = ts_parse_actions, - .symbol_names = ts_symbol_names, - .field_names = ts_field_names, - .field_map_slices = ts_field_map_slices, - .field_map_entries = ts_field_map_entries, - .symbol_metadata = ts_symbol_metadata, - .public_symbol_map = ts_symbol_map, - .alias_map = ts_non_terminal_alias_map, - .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, - .lex_fn = ts_lex, - .keyword_lex_fn = ts_lex_keywords, - .keyword_capture_token = sym_name, - .external_scanner = { - &ts_external_scanner_states[0][0], - ts_external_scanner_symbol_map, - tree_sitter_php_external_scanner_create, - tree_sitter_php_external_scanner_destroy, - tree_sitter_php_external_scanner_scan, - tree_sitter_php_external_scanner_serialize, - tree_sitter_php_external_scanner_deserialize, - }, - .primary_state_ids = ts_primary_state_ids, - }; - return &language; -} -#ifdef __cplusplus -} -#endif diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt deleted file mode 100644 index dc664bc0..00000000 --- a/test/corpus/declarations.txt +++ /dev/null @@ -1,706 +0,0 @@ -========================================= -Interface declarations -========================================= - -foo; - } -} - ---- - -(program - (php_tag) - (interface_declaration - name: (name) - body: (declaration_list - (method_declaration - (visibility_modifier) - name: (name) - parameters: (formal_parameters)))) - (class_declaration - name: (name) - (class_interface_clause (name)) - body: (declaration_list - (property_declaration - (visibility_modifier) - (property_element (variable_name (name)) (property_initializer (encapsed_string (string_value))))) - (method_declaration - (visibility_modifier) - name: (name) - parameters: (formal_parameters) - body: (compound_statement - (return_statement (member_access_expression - object: (variable_name (name)) - name: (name)))))))) - -========================== -Use declarations -========================== - -Name = $name; - $GLOBALS['List']->echoName(); - } - - function echoName() { - $GLOBALS['names'][]=$this->Name; - } -} - ---- - -(program - (php_tag) - (class_declaration - name: (name) - body: (declaration_list - (method_declaration - name: (name) - parameters: (formal_parameters - (simple_parameter - name: (variable_name (name)))) - body: (compound_statement - (expression_statement (reference_assignment_expression - left: (subscript_expression (variable_name (name)) (string (string_value))) - right: (variable_name (name)))) - (expression_statement (assignment_expression - left: (member_access_expression - object: (variable_name (name)) - name: (name)) - right: (variable_name (name)))) - (expression_statement (member_call_expression - object: (subscript_expression (variable_name (name)) (string (string_value))) - name: (name) - arguments: (arguments))))) - (method_declaration - name: (name) - parameters: (formal_parameters) - body: (compound_statement - (expression_statement (assignment_expression - left: (subscript_expression (subscript_expression (variable_name (name)) (string (string_value)))) - right: (member_access_expression - object: (variable_name (name)) - name: (name))))))))) - -======================================== -Class declarations with base classes -======================================== - - "value"))] -#[MyAttribute(100 + 200)] -class Thing -{ -} - -new #[ExampleAttribute] class() {}; -#[ExampleAttribute] fn($x) => $x; -$baz = #[ExampleAttribute] function($x) {return $x;}; - -class A { - #[\Assert\All( - new \Assert\NotNull, - new \Assert\Length(min: 5)) - ] - public string $name = ''; - -} - -#[ - A1, - A2(), - A3(0), - A4(x: 1), -] -function a() { -} - ---- - -(program - (php_tag) - - (function_definition - attributes: (attribute_list (attribute_group (attribute (name)))) - name: (name) - parameters: (formal_parameters - (simple_parameter - attributes: (attribute_list - (attribute_group (attribute (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_group (attribute (name)))) - (const_element (name) (string (string_value))) - ) - - (property_declaration - attributes: (attribute_list (attribute_group (attribute (name)))) - (visibility_modifier) - type: (union_type (primitive_type)) - (property_element (variable_name (name)) - (property_initializer (string (string_value))) - ) - ) - (method_declaration - attributes: (attribute_list - (attribute_group - (attribute - (name) - parameters: (arguments - (argument (encapsed_string (string_value))) - (argument - (array_creation_expression - (array_element_initializer (encapsed_string (string_value))) - ) - ) - ) - ) - ) - ) - (visibility_modifier) - name: (name) - parameters: (formal_parameters - (simple_parameter - attributes: (attribute_list (attribute_group (attribute (name)))) - name: (variable_name (name)) - ) - ) - body: (compound_statement (comment)) - ) - ) - ) - (class_declaration - attributes: (attribute_list - (attribute_group - (attribute (name)) - ) - (attribute_group - (attribute - (qualified_name - (namespace_name_as_prefix - (namespace_name (name)) - ) - (name) - ) - ) - ) - (attribute_group - (attribute - (name) - parameters: (arguments (argument (integer))) - ) - ) - (attribute_group - (attribute - (name) - parameters: (arguments - (argument - (class_constant_access_expression - (name) - (name) - ) - ) - ) - ) - ) - (attribute_group - (attribute - (name) - parameters: (arguments - (argument - (array_creation_expression - (array_element_initializer - (encapsed_string (string_value)) - (encapsed_string (string_value)) - ) - ) - ) - ) - ) - ) - (attribute_group - (attribute - (name) - parameters: (arguments - (argument - (binary_expression - left: (integer) - right: (integer) - ) - ) - ) - ) - ) - ) - name: (name) - body: (declaration_list) - ) - (expression_statement - (object_creation_expression - attributes: (attribute_list (attribute_group (attribute (name)))) - (arguments) - (declaration_list) - ) - ) - (expression_statement - (arrow_function - attributes: (attribute_list (attribute_group (attribute (name)))) - parameters: (formal_parameters - (simple_parameter - name: (variable_name (name)) - ) - ) - body: (variable_name (name)) - ) - ) - (expression_statement - (assignment_expression - left: (variable_name (name)) - right: (anonymous_function_creation_expression - attributes: (attribute_list (attribute_group (attribute (name)))) - parameters: (formal_parameters - (simple_parameter - name: (variable_name (name)) - ) - ) - body: (compound_statement - (return_statement - (variable_name (name)) - ) - ) - ) - ) - ) - (class_declaration - name: (name) - body: (declaration_list - (property_declaration - attributes: (attribute_list - (attribute_group - (attribute - (qualified_name - (namespace_name_as_prefix (namespace_name (name))) - (name) - ) - parameters: (arguments - (argument - (object_creation_expression - (qualified_name - (namespace_name_as_prefix (namespace_name (name))) - (name) - ) - ) - ) - (argument - (object_creation_expression - (qualified_name - (namespace_name_as_prefix (namespace_name (name))) - (name) - ) - (arguments - (argument - name: (name) - (integer) - ) - ) - ) - ) - ) - ) - ) - ) - (visibility_modifier) - type: (union_type (primitive_type)) - (property_element - (variable_name (name)) - (property_initializer (string (string_value))) - ) - ) - ) - ) - (function_definition - attributes: (attribute_list - (attribute_group - (attribute (name)) - (attribute - (name) - parameters: (arguments) - ) - (attribute - (name) - parameters: (arguments (argument (integer))) - ) - (attribute - (name) - parameters: (arguments (argument name: (name) (integer))) - ) - ) - ) - name: (name) - parameters: (formal_parameters) - body: (compound_statement) - ) -) - - -======================================= -Enums -======================================= - - 'Red', - Suit::Clubs, Suit::Spades => 'Black', - }; - } -} - ---- - -(program - (php_tag) - (enum_declaration - (name) - (enum_declaration_list) - ) - (enum_declaration - (name) - (class_interface_clause - (name) - (name) - ) - (enum_declaration_list) - ) - (enum_declaration - (name) - (primitive_type) - (class_interface_clause (name)) - (enum_declaration_list) - ) - (enum_declaration - (name) - (primitive_type) - (enum_declaration_list - (enum_case (name) (string (string_value))) - (enum_case (name)) - (enum_case (name) (string (string_value))) - (enum_case (name) (string (string_value))) - - (comment) - - (method_declaration - (visibility_modifier) - (name) - (formal_parameters) - (union_type (primitive_type)) - (compound_statement - (return_statement - (match_expression - (parenthesized_expression - (variable_name (name)) - ) - (match_block - (match_conditional_expression - (match_condition_list - (class_constant_access_expression (name) (name)) - (class_constant_access_expression (name) (name)) - ) - (string (string_value)) - ) - (match_conditional_expression - (match_condition_list - (class_constant_access_expression (name) (name)) - (class_constant_access_expression (name) (name)) - ) - (string (string_value)) - ) - ) - ) - ) - ) - ) - ) - ) -) diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt deleted file mode 100644 index 76a48a27..00000000 --- a/test/corpus/expressions.txt +++ /dev/null @@ -1,1560 +0,0 @@ -========================== -Dynamic variable names -========================== - -current()); - ---- - -(program - (php_tag) - (expression_statement (assignment_expression - (variable_name (name)) - (object_creation_expression - (name) - (arguments - (argument (member_call_expression (variable_name (name)) (name) (arguments)))))))) - -========================== -Scoped self call expressions -========================== - - - ---- - -(program - (php_tag) - (expression_statement - (conditional_expression - (conditional_expression - (boolean) - (boolean) - (boolean)) - (encapsed_string (string_value)) - (encapsed_string (string_value)))) - (text_interpolation)) - -================================================= -Associativity of null-coalescence -================================================= - - - ---- - -(program - (php_tag) - (expression_statement - (binary_expression - (null) - (binary_expression - (null) - (integer)))) - (text_interpolation)) - -========================================= -Associativity of negation -========================================= - - - ---- - -(program - (php_tag) - (expression_statement - (binary_expression - (unary_op_expression - (integer)) - (unary_op_expression - (integer)))) - (expression_statement - (unary_op_expression - (binary_expression - (variable_name - (name)) - (name)))) - (text_interpolation)) - -==================================== -Augmented assignment -==================================== - - - ---- - -(program - (php_tag) - (expression_statement - (augmented_assignment_expression - (variable_name - (name)) - (assignment_expression - (variable_name - (name)) - (encapsed_string (string_value))))) - (expression_statement - (augmented_assignment_expression - (variable_name - (name)) - (augmented_assignment_expression - (variable_name - (name)) - (integer)))) - (expression_statement - (augmented_assignment_expression - (variable_name - (name)) - (binary_expression - (encapsed_string (string_value)) - (encapsed_string (string_value))))) - (expression_statement - (binary_expression - (encapsed_string (string_value)) - (augmented_assignment_expression - (variable_name - (name)) - (encapsed_string (string_value))))) - (text_interpolation)) - -======================================= -Nested assignemnts -============================== - - 12 << 13 + 14 * (int) 15 instanceof foo; -(int) 1 instanceof foo / 3 - 4 >> 5 <= 6 <=> 7 & 8 ^ 9 | 10 && 11 || 12 ?? $i += 13 and 14 xor 15 or 16; - ---- - -(program - (php_tag) - (expression_statement - (binary_expression - (integer) - (binary_expression - (integer) - (binary_expression - (integer) - (augmented_assignment_expression - (variable_name - (name)) - (binary_expression - (integer) - (binary_expression - (integer) - (binary_expression - (integer) - (binary_expression - (integer) - (binary_expression - (integer) - (binary_expression - (integer) - (binary_expression - (integer) - (binary_expression - (integer) - (binary_expression - (integer) - (binary_expression - (integer) - (binary_expression - (integer) - (binary_expression - (cast_expression - (cast_type) - (integer)) - (name)))))))))))))))))) - (expression_statement - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (cast_expression - (cast_type) - (integer)) - (name)) - (integer)) - (integer)) - (integer)) - (integer)) - (integer)) - (integer)) - (integer)) - (integer)) - (integer)) - (integer)) - (augmented_assignment_expression - (variable_name - (name)) - (integer))) - (integer)) - (integer)) - (integer)))) - -============================== -Concatenation precedence -============================== - - "orange", "bar" => "apple", "baz" => "lemon"]); -$a = [...$values]; -?> - ---- - -(program - (php_tag) - (expression_statement (function_call_expression - (name) - (arguments - (argument - (array_creation_expression - (array_element_initializer (integer)) - (array_element_initializer (integer)) - (array_element_initializer (integer))))))) - (expression_statement - (function_call_expression - (name) - (arguments - (argument - (array_creation_expression - (array_element_initializer (encapsed_string (string_value)) (encapsed_string (string_value))) - (array_element_initializer (encapsed_string (string_value)) (encapsed_string (string_value))) - (array_element_initializer (encapsed_string (string_value)) (encapsed_string (string_value)))))))) - (expression_statement - (assignment_expression - (variable_name (name)) - (array_creation_expression - (array_element_initializer - (variadic_unpacking - (variable_name (name)) - ) - ) - ) - ) - ) - (text_interpolation)) - -=============================================== -Anonymous functions -=============================================== - -createNotFoundException(); -throw static::createNotFoundException(); -throw $userIsAuthorized ? new ForbiddenException() : new UnauthorizedException(); -throw $maybeNullException ?? new Exception(); -throw $exception = new Exception(); -throw $condition1 && $condition2 ? new Exception1() : new Exception2(); -throw $exception ??= new Exception(); - ---- - -(program - (php_tag) - (expression_statement - (throw_expression - (object_creation_expression - (name) - (arguments (argument (name))) - ) - ) - ) - (expression_statement - (assignment_expression - left: (variable_name (name)) - right: (conditional_expression - condition: (unary_op_expression - (function_call_expression - function: (name) - arguments: (arguments (argument (variable_name (name)))) - ) - ) - body: (function_call_expression - function: (name) - arguments: (arguments (argument (variable_name (name)))) - ) - alternative: (throw_expression - (object_creation_expression - (name) - (arguments) - ) - ) - ) - ) - ) - (expression_statement - (binary_expression - left: (variable_name (name)) - right: (throw_expression - (object_creation_expression - (name) - (arguments) - ) - ) - ) - ) - (expression_statement - (binary_expression - left: (variable_name (name)) - right: (throw_expression - (object_creation_expression - (name) - (arguments) - ) - ) - ) - ) - (expression_statement - (binary_expression - left: (variable_name (name)) - right: (throw_expression - (object_creation_expression - (name) - (arguments) - ) - ) - ) - ) - (expression_statement - (binary_expression - left: (variable_name (name)) - right: (throw_expression - (object_creation_expression - (name) - (arguments) - ) - ) - ) - ) - (expression_statement - (throw_expression - (member_call_expression - object: (variable_name (name)) - name: (name) - arguments: (arguments) - ) - ) - ) - (expression_statement - (throw_expression - (scoped_call_expression - scope: (relative_scope) - name: (name) - arguments: (arguments) - ) - ) - ) - (expression_statement - (throw_expression - (conditional_expression - condition: (variable_name (name)) - body: (object_creation_expression - (name) - (arguments) - ) - alternative: (object_creation_expression - (name) - (arguments) - ) - ) - ) - ) - (expression_statement - (throw_expression - (binary_expression - left: (variable_name (name)) - right: (object_creation_expression - (name) - (arguments) - ) - ) - ) - ) - (expression_statement - (throw_expression - (assignment_expression - left: (variable_name (name)) - right: (object_creation_expression - (name) - (arguments) - ) - ) - ) - ) - (expression_statement - (throw_expression - (conditional_expression - condition: (binary_expression - left: (variable_name (name)) - right: (variable_name (name)) - ) - body: (object_creation_expression - (name) - (arguments) - ) - alternative: (object_creation_expression - (name) - (arguments) - ) - ) - ) - ) - (expression_statement - (throw_expression - (augmented_assignment_expression - left: (variable_name (name)) - right: (object_creation_expression - (name) - (arguments) - ) - ) - ) - ) -) - -=============================================== -Nullsafe operator -=============================================== - -b; -$a?->b($c); -new $a?->b; -$country = $session?->user?->getAddress()?->country; - ---- - -(program - (php_tag) - (expression_statement - (nullsafe_member_access_expression - (variable_name (name)) - (name) - ) - ) - (expression_statement - (nullsafe_member_call_expression - (variable_name (name)) - (name) - (arguments (argument (variable_name (name)))) - ) - ) - (expression_statement - (object_creation_expression - (nullsafe_member_access_expression - (variable_name (name)) - (name) - ) - ) - ) - (expression_statement - (assignment_expression - (variable_name (name)) - (nullsafe_member_access_expression - (nullsafe_member_call_expression - (nullsafe_member_access_expression - (variable_name (name)) - (name) - ) - (name) - (arguments) - ) - (name) - ) - ) - ) -) - - -=============================================== -First class callable syntax -=============================================== - -foo(...); -A::foo(...); - -// These are invalid, but accepted on the parser level. -new Foo(...); - -#[Foo(...)] -function foo() {} - ---- - -(program - (php_tag) - (expression_statement - (function_call_expression - (name) - (arguments (variadic_placeholder)) - ) - ) - (expression_statement - (member_call_expression - (variable_name (name)) - (name) - (arguments (variadic_placeholder)) - ) - ) - (expression_statement - (scoped_call_expression - (name) - (name) - (arguments (variadic_placeholder)) - ) - ) - - (comment) - (expression_statement - (object_creation_expression - (name) - (arguments (variadic_placeholder)) - ) - ) - - (function_definition - (attribute_list - (attribute_group - (attribute - (name) - (arguments (variadic_placeholder)) - ) - ) - ) - (name) - (formal_parameters) - (compound_statement) - ) -) - - -=============================================== -Match expressions -=============================================== - - $b, - Lexer::T_UPDATE => updateStatement(), - Lexer::T_DELETE => $this->DeleteStatement(), - default => $this->syntaxError('SELECT, UPDATE or DELETE'), -}; - ---- - - (program - (php_tag) - (expression_statement - (assignment_expression - (variable_name (name)) - (match_expression - (parenthesized_expression (variable_name (name))) - (match_block - (match_conditional_expression - (match_condition_list - (class_constant_access_expression - (name) - (name) - ) - (variable_name (name)) - ) - (variable_name (name)) - ) - (match_conditional_expression - (match_condition_list - (class_constant_access_expression - (name) - (name) - ) - ) - (function_call_expression (name) (arguments)) - ) - (match_conditional_expression - (match_condition_list - (class_constant_access_expression - (name) - (name) - ) - ) - (member_call_expression - (variable_name (name)) - (name) - (arguments) - ) - ) - (match_default_expression - (member_call_expression - (variable_name (name)) - (name) - (arguments (argument (string (string_value)))) - ) - ) - ) - ) - ) - ) -) - -=============================================== -Arrow functions -=============================================== - - $a; -fn($x = 42) => $x; -static fn(&$x) => $x; -fn&($x) => $x; -fn($x, ...$rest) => $rest; -fn(): int => $x; - -$fn1 = fn($x) => $x + $y; - ---- - -(program - (php_tag) - (expression_statement - (arrow_function - parameters: (formal_parameters - (simple_parameter - type: (union_type (primitive_type)) - name: (variable_name (name)) - ) - ) - body: (variable_name (name)) - ) - ) - (expression_statement - (arrow_function - parameters: (formal_parameters - (simple_parameter - name: (variable_name (name)) - default_value: (integer)) - ) - body: (variable_name (name) - ) - ) - ) - (expression_statement - (arrow_function - (static_modifier) - parameters: (formal_parameters - (simple_parameter - reference_modifier: (reference_modifier) - name: (variable_name (name)) - ) - ) - body: (variable_name (name)) - ) - ) - (expression_statement - (arrow_function - reference_modifier: (reference_modifier) - parameters: (formal_parameters - (simple_parameter - name: (variable_name (name)) - ) - ) - body: (variable_name (name)) - ) - ) - (expression_statement - (arrow_function - parameters: (formal_parameters - (simple_parameter - name: (variable_name (name))) (variadic_parameter name: (variable_name (name)))) body: (variable_name (name)))) - (expression_statement - (arrow_function - parameters: (formal_parameters) - return_type: (union_type (primitive_type)) - body: (variable_name (name)) - ) - ) - (expression_statement - (assignment_expression - left: (variable_name (name)) - right: (arrow_function - parameters: (formal_parameters - (simple_parameter - name: (variable_name (name)) - ) - ) - body: (binary_expression - left: (variable_name (name)) - right: (variable_name (name)) - ) - ) - ) - ) -) - -==================================== -Functions with named arguments -==================================== - - $x; -fn&($x) => $x; - -function() use($a, &$b) {}; -function &($a) {}; - -foreach ($a as &$b) {} -foreach ($a as $b => &$c) {} - -f(&$a); - -function a(&$b) {} -function &a($b) {} - -$target = &$GLOBALS['_' . \strtoupper($array)]; - -array('a', &$b, 'c' => 'd', 'e' => &$f); - -[&$x]; - -list(&$v) = $x; - -list('k' => &$v) = $x; - -[&$v] = $x; - -['k' => &$v] = $x; - -class A { - function foo() { - $this->a = 3; - return [&$this->a]; - } -} - ---- - -(program - (php_tag) - (expression_statement - (reference_assignment_expression - (variable_name (name)) - (object_creation_expression (name)) - ) - ) - (expression_statement - (reference_assignment_expression - (variable_name (name)) - (variable_name (name)) - ) - ) - (function_definition - (name) - (formal_parameters - (simple_parameter - (variable_name (name)) - ) - (variadic_parameter - (reference_modifier) - (variable_name (name)) - ) - ) - (compound_statement) - ) - (function_definition - (name) - (formal_parameters - (simple_parameter - (variable_name (name)) - ) - (variadic_parameter - (union_type (named_type (name))) - (reference_modifier) - (variable_name (name)) - ) - ) - (compound_statement) - ) - (expression_statement - (arrow_function - (static_modifier) - (formal_parameters - (simple_parameter - (reference_modifier) - (variable_name (name)) - ) - ) - (variable_name (name)) - ) - ) - (expression_statement - (arrow_function - (reference_modifier) - (formal_parameters - (simple_parameter - (variable_name (name)) - ) - ) - (variable_name (name)) - ) - ) - (expression_statement - (anonymous_function_creation_expression - (formal_parameters) - (anonymous_function_use_clause - (variable_name (name)) - (by_ref (variable_name (name))) - ) - (compound_statement) - ) - ) - (expression_statement - (anonymous_function_creation_expression - (reference_modifier) - (formal_parameters - (simple_parameter - (variable_name (name)) - ) - ) - (compound_statement) - ) - ) - (foreach_statement - (variable_name (name)) - (by_ref (variable_name (name))) - (compound_statement) - ) - (foreach_statement - (variable_name (name)) - (pair - (variable_name (name)) - (by_ref (variable_name (name))) - ) - (compound_statement) - ) - (expression_statement - (function_call_expression - (name) - (arguments - (argument - (reference_modifier) - (variable_name (name)) - ) - ) - ) - ) - (function_definition - (name) - (formal_parameters - (simple_parameter - (reference_modifier) - (variable_name (name)) - ) - ) - (compound_statement) - ) - (function_definition - (reference_modifier) - (name) - (formal_parameters - (simple_parameter - (variable_name (name)) - ) - ) - (compound_statement) - ) - (expression_statement - (reference_assignment_expression - (variable_name (name)) - (subscript_expression - (variable_name (name)) - (binary_expression - (string (string_value)) - (function_call_expression - (qualified_name - (namespace_name_as_prefix) - (name) - ) - (arguments - (argument (variable_name (name))) - ) - ) - ) - ) - ) - ) - (expression_statement - (array_creation_expression - (array_element_initializer (string (string_value))) - (array_element_initializer (by_ref (variable_name (name)))) - (array_element_initializer (string (string_value)) (string (string_value))) - (array_element_initializer (string (string_value)) (by_ref (variable_name (name)))) - ) - ) - (expression_statement - (array_creation_expression - (array_element_initializer (by_ref (variable_name (name)))) - ) - ) - (expression_statement - (assignment_expression - (list_literal - (by_ref - (variable_name (name)) - ) - ) - (variable_name (name)) - ) - ) - (expression_statement - (assignment_expression - (list_literal - (string (string_value)) - (by_ref (variable_name (name))) - ) - (variable_name (name)) - ) - ) - (expression_statement - (assignment_expression - (list_literal - (by_ref (variable_name (name))) - ) - (variable_name (name)) - ) - ) - (expression_statement - (assignment_expression - (list_literal - (string (string_value)) - (by_ref (variable_name (name))) - ) - (variable_name (name)) - ) - ) - (class_declaration - (name) - (declaration_list - (method_declaration - (name) - (formal_parameters) - (compound_statement - (expression_statement - (assignment_expression - (member_access_expression - (variable_name (name)) - (name) - ) - (integer) - ) - ) - (return_statement - (array_creation_expression - (array_element_initializer - (by_ref - (member_access_expression - (variable_name (name)) - (name) - ) - ) - ) - ) - ) - ) - ) - ) - ) -) - -=============================================== -Empty match expressions -=============================================== - - - - -
- ---- - -(program - (php_tag) - (echo_statement (encapsed_string (string_value))) - (text_interpolation (text))) - -=============================== -interpolated text in middle -=============================== - - - -
- - - ---- - -(program - (php_tag) - (echo_statement (encapsed_string (string_value))) - (text_interpolation - (text) - (php_tag)) - (echo_statement (encapsed_string (string_value))) - (text_interpolation)) - -============================== -short open tag: On -============================== - - -Finished - ---- - -(program - (php_tag) - (echo_statement (encapsed_string (string_value) (escape_sequence))) - (text_interpolation (text))) - -============================== -short open tag: Off -============================== - -
one
- - - - - -
two
- - - - - - - ---- - -(program - (text) - (php_tag) - (expression_statement (assignment_expression (variable_name (name)) (string (string_value)))) - (text_interpolation (php_tag)) - (expression_statement (variable_name (name))) - (text_interpolation (text) (php_tag)) - (expression_statement (assignment_expression (variable_name (name)) (integer))) - (text_interpolation (php_tag)) - (echo_statement (encapsed_string (variable_name (name)))) - (text_interpolation (php_tag)) - (expression_statement (encapsed_string (variable_name (name)))) - (text_interpolation)) - -====================== -Single line php comment -====================== - -
- - b - ---- - -(program - (php_tag) - (expression_statement (boolean)) - (expression_statement (boolean)) - (expression_statement (boolean)) - (expression_statement (boolean)) - (expression_statement (boolean)) - (expression_statement (boolean)) - (text_interpolation)) - -========================== -Floats -========================== - - - ---- - -(program - (php_tag) - (echo_statement (binary_expression (encapsed_string (escape_sequence) (escape_sequence) (escape_sequence) (string_value)) (string (string_value)))) - (text_interpolation)) - -========================== -Shell command -========================== - 0) { - echo "Yes"; -} - -if ($a==0) { - echo "bad"; -} else { - echo "good"; -} - -if ($a==0) { - echo "bad"; -} elseif ($a==3) { - echo "bad"; -} else { - echo "good"; -} - ---- - -(program - (php_tag) - (if_statement - condition: (parenthesized_expression (binary_expression - left: (variable_name (name)) - right: (integer))) - body: (compound_statement (echo_statement (encapsed_string (string_value))))) - (if_statement - condition: (parenthesized_expression (binary_expression - left: (variable_name (name)) - right: (integer))) - body: (compound_statement (echo_statement (encapsed_string (string_value)))) - alternative: (else_clause - body: (compound_statement (echo_statement (encapsed_string (string_value)))))) - (if_statement - condition: (parenthesized_expression (binary_expression - left: (variable_name (name)) - right: (integer))) - body: (compound_statement (echo_statement (encapsed_string (string_value)))) - alternative: (else_if_clause - condition: (parenthesized_expression (binary_expression - left: (variable_name (name)) - right: (integer))) - body: (compound_statement (echo_statement (encapsed_string (string_value))))) - alternative: (else_clause - body: (compound_statement (echo_statement (encapsed_string (string_value))))))) - -============================== -Alternative if statements -============================== - - - - - ---- - -(program - (php_tag) - (if_statement - condition: (parenthesized_expression (variable_name (name))) - body: (colon_block - (text_interpolation (php_tag)) - (if_statement - condition: (parenthesized_expression (variable_name (name))) - body: (compound_statement (expression_statement (variable_name (name)))) - ) - ) - (text_interpolation (php_tag)) - alternative: (else_clause - body: (colon_block - (expression_statement (variable_name (name))) - ) - ) - ) - (text_interpolation) -) - -============================== -While statements -============================== - - - ---- - -(program - (php_tag) - (switch_statement - condition: (parenthesized_expression (variable_name (name))) - body: (switch_block - (case_statement - value: (integer) - (echo_statement (encapsed_string (string_value))) (break_statement)) - (case_statement - value: (integer) - (echo_statement (encapsed_string (string_value))) (break_statement)) - (default_statement - (echo_statement (encapsed_string (string_value))) (break_statement)))) - (text_interpolation)) - -============================== -Alternative switch statements -============================== - -0); - ---- - -(program - (php_tag) - (do_statement - body: (compound_statement - (echo_statement (variable_name (name))) - (expression_statement (update_expression (variable_name (name))))) - condition: (parenthesized_expression (binary_expression - left: (variable_name (name)) - right: (integer))))) - -============================== -Try statements -============================== - -getException(); - print "\n"; -} - ---- - -(program - (php_tag) - (try_statement - body: (compound_statement) - (catch_clause - type: (type_list - (named_type (name)) - ) - body: (compound_statement)) - (catch_clause - type: (type_list - (named_type (name)) - (named_type (name)) - ) - name: (variable_name (name)) - body: (compound_statement)) - (finally_clause - body: (compound_statement))) - (try_statement - body: (compound_statement - (expression_statement (function_call_expression - function: (name) - arguments: (arguments)))) - (catch_clause - type: (type_list - (named_type (name)) - ) - name: (variable_name (name)) - body: (compound_statement - (expression_statement (print_intrinsic (binary_expression - left: (encapsed_string (string_value)) - right: (member_call_expression - object: (variable_name (name)) - name: (name) - arguments: (arguments))))) - (expression_statement (print_intrinsic (encapsed_string (escape_sequence)))))))) - -============================== -Foreach statements -============================== - - $value); - -foreach($a as $b): - echo $a; - echo $b; -endforeach; - ---- - -(program - (php_tag) - (foreach_statement - (variable_name (name)) - (subscript_expression (variable_name (name)) (integer)) - body: (compound_statement - (echo_statement (binary_expression - left: (subscript_expression (variable_name (name)) (integer)) - right: (encapsed_string (escape_sequence)))))) - (foreach_statement - (variable_name (name)) - (pair (variable_name (name)) (variable_name (name)))) - (foreach_statement - (variable_name (name)) - (variable_name (name)) - body: (colon_block - (echo_statement (variable_name (name))) - (echo_statement (variable_name (name)))))) - -================================= -Case insensitive keywords -================================= - - [ $._automatic_semicolon, @@ -40,7 +40,6 @@ module.exports = grammar({ $.execution_string_chars_after_variable, $.encapsed_string_chars_heredoc, $.encapsed_string_chars_after_variable_heredoc, - $._eof, $.heredoc_start, $.heredoc_end, $.nowdoc_string, @@ -94,31 +93,17 @@ module.exports = grammar({ extras: $ => [ $.comment, /[\s\uFEFF\u2060\u200B\u00A0]/, - $.text_interpolation ], rules: { - program: $ => seq( - optional($.text), - optional(seq( - $.php_tag, - repeat($._statement) - )) + php: $ => seq( + optional($.php_tag), + optional(repeat($._statement)), + optional('?>'), ), php_tag: $ => /<\?([pP][hH][pP]|=)?/, - text_interpolation: $ => seq( - '?>', - optional($.text), - choice($.php_tag, $._eof) - ), - - text: $ => repeat1(choice( - token(prec(-1, / choice( $.empty_statement, $.compound_statement, diff --git a/queries/highlights.scm b/tree-sitter-php-only/queries/highlights.scm similarity index 100% rename from queries/highlights.scm rename to tree-sitter-php-only/queries/highlights.scm diff --git a/tree-sitter-php-only/queries/injections.scm b/tree-sitter-php-only/queries/injections.scm new file mode 100644 index 00000000..e69de29b diff --git a/queries/tags.scm b/tree-sitter-php-only/queries/tags.scm similarity index 100% rename from queries/tags.scm rename to tree-sitter-php-only/queries/tags.scm diff --git a/src/grammar.json b/tree-sitter-php-only/src/grammar.json similarity index 99% rename from src/grammar.json rename to tree-sitter-php-only/src/grammar.json index 8e2d777c..c50c9333 100644 --- a/src/grammar.json +++ b/tree-sitter-php-only/src/grammar.json @@ -1,8 +1,8 @@ { - "name": "php", + "name": "php_only", "word": "name", "rules": { - "program": { + "php": { "type": "SEQ", "members": [ { @@ -10,7 +10,7 @@ "members": [ { "type": "SYMBOL", - "name": "text" + "name": "php_tag" }, { "type": "BLANK" @@ -21,88 +21,34 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "php_tag" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - } - ] + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } }, { "type": "BLANK" } ] - } - ] - }, - "php_tag": { - "type": "PATTERN", - "value": "<\\?([pP][hH][pP]|=)?" - }, - "text_interpolation": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "?>" }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "text" + "type": "STRING", + "value": "?>" }, { "type": "BLANK" } ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "php_tag" - }, - { - "type": "SYMBOL", - "name": "_eof" - } - ] } ] }, - "text": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "PATTERN", - "value": "<" - } - } - }, - { - "type": "PATTERN", - "value": "[^\\s<][^<]*" - } - ] - } + "php_tag": { + "type": "PATTERN", + "value": "<\\?([pP][hH][pP]|=)?" }, "_statement": { "type": "CHOICE", @@ -8808,10 +8754,6 @@ { "type": "PATTERN", "value": "[\\s\\uFEFF\\u2060\\u200B\\u00A0]" - }, - { - "type": "SYMBOL", - "name": "text_interpolation" } ], "conflicts": [ @@ -8897,10 +8839,6 @@ "type": "SYMBOL", "name": "encapsed_string_chars_after_variable_heredoc" }, - { - "type": "SYMBOL", - "name": "_eof" - }, { "type": "SYMBOL", "name": "heredoc_start" diff --git a/src/node-types.json b/tree-sitter-php-only/src/node-types.json similarity index 99% rename from src/node-types.json rename to tree-sitter-php-only/src/node-types.json index ad789a1a..3a75947c 100644 --- a/src/node-types.json +++ b/tree-sitter-php-only/src/node-types.json @@ -3627,43 +3627,39 @@ } }, { - "type": "primitive_type", - "named": true, - "fields": {} - }, - { - "type": "print_intrinsic", + "type": "php", "named": true, "fields": {}, "children": { - "multiple": false, - "required": true, + "multiple": true, + "required": false, "types": [ { - "type": "_expression", + "type": "_statement", + "named": true + }, + { + "type": "php_tag", "named": true } ] } }, { - "type": "program", + "type": "primitive_type", + "named": true, + "fields": {} + }, + { + "type": "print_intrinsic", "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { - "type": "_statement", - "named": true - }, - { - "type": "php_tag", - "named": true - }, - { - "type": "text", + "type": "_expression", "named": true } ] @@ -4506,30 +4502,6 @@ } } }, - { - "type": "text", - "named": true, - "fields": {} - }, - { - "type": "text_interpolation", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "php_tag", - "named": true - }, - { - "type": "text", - "named": true - } - ] - } - }, { "type": "throw_expression", "named": true, @@ -5481,11 +5453,11 @@ }, { "type": "null", - "named": true + "named": false }, { "type": "null", - "named": false + "named": true }, { "type": "or", diff --git a/tree-sitter-php-only/src/parser.c b/tree-sitter-php-only/src/parser.c new file mode 100644 index 00000000..abee868b --- /dev/null +++ b/tree-sitter-php-only/src/parser.c @@ -0,0 +1,128050 @@ +#include + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 2542 +#define LARGE_STATE_COUNT 552 +#define SYMBOL_COUNT 397 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 193 +#define EXTERNAL_TOKEN_COUNT 11 +#define FIELD_COUNT 25 +#define MAX_ALIAS_SEQUENCE_LENGTH 12 +#define PRODUCTION_ID_COUNT 168 + +enum { + sym_name = 1, + anon_sym_QMARK_GT = 2, + sym_php_tag = 3, + anon_sym_SEMI = 4, + anon_sym_AMP = 5, + aux_sym_function_static_declaration_token1 = 6, + anon_sym_COMMA = 7, + anon_sym_EQ = 8, + aux_sym_global_declaration_token1 = 9, + aux_sym_namespace_definition_token1 = 10, + aux_sym_namespace_use_declaration_token1 = 11, + aux_sym_namespace_use_declaration_token2 = 12, + aux_sym_namespace_use_declaration_token3 = 13, + anon_sym_BSLASH = 14, + aux_sym_namespace_aliasing_clause_token1 = 15, + anon_sym_LBRACE = 16, + anon_sym_RBRACE = 17, + aux_sym_trait_declaration_token1 = 18, + aux_sym_interface_declaration_token1 = 19, + aux_sym_base_clause_token1 = 20, + aux_sym_enum_declaration_token1 = 21, + anon_sym_COLON = 22, + anon_sym_string = 23, + anon_sym_int = 24, + aux_sym_enum_case_token1 = 25, + aux_sym_class_declaration_token1 = 26, + aux_sym_final_modifier_token1 = 27, + aux_sym_abstract_modifier_token1 = 28, + aux_sym_readonly_modifier_token1 = 29, + aux_sym_class_interface_clause_token1 = 30, + sym_var_modifier = 31, + aux_sym_use_instead_of_clause_token1 = 32, + aux_sym_visibility_modifier_token1 = 33, + aux_sym_visibility_modifier_token2 = 34, + aux_sym_visibility_modifier_token3 = 35, + aux_sym__arrow_function_header_token1 = 36, + anon_sym_EQ_GT = 37, + anon_sym_LPAREN = 38, + anon_sym_RPAREN = 39, + anon_sym_DOT_DOT_DOT = 40, + anon_sym_QMARK = 41, + sym_bottom_type = 42, + anon_sym_PIPE = 43, + anon_sym_array = 44, + aux_sym_primitive_type_token1 = 45, + anon_sym_iterable = 46, + anon_sym_bool = 47, + anon_sym_float = 48, + anon_sym_void = 49, + anon_sym_mixed = 50, + anon_sym_static = 51, + anon_sym_false = 52, + anon_sym_null = 53, + anon_sym_true = 54, + aux_sym_cast_type_token1 = 55, + aux_sym_cast_type_token2 = 56, + aux_sym_cast_type_token3 = 57, + aux_sym_cast_type_token4 = 58, + aux_sym_cast_type_token5 = 59, + aux_sym_cast_type_token6 = 60, + aux_sym_cast_type_token7 = 61, + aux_sym_cast_type_token8 = 62, + aux_sym_cast_type_token9 = 63, + aux_sym_cast_type_token10 = 64, + aux_sym_cast_type_token11 = 65, + aux_sym_cast_type_token12 = 66, + aux_sym_echo_statement_token1 = 67, + anon_sym_unset = 68, + aux_sym_declare_statement_token1 = 69, + aux_sym_declare_statement_token2 = 70, + anon_sym_ticks = 71, + anon_sym_encoding = 72, + anon_sym_strict_types = 73, + sym_float = 74, + aux_sym_try_statement_token1 = 75, + aux_sym_catch_clause_token1 = 76, + aux_sym_finally_clause_token1 = 77, + aux_sym_goto_statement_token1 = 78, + aux_sym_continue_statement_token1 = 79, + aux_sym_break_statement_token1 = 80, + sym_integer = 81, + aux_sym_return_statement_token1 = 82, + aux_sym_throw_expression_token1 = 83, + aux_sym_while_statement_token1 = 84, + aux_sym_while_statement_token2 = 85, + aux_sym_do_statement_token1 = 86, + aux_sym_for_statement_token1 = 87, + aux_sym_for_statement_token2 = 88, + aux_sym_foreach_statement_token1 = 89, + aux_sym_foreach_statement_token2 = 90, + aux_sym_if_statement_token1 = 91, + aux_sym_if_statement_token2 = 92, + aux_sym_else_if_clause_token1 = 93, + aux_sym_else_clause_token1 = 94, + aux_sym_match_expression_token1 = 95, + aux_sym_match_default_expression_token1 = 96, + aux_sym_switch_statement_token1 = 97, + aux_sym_switch_block_token1 = 98, + anon_sym_AT = 99, + anon_sym_PLUS = 100, + anon_sym_DASH = 101, + anon_sym_TILDE = 102, + anon_sym_BANG = 103, + anon_sym_STAR_STAR = 104, + aux_sym_clone_expression_token1 = 105, + anon_sym_COLON_COLON = 106, + aux_sym_print_intrinsic_token1 = 107, + aux_sym_object_creation_expression_token1 = 108, + anon_sym_PLUS_PLUS = 109, + anon_sym_DASH_DASH = 110, + anon_sym_STAR_STAR_EQ = 111, + anon_sym_STAR_EQ = 112, + anon_sym_SLASH_EQ = 113, + anon_sym_PERCENT_EQ = 114, + anon_sym_PLUS_EQ = 115, + anon_sym_DASH_EQ = 116, + anon_sym_DOT_EQ = 117, + anon_sym_LT_LT_EQ = 118, + anon_sym_GT_GT_EQ = 119, + anon_sym_AMP_EQ = 120, + anon_sym_CARET_EQ = 121, + anon_sym_PIPE_EQ = 122, + anon_sym_QMARK_QMARK_EQ = 123, + anon_sym_DASH_GT = 124, + anon_sym_QMARK_DASH_GT = 125, + aux_sym__list_destructing_token1 = 126, + anon_sym_LBRACK = 127, + anon_sym_RBRACK = 128, + anon_sym_self = 129, + anon_sym_parent = 130, + anon_sym_POUND_LBRACK = 131, + sym_escape_sequence = 132, + anon_sym_BSLASHu = 133, + anon_sym_SQUOTE = 134, + anon_sym_LT_QMARK = 135, + anon_sym_QMARK_GT2 = 136, + aux_sym_encapsed_string_token1 = 137, + anon_sym_DQUOTE = 138, + aux_sym_string_token1 = 139, + sym_string_value = 140, + anon_sym_LT_LT_LT = 141, + anon_sym_DQUOTE2 = 142, + aux_sym__new_line_token1 = 143, + aux_sym__new_line_token2 = 144, + anon_sym_ = 145, + anon_sym_SQUOTE2 = 146, + anon_sym_BQUOTE = 147, + sym_boolean = 148, + sym_null = 149, + anon_sym_DOLLAR = 150, + aux_sym_yield_expression_token1 = 151, + aux_sym_yield_expression_token2 = 152, + aux_sym_binary_expression_token1 = 153, + anon_sym_QMARK_QMARK = 154, + aux_sym_binary_expression_token2 = 155, + aux_sym_binary_expression_token3 = 156, + aux_sym_binary_expression_token4 = 157, + anon_sym_PIPE_PIPE = 158, + anon_sym_AMP_AMP = 159, + anon_sym_CARET = 160, + anon_sym_EQ_EQ = 161, + anon_sym_BANG_EQ = 162, + anon_sym_LT_GT = 163, + anon_sym_EQ_EQ_EQ = 164, + anon_sym_BANG_EQ_EQ = 165, + anon_sym_LT = 166, + anon_sym_GT = 167, + anon_sym_LT_EQ = 168, + anon_sym_GT_EQ = 169, + anon_sym_LT_EQ_GT = 170, + anon_sym_LT_LT = 171, + anon_sym_GT_GT = 172, + anon_sym_DOT = 173, + anon_sym_STAR = 174, + anon_sym_SLASH = 175, + anon_sym_PERCENT = 176, + aux_sym_include_expression_token1 = 177, + aux_sym_include_once_expression_token1 = 178, + aux_sym_require_expression_token1 = 179, + aux_sym_require_once_expression_token1 = 180, + sym_comment = 181, + sym__automatic_semicolon = 182, + sym_encapsed_string_chars = 183, + sym_encapsed_string_chars_after_variable = 184, + sym_execution_string_chars = 185, + sym_execution_string_chars_after_variable = 186, + sym_encapsed_string_chars_heredoc = 187, + sym_encapsed_string_chars_after_variable_heredoc = 188, + sym_heredoc_start = 189, + sym_heredoc_end = 190, + sym_nowdoc_string = 191, + sym_sentinel_error = 192, + sym_php = 193, + sym_empty_statement = 194, + sym_reference_modifier = 195, + sym_function_static_declaration = 196, + sym_static_variable_declaration = 197, + sym_global_declaration = 198, + sym_namespace_definition = 199, + sym_namespace_use_declaration = 200, + sym_namespace_use_clause = 201, + sym_qualified_name = 202, + sym_namespace_name_as_prefix = 203, + sym_namespace_name = 204, + sym_namespace_aliasing_clause = 205, + sym_namespace_use_group = 206, + sym_namespace_use_group_clause = 207, + sym_trait_declaration = 208, + sym_interface_declaration = 209, + sym_base_clause = 210, + sym_enum_declaration = 211, + sym_enum_declaration_list = 212, + sym__enum_member_declaration = 213, + sym_enum_case = 214, + sym_class_declaration = 215, + sym_declaration_list = 216, + sym_final_modifier = 217, + sym_abstract_modifier = 218, + sym_readonly_modifier = 219, + sym_class_interface_clause = 220, + sym__member_declaration = 221, + sym_const_declaration = 222, + sym__class_const_declaration = 223, + sym__const_declaration = 224, + sym_property_declaration = 225, + sym__modifier = 226, + sym_property_element = 227, + sym_property_initializer = 228, + sym_method_declaration = 229, + sym_static_modifier = 230, + sym_use_declaration = 231, + sym_use_list = 232, + sym_use_instead_of_clause = 233, + sym_use_as_clause = 234, + sym_visibility_modifier = 235, + sym_function_definition = 236, + sym__function_definition_header = 237, + sym__arrow_function_header = 238, + sym_arrow_function = 239, + sym_formal_parameters = 240, + sym_property_promotion_parameter = 241, + sym_simple_parameter = 242, + sym_variadic_parameter = 243, + sym__type = 244, + sym__types = 245, + sym_named_type = 246, + sym_optional_type = 247, + sym_union_type = 248, + sym_intersection_type = 249, + sym_primitive_type = 250, + sym_cast_type = 251, + sym__return_type = 252, + sym_const_element = 253, + sym_echo_statement = 254, + sym_unset_statement = 255, + sym_declare_statement = 256, + sym_declare_directive = 257, + sym_try_statement = 258, + sym_catch_clause = 259, + sym_type_list = 260, + sym_finally_clause = 261, + sym_goto_statement = 262, + sym_continue_statement = 263, + sym_break_statement = 264, + sym_return_statement = 265, + sym_throw_expression = 266, + sym_while_statement = 267, + sym_do_statement = 268, + sym_for_statement = 269, + sym__expressions = 270, + sym_sequence_expression = 271, + sym_foreach_statement = 272, + sym_foreach_pair = 273, + sym_if_statement = 274, + sym_colon_block = 275, + sym_else_if_clause = 276, + sym_else_clause = 277, + sym_else_if_clause_2 = 278, + sym_else_clause_2 = 279, + sym_match_expression = 280, + sym_match_block = 281, + sym_match_condition_list = 282, + sym_match_conditional_expression = 283, + sym_match_default_expression = 284, + sym_switch_statement = 285, + sym_switch_block = 286, + sym_case_statement = 287, + sym_default_statement = 288, + sym_compound_statement = 289, + sym_named_label_statement = 290, + sym_expression_statement = 291, + sym__expression = 292, + sym__unary_expression = 293, + sym_unary_op_expression = 294, + sym_exponentiation_expression = 295, + sym_clone_expression = 296, + sym__primary_expression = 297, + sym_parenthesized_expression = 298, + sym_class_constant_access_expression = 299, + sym_print_intrinsic = 300, + sym_anonymous_function_creation_expression = 301, + sym_anonymous_function_use_clause = 302, + sym_object_creation_expression = 303, + sym_update_expression = 304, + sym_cast_expression = 305, + sym_cast_variable = 306, + sym_assignment_expression = 307, + sym_reference_assignment_expression = 308, + sym_conditional_expression = 309, + sym_augmented_assignment_expression = 310, + sym_member_access_expression = 311, + sym_nullsafe_member_access_expression = 312, + sym_scoped_property_access_expression = 313, + sym_list_literal = 314, + sym__list_destructing = 315, + sym__array_destructing = 316, + sym__array_destructing_element = 317, + sym_function_call_expression = 318, + sym_scoped_call_expression = 319, + sym__scope_resolution_qualifier = 320, + sym_relative_scope = 321, + sym_variadic_placeholder = 322, + sym_arguments = 323, + sym_argument = 324, + sym_member_call_expression = 325, + sym_nullsafe_member_call_expression = 326, + sym_variadic_unpacking = 327, + sym_subscript_expression = 328, + sym__dereferencable_expression = 329, + sym_array_creation_expression = 330, + sym_attribute_group = 331, + sym_attribute_list = 332, + sym_attribute = 333, + sym__complex_string_part = 334, + sym__simple_string_member_access_expression = 335, + sym__simple_string_subscript_unary_expression = 336, + sym__simple_string_array_access_argument = 337, + sym__simple_string_subscript_expression = 338, + sym__simple_string_part = 339, + aux_sym__interpolated_string_body = 340, + aux_sym__interpolated_string_body_heredoc = 341, + sym_encapsed_string = 342, + sym_string = 343, + sym_heredoc_body = 344, + sym_heredoc = 345, + sym__new_line = 346, + sym_nowdoc_body = 347, + sym_nowdoc = 348, + aux_sym__interpolated_execution_operator_body = 349, + sym_shell_command_expression = 350, + sym__string = 351, + sym_dynamic_variable_name = 352, + sym_variable_name = 353, + sym_variable_reference = 354, + sym_by_ref = 355, + sym_yield_expression = 356, + sym_array_element_initializer = 357, + sym_binary_expression = 358, + sym_include_expression = 359, + sym_include_once_expression = 360, + sym_require_expression = 361, + sym_require_once_expression = 362, + sym__reserved_identifier = 363, + aux_sym_php_repeat1 = 364, + aux_sym_function_static_declaration_repeat1 = 365, + aux_sym_global_declaration_repeat1 = 366, + aux_sym_namespace_use_declaration_repeat1 = 367, + aux_sym_namespace_name_repeat1 = 368, + aux_sym_namespace_use_group_repeat1 = 369, + aux_sym_base_clause_repeat1 = 370, + aux_sym_enum_declaration_list_repeat1 = 371, + aux_sym_declaration_list_repeat1 = 372, + aux_sym__const_declaration_repeat1 = 373, + aux_sym_property_declaration_repeat1 = 374, + aux_sym_property_declaration_repeat2 = 375, + aux_sym_use_list_repeat1 = 376, + aux_sym_formal_parameters_repeat1 = 377, + aux_sym_union_type_repeat1 = 378, + aux_sym_intersection_type_repeat1 = 379, + aux_sym_unset_statement_repeat1 = 380, + aux_sym_try_statement_repeat1 = 381, + aux_sym_type_list_repeat1 = 382, + aux_sym_if_statement_repeat1 = 383, + aux_sym_if_statement_repeat2 = 384, + aux_sym_match_block_repeat1 = 385, + aux_sym_match_condition_list_repeat1 = 386, + aux_sym_switch_block_repeat1 = 387, + aux_sym_anonymous_function_use_clause_repeat1 = 388, + aux_sym__list_destructing_repeat1 = 389, + aux_sym__array_destructing_repeat1 = 390, + aux_sym_arguments_repeat1 = 391, + aux_sym_array_creation_expression_repeat1 = 392, + aux_sym_attribute_group_repeat1 = 393, + aux_sym_attribute_list_repeat1 = 394, + aux_sym_heredoc_body_repeat1 = 395, + aux_sym_nowdoc_body_repeat1 = 396, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_name] = "name", + [anon_sym_QMARK_GT] = "\?>", + [sym_php_tag] = "php_tag", + [anon_sym_SEMI] = ";", + [anon_sym_AMP] = "&", + [aux_sym_function_static_declaration_token1] = "static", + [anon_sym_COMMA] = ",", + [anon_sym_EQ] = "=", + [aux_sym_global_declaration_token1] = "global", + [aux_sym_namespace_definition_token1] = "namespace", + [aux_sym_namespace_use_declaration_token1] = "use", + [aux_sym_namespace_use_declaration_token2] = "function", + [aux_sym_namespace_use_declaration_token3] = "const", + [anon_sym_BSLASH] = "\\", + [aux_sym_namespace_aliasing_clause_token1] = "as", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [aux_sym_trait_declaration_token1] = "trait", + [aux_sym_interface_declaration_token1] = "interface", + [aux_sym_base_clause_token1] = "extends", + [aux_sym_enum_declaration_token1] = "enum", + [anon_sym_COLON] = ":", + [anon_sym_string] = "string", + [anon_sym_int] = "int", + [aux_sym_enum_case_token1] = "case", + [aux_sym_class_declaration_token1] = "class", + [aux_sym_final_modifier_token1] = "final", + [aux_sym_abstract_modifier_token1] = "abstract", + [aux_sym_readonly_modifier_token1] = "readonly", + [aux_sym_class_interface_clause_token1] = "implements", + [sym_var_modifier] = "var_modifier", + [aux_sym_use_instead_of_clause_token1] = "insteadof", + [aux_sym_visibility_modifier_token1] = "public", + [aux_sym_visibility_modifier_token2] = "protected", + [aux_sym_visibility_modifier_token3] = "private", + [aux_sym__arrow_function_header_token1] = "fn", + [anon_sym_EQ_GT] = "=>", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", + [anon_sym_DOT_DOT_DOT] = "...", + [anon_sym_QMARK] = "\?", + [sym_bottom_type] = "bottom_type", + [anon_sym_PIPE] = "|", + [anon_sym_array] = "array", + [aux_sym_primitive_type_token1] = "callable", + [anon_sym_iterable] = "iterable", + [anon_sym_bool] = "bool", + [anon_sym_float] = "float", + [anon_sym_void] = "void", + [anon_sym_mixed] = "mixed", + [anon_sym_static] = "static", + [anon_sym_false] = "false", + [anon_sym_null] = "null", + [anon_sym_true] = "true", + [aux_sym_cast_type_token1] = "cast_type_token1", + [aux_sym_cast_type_token2] = "cast_type_token2", + [aux_sym_cast_type_token3] = "cast_type_token3", + [aux_sym_cast_type_token4] = "cast_type_token4", + [aux_sym_cast_type_token5] = "cast_type_token5", + [aux_sym_cast_type_token6] = "cast_type_token6", + [aux_sym_cast_type_token7] = "cast_type_token7", + [aux_sym_cast_type_token8] = "cast_type_token8", + [aux_sym_cast_type_token9] = "cast_type_token9", + [aux_sym_cast_type_token10] = "cast_type_token10", + [aux_sym_cast_type_token11] = "cast_type_token11", + [aux_sym_cast_type_token12] = "cast_type_token12", + [aux_sym_echo_statement_token1] = "echo", + [anon_sym_unset] = "unset", + [aux_sym_declare_statement_token1] = "declare", + [aux_sym_declare_statement_token2] = "enddeclare", + [anon_sym_ticks] = "ticks", + [anon_sym_encoding] = "encoding", + [anon_sym_strict_types] = "strict_types", + [sym_float] = "float", + [aux_sym_try_statement_token1] = "try", + [aux_sym_catch_clause_token1] = "catch", + [aux_sym_finally_clause_token1] = "finally", + [aux_sym_goto_statement_token1] = "goto", + [aux_sym_continue_statement_token1] = "continue", + [aux_sym_break_statement_token1] = "break", + [sym_integer] = "integer", + [aux_sym_return_statement_token1] = "return", + [aux_sym_throw_expression_token1] = "throw", + [aux_sym_while_statement_token1] = "while", + [aux_sym_while_statement_token2] = "endwhile", + [aux_sym_do_statement_token1] = "do", + [aux_sym_for_statement_token1] = "for", + [aux_sym_for_statement_token2] = "endfor", + [aux_sym_foreach_statement_token1] = "foreach", + [aux_sym_foreach_statement_token2] = "endforeach", + [aux_sym_if_statement_token1] = "if", + [aux_sym_if_statement_token2] = "endif", + [aux_sym_else_if_clause_token1] = "elseif", + [aux_sym_else_clause_token1] = "else", + [aux_sym_match_expression_token1] = "match", + [aux_sym_match_default_expression_token1] = "default", + [aux_sym_switch_statement_token1] = "switch", + [aux_sym_switch_block_token1] = "endswitch", + [anon_sym_AT] = "@", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_TILDE] = "~", + [anon_sym_BANG] = "!", + [anon_sym_STAR_STAR] = "**", + [aux_sym_clone_expression_token1] = "clone", + [anon_sym_COLON_COLON] = "::", + [aux_sym_print_intrinsic_token1] = "print", + [aux_sym_object_creation_expression_token1] = "new", + [anon_sym_PLUS_PLUS] = "++", + [anon_sym_DASH_DASH] = "--", + [anon_sym_STAR_STAR_EQ] = "**=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_DOT_EQ] = ".=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_CARET_EQ] = "^=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_QMARK_QMARK_EQ] = "\?\?=", + [anon_sym_DASH_GT] = "->", + [anon_sym_QMARK_DASH_GT] = "\?->", + [aux_sym__list_destructing_token1] = "list", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_self] = "self", + [anon_sym_parent] = "parent", + [anon_sym_POUND_LBRACK] = "#[", + [sym_escape_sequence] = "escape_sequence", + [anon_sym_BSLASHu] = "string_value", + [anon_sym_SQUOTE] = "'", + [anon_sym_LT_QMARK] = "string_value", + [anon_sym_QMARK_GT2] = "string_value", + [aux_sym_encapsed_string_token1] = "encapsed_string_token1", + [anon_sym_DQUOTE] = "\"", + [aux_sym_string_token1] = "string_token1", + [sym_string_value] = "string_value", + [anon_sym_LT_LT_LT] = "<<<", + [anon_sym_DQUOTE2] = "\"", + [aux_sym__new_line_token1] = "_new_line_token1", + [aux_sym__new_line_token2] = "_new_line_token2", + [anon_sym_] = "nowdoc_string", + [anon_sym_SQUOTE2] = "'", + [anon_sym_BQUOTE] = "`", + [sym_boolean] = "boolean", + [sym_null] = "null", + [anon_sym_DOLLAR] = "$", + [aux_sym_yield_expression_token1] = "yield", + [aux_sym_yield_expression_token2] = "from", + [aux_sym_binary_expression_token1] = "instanceof", + [anon_sym_QMARK_QMARK] = "\?\?", + [aux_sym_binary_expression_token2] = "and", + [aux_sym_binary_expression_token3] = "or", + [aux_sym_binary_expression_token4] = "xor", + [anon_sym_PIPE_PIPE] = "||", + [anon_sym_AMP_AMP] = "&&", + [anon_sym_CARET] = "^", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_LT_GT] = "<>", + [anon_sym_EQ_EQ_EQ] = "===", + [anon_sym_BANG_EQ_EQ] = "!==", + [anon_sym_LT] = "<", + [anon_sym_GT] = ">", + [anon_sym_LT_EQ] = "<=", + [anon_sym_GT_EQ] = ">=", + [anon_sym_LT_EQ_GT] = "<=>", + [anon_sym_LT_LT] = "<<", + [anon_sym_GT_GT] = ">>", + [anon_sym_DOT] = ".", + [anon_sym_STAR] = "*", + [anon_sym_SLASH] = "/", + [anon_sym_PERCENT] = "%", + [aux_sym_include_expression_token1] = "include", + [aux_sym_include_once_expression_token1] = "include_once", + [aux_sym_require_expression_token1] = "require", + [aux_sym_require_once_expression_token1] = "require_once", + [sym_comment] = "comment", + [sym__automatic_semicolon] = "_automatic_semicolon", + [sym_encapsed_string_chars] = "string_value", + [sym_encapsed_string_chars_after_variable] = "string_value", + [sym_execution_string_chars] = "string_value", + [sym_execution_string_chars_after_variable] = "string_value", + [sym_encapsed_string_chars_heredoc] = "string_value", + [sym_encapsed_string_chars_after_variable_heredoc] = "string_value", + [sym_heredoc_start] = "heredoc_start", + [sym_heredoc_end] = "heredoc_end", + [sym_nowdoc_string] = "nowdoc_string", + [sym_sentinel_error] = "sentinel_error", + [sym_php] = "php", + [sym_empty_statement] = "empty_statement", + [sym_reference_modifier] = "reference_modifier", + [sym_function_static_declaration] = "function_static_declaration", + [sym_static_variable_declaration] = "static_variable_declaration", + [sym_global_declaration] = "global_declaration", + [sym_namespace_definition] = "namespace_definition", + [sym_namespace_use_declaration] = "namespace_use_declaration", + [sym_namespace_use_clause] = "namespace_use_clause", + [sym_qualified_name] = "qualified_name", + [sym_namespace_name_as_prefix] = "namespace_name_as_prefix", + [sym_namespace_name] = "namespace_name", + [sym_namespace_aliasing_clause] = "namespace_aliasing_clause", + [sym_namespace_use_group] = "namespace_use_group", + [sym_namespace_use_group_clause] = "namespace_use_group_clause", + [sym_trait_declaration] = "trait_declaration", + [sym_interface_declaration] = "interface_declaration", + [sym_base_clause] = "base_clause", + [sym_enum_declaration] = "enum_declaration", + [sym_enum_declaration_list] = "enum_declaration_list", + [sym__enum_member_declaration] = "_enum_member_declaration", + [sym_enum_case] = "enum_case", + [sym_class_declaration] = "class_declaration", + [sym_declaration_list] = "declaration_list", + [sym_final_modifier] = "final_modifier", + [sym_abstract_modifier] = "abstract_modifier", + [sym_readonly_modifier] = "readonly_modifier", + [sym_class_interface_clause] = "class_interface_clause", + [sym__member_declaration] = "_member_declaration", + [sym_const_declaration] = "const_declaration", + [sym__class_const_declaration] = "const_declaration", + [sym__const_declaration] = "_const_declaration", + [sym_property_declaration] = "property_declaration", + [sym__modifier] = "_modifier", + [sym_property_element] = "property_element", + [sym_property_initializer] = "property_initializer", + [sym_method_declaration] = "method_declaration", + [sym_static_modifier] = "static_modifier", + [sym_use_declaration] = "use_declaration", + [sym_use_list] = "use_list", + [sym_use_instead_of_clause] = "use_instead_of_clause", + [sym_use_as_clause] = "use_as_clause", + [sym_visibility_modifier] = "visibility_modifier", + [sym_function_definition] = "function_definition", + [sym__function_definition_header] = "_function_definition_header", + [sym__arrow_function_header] = "_arrow_function_header", + [sym_arrow_function] = "arrow_function", + [sym_formal_parameters] = "formal_parameters", + [sym_property_promotion_parameter] = "property_promotion_parameter", + [sym_simple_parameter] = "simple_parameter", + [sym_variadic_parameter] = "variadic_parameter", + [sym__type] = "_type", + [sym__types] = "_types", + [sym_named_type] = "named_type", + [sym_optional_type] = "optional_type", + [sym_union_type] = "union_type", + [sym_intersection_type] = "intersection_type", + [sym_primitive_type] = "primitive_type", + [sym_cast_type] = "cast_type", + [sym__return_type] = "_return_type", + [sym_const_element] = "const_element", + [sym_echo_statement] = "echo_statement", + [sym_unset_statement] = "unset_statement", + [sym_declare_statement] = "declare_statement", + [sym_declare_directive] = "declare_directive", + [sym_try_statement] = "try_statement", + [sym_catch_clause] = "catch_clause", + [sym_type_list] = "type_list", + [sym_finally_clause] = "finally_clause", + [sym_goto_statement] = "goto_statement", + [sym_continue_statement] = "continue_statement", + [sym_break_statement] = "break_statement", + [sym_return_statement] = "return_statement", + [sym_throw_expression] = "throw_expression", + [sym_while_statement] = "while_statement", + [sym_do_statement] = "do_statement", + [sym_for_statement] = "for_statement", + [sym__expressions] = "_expressions", + [sym_sequence_expression] = "sequence_expression", + [sym_foreach_statement] = "foreach_statement", + [sym_foreach_pair] = "pair", + [sym_if_statement] = "if_statement", + [sym_colon_block] = "colon_block", + [sym_else_if_clause] = "else_if_clause", + [sym_else_clause] = "else_clause", + [sym_else_if_clause_2] = "else_if_clause", + [sym_else_clause_2] = "else_clause", + [sym_match_expression] = "match_expression", + [sym_match_block] = "match_block", + [sym_match_condition_list] = "match_condition_list", + [sym_match_conditional_expression] = "match_conditional_expression", + [sym_match_default_expression] = "match_default_expression", + [sym_switch_statement] = "switch_statement", + [sym_switch_block] = "switch_block", + [sym_case_statement] = "case_statement", + [sym_default_statement] = "default_statement", + [sym_compound_statement] = "compound_statement", + [sym_named_label_statement] = "named_label_statement", + [sym_expression_statement] = "expression_statement", + [sym__expression] = "_expression", + [sym__unary_expression] = "_unary_expression", + [sym_unary_op_expression] = "unary_op_expression", + [sym_exponentiation_expression] = "exponentiation_expression", + [sym_clone_expression] = "clone_expression", + [sym__primary_expression] = "_primary_expression", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym_class_constant_access_expression] = "class_constant_access_expression", + [sym_print_intrinsic] = "print_intrinsic", + [sym_anonymous_function_creation_expression] = "anonymous_function_creation_expression", + [sym_anonymous_function_use_clause] = "anonymous_function_use_clause", + [sym_object_creation_expression] = "object_creation_expression", + [sym_update_expression] = "update_expression", + [sym_cast_expression] = "cast_expression", + [sym_cast_variable] = "cast_expression", + [sym_assignment_expression] = "assignment_expression", + [sym_reference_assignment_expression] = "reference_assignment_expression", + [sym_conditional_expression] = "conditional_expression", + [sym_augmented_assignment_expression] = "augmented_assignment_expression", + [sym_member_access_expression] = "member_access_expression", + [sym_nullsafe_member_access_expression] = "nullsafe_member_access_expression", + [sym_scoped_property_access_expression] = "scoped_property_access_expression", + [sym_list_literal] = "list_literal", + [sym__list_destructing] = "_list_destructing", + [sym__array_destructing] = "_array_destructing", + [sym__array_destructing_element] = "_array_destructing_element", + [sym_function_call_expression] = "function_call_expression", + [sym_scoped_call_expression] = "scoped_call_expression", + [sym__scope_resolution_qualifier] = "_scope_resolution_qualifier", + [sym_relative_scope] = "relative_scope", + [sym_variadic_placeholder] = "variadic_placeholder", + [sym_arguments] = "arguments", + [sym_argument] = "argument", + [sym_member_call_expression] = "member_call_expression", + [sym_nullsafe_member_call_expression] = "nullsafe_member_call_expression", + [sym_variadic_unpacking] = "variadic_unpacking", + [sym_subscript_expression] = "subscript_expression", + [sym__dereferencable_expression] = "_dereferencable_expression", + [sym_array_creation_expression] = "array_creation_expression", + [sym_attribute_group] = "attribute_group", + [sym_attribute_list] = "attribute_list", + [sym_attribute] = "attribute", + [sym__complex_string_part] = "_complex_string_part", + [sym__simple_string_member_access_expression] = "member_access_expression", + [sym__simple_string_subscript_unary_expression] = "unary_op_expression", + [sym__simple_string_array_access_argument] = "_simple_string_array_access_argument", + [sym__simple_string_subscript_expression] = "subscript_expression", + [sym__simple_string_part] = "_simple_string_part", + [aux_sym__interpolated_string_body] = "_interpolated_string_body", + [aux_sym__interpolated_string_body_heredoc] = "_interpolated_string_body_heredoc", + [sym_encapsed_string] = "encapsed_string", + [sym_string] = "string", + [sym_heredoc_body] = "heredoc_body", + [sym_heredoc] = "heredoc", + [sym__new_line] = "_new_line", + [sym_nowdoc_body] = "nowdoc_body", + [sym_nowdoc] = "nowdoc", + [aux_sym__interpolated_execution_operator_body] = "_interpolated_execution_operator_body", + [sym_shell_command_expression] = "shell_command_expression", + [sym__string] = "_string", + [sym_dynamic_variable_name] = "dynamic_variable_name", + [sym_variable_name] = "variable_name", + [sym_variable_reference] = "by_ref", + [sym_by_ref] = "by_ref", + [sym_yield_expression] = "yield_expression", + [sym_array_element_initializer] = "array_element_initializer", + [sym_binary_expression] = "binary_expression", + [sym_include_expression] = "include_expression", + [sym_include_once_expression] = "include_once_expression", + [sym_require_expression] = "require_expression", + [sym_require_once_expression] = "require_once_expression", + [sym__reserved_identifier] = "name", + [aux_sym_php_repeat1] = "php_repeat1", + [aux_sym_function_static_declaration_repeat1] = "function_static_declaration_repeat1", + [aux_sym_global_declaration_repeat1] = "global_declaration_repeat1", + [aux_sym_namespace_use_declaration_repeat1] = "namespace_use_declaration_repeat1", + [aux_sym_namespace_name_repeat1] = "namespace_name_repeat1", + [aux_sym_namespace_use_group_repeat1] = "namespace_use_group_repeat1", + [aux_sym_base_clause_repeat1] = "base_clause_repeat1", + [aux_sym_enum_declaration_list_repeat1] = "enum_declaration_list_repeat1", + [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", + [aux_sym__const_declaration_repeat1] = "_const_declaration_repeat1", + [aux_sym_property_declaration_repeat1] = "property_declaration_repeat1", + [aux_sym_property_declaration_repeat2] = "property_declaration_repeat2", + [aux_sym_use_list_repeat1] = "use_list_repeat1", + [aux_sym_formal_parameters_repeat1] = "formal_parameters_repeat1", + [aux_sym_union_type_repeat1] = "union_type_repeat1", + [aux_sym_intersection_type_repeat1] = "intersection_type_repeat1", + [aux_sym_unset_statement_repeat1] = "unset_statement_repeat1", + [aux_sym_try_statement_repeat1] = "try_statement_repeat1", + [aux_sym_type_list_repeat1] = "type_list_repeat1", + [aux_sym_if_statement_repeat1] = "if_statement_repeat1", + [aux_sym_if_statement_repeat2] = "if_statement_repeat2", + [aux_sym_match_block_repeat1] = "match_block_repeat1", + [aux_sym_match_condition_list_repeat1] = "match_condition_list_repeat1", + [aux_sym_switch_block_repeat1] = "switch_block_repeat1", + [aux_sym_anonymous_function_use_clause_repeat1] = "anonymous_function_use_clause_repeat1", + [aux_sym__list_destructing_repeat1] = "_list_destructing_repeat1", + [aux_sym__array_destructing_repeat1] = "_array_destructing_repeat1", + [aux_sym_arguments_repeat1] = "arguments_repeat1", + [aux_sym_array_creation_expression_repeat1] = "array_creation_expression_repeat1", + [aux_sym_attribute_group_repeat1] = "attribute_group_repeat1", + [aux_sym_attribute_list_repeat1] = "attribute_list_repeat1", + [aux_sym_heredoc_body_repeat1] = "heredoc_body_repeat1", + [aux_sym_nowdoc_body_repeat1] = "nowdoc_body_repeat1", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_name] = sym_name, + [anon_sym_QMARK_GT] = anon_sym_QMARK_GT, + [sym_php_tag] = sym_php_tag, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_AMP] = anon_sym_AMP, + [aux_sym_function_static_declaration_token1] = anon_sym_static, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_EQ] = anon_sym_EQ, + [aux_sym_global_declaration_token1] = aux_sym_global_declaration_token1, + [aux_sym_namespace_definition_token1] = aux_sym_namespace_definition_token1, + [aux_sym_namespace_use_declaration_token1] = aux_sym_namespace_use_declaration_token1, + [aux_sym_namespace_use_declaration_token2] = aux_sym_namespace_use_declaration_token2, + [aux_sym_namespace_use_declaration_token3] = aux_sym_namespace_use_declaration_token3, + [anon_sym_BSLASH] = anon_sym_BSLASH, + [aux_sym_namespace_aliasing_clause_token1] = aux_sym_namespace_aliasing_clause_token1, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [aux_sym_trait_declaration_token1] = aux_sym_trait_declaration_token1, + [aux_sym_interface_declaration_token1] = aux_sym_interface_declaration_token1, + [aux_sym_base_clause_token1] = aux_sym_base_clause_token1, + [aux_sym_enum_declaration_token1] = aux_sym_enum_declaration_token1, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_string] = anon_sym_string, + [anon_sym_int] = anon_sym_int, + [aux_sym_enum_case_token1] = aux_sym_enum_case_token1, + [aux_sym_class_declaration_token1] = aux_sym_class_declaration_token1, + [aux_sym_final_modifier_token1] = aux_sym_final_modifier_token1, + [aux_sym_abstract_modifier_token1] = aux_sym_abstract_modifier_token1, + [aux_sym_readonly_modifier_token1] = aux_sym_readonly_modifier_token1, + [aux_sym_class_interface_clause_token1] = aux_sym_class_interface_clause_token1, + [sym_var_modifier] = sym_var_modifier, + [aux_sym_use_instead_of_clause_token1] = aux_sym_use_instead_of_clause_token1, + [aux_sym_visibility_modifier_token1] = aux_sym_visibility_modifier_token1, + [aux_sym_visibility_modifier_token2] = aux_sym_visibility_modifier_token2, + [aux_sym_visibility_modifier_token3] = aux_sym_visibility_modifier_token3, + [aux_sym__arrow_function_header_token1] = aux_sym__arrow_function_header_token1, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, + [anon_sym_QMARK] = anon_sym_QMARK, + [sym_bottom_type] = sym_bottom_type, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_array] = anon_sym_array, + [aux_sym_primitive_type_token1] = aux_sym_primitive_type_token1, + [anon_sym_iterable] = anon_sym_iterable, + [anon_sym_bool] = anon_sym_bool, + [anon_sym_float] = anon_sym_float, + [anon_sym_void] = anon_sym_void, + [anon_sym_mixed] = anon_sym_mixed, + [anon_sym_static] = anon_sym_static, + [anon_sym_false] = anon_sym_false, + [anon_sym_null] = anon_sym_null, + [anon_sym_true] = anon_sym_true, + [aux_sym_cast_type_token1] = aux_sym_cast_type_token1, + [aux_sym_cast_type_token2] = aux_sym_cast_type_token2, + [aux_sym_cast_type_token3] = aux_sym_cast_type_token3, + [aux_sym_cast_type_token4] = aux_sym_cast_type_token4, + [aux_sym_cast_type_token5] = aux_sym_cast_type_token5, + [aux_sym_cast_type_token6] = aux_sym_cast_type_token6, + [aux_sym_cast_type_token7] = aux_sym_cast_type_token7, + [aux_sym_cast_type_token8] = aux_sym_cast_type_token8, + [aux_sym_cast_type_token9] = aux_sym_cast_type_token9, + [aux_sym_cast_type_token10] = aux_sym_cast_type_token10, + [aux_sym_cast_type_token11] = aux_sym_cast_type_token11, + [aux_sym_cast_type_token12] = aux_sym_cast_type_token12, + [aux_sym_echo_statement_token1] = aux_sym_echo_statement_token1, + [anon_sym_unset] = anon_sym_unset, + [aux_sym_declare_statement_token1] = aux_sym_declare_statement_token1, + [aux_sym_declare_statement_token2] = aux_sym_declare_statement_token2, + [anon_sym_ticks] = anon_sym_ticks, + [anon_sym_encoding] = anon_sym_encoding, + [anon_sym_strict_types] = anon_sym_strict_types, + [sym_float] = sym_float, + [aux_sym_try_statement_token1] = aux_sym_try_statement_token1, + [aux_sym_catch_clause_token1] = aux_sym_catch_clause_token1, + [aux_sym_finally_clause_token1] = aux_sym_finally_clause_token1, + [aux_sym_goto_statement_token1] = aux_sym_goto_statement_token1, + [aux_sym_continue_statement_token1] = aux_sym_continue_statement_token1, + [aux_sym_break_statement_token1] = aux_sym_break_statement_token1, + [sym_integer] = sym_integer, + [aux_sym_return_statement_token1] = aux_sym_return_statement_token1, + [aux_sym_throw_expression_token1] = aux_sym_throw_expression_token1, + [aux_sym_while_statement_token1] = aux_sym_while_statement_token1, + [aux_sym_while_statement_token2] = aux_sym_while_statement_token2, + [aux_sym_do_statement_token1] = aux_sym_do_statement_token1, + [aux_sym_for_statement_token1] = aux_sym_for_statement_token1, + [aux_sym_for_statement_token2] = aux_sym_for_statement_token2, + [aux_sym_foreach_statement_token1] = aux_sym_foreach_statement_token1, + [aux_sym_foreach_statement_token2] = aux_sym_foreach_statement_token2, + [aux_sym_if_statement_token1] = aux_sym_if_statement_token1, + [aux_sym_if_statement_token2] = aux_sym_if_statement_token2, + [aux_sym_else_if_clause_token1] = aux_sym_else_if_clause_token1, + [aux_sym_else_clause_token1] = aux_sym_else_clause_token1, + [aux_sym_match_expression_token1] = aux_sym_match_expression_token1, + [aux_sym_match_default_expression_token1] = aux_sym_match_default_expression_token1, + [aux_sym_switch_statement_token1] = aux_sym_switch_statement_token1, + [aux_sym_switch_block_token1] = aux_sym_switch_block_token1, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [aux_sym_clone_expression_token1] = aux_sym_clone_expression_token1, + [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, + [aux_sym_print_intrinsic_token1] = aux_sym_print_intrinsic_token1, + [aux_sym_object_creation_expression_token1] = aux_sym_object_creation_expression_token1, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_DOT_EQ] = anon_sym_DOT_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_QMARK_QMARK_EQ] = anon_sym_QMARK_QMARK_EQ, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_QMARK_DASH_GT] = anon_sym_QMARK_DASH_GT, + [aux_sym__list_destructing_token1] = aux_sym__list_destructing_token1, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_self] = anon_sym_self, + [anon_sym_parent] = anon_sym_parent, + [anon_sym_POUND_LBRACK] = anon_sym_POUND_LBRACK, + [sym_escape_sequence] = sym_escape_sequence, + [anon_sym_BSLASHu] = sym_string_value, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [anon_sym_LT_QMARK] = sym_string_value, + [anon_sym_QMARK_GT2] = sym_string_value, + [aux_sym_encapsed_string_token1] = aux_sym_encapsed_string_token1, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [aux_sym_string_token1] = aux_sym_string_token1, + [sym_string_value] = sym_string_value, + [anon_sym_LT_LT_LT] = anon_sym_LT_LT_LT, + [anon_sym_DQUOTE2] = anon_sym_DQUOTE, + [aux_sym__new_line_token1] = aux_sym__new_line_token1, + [aux_sym__new_line_token2] = aux_sym__new_line_token2, + [anon_sym_] = sym_nowdoc_string, + [anon_sym_SQUOTE2] = anon_sym_SQUOTE, + [anon_sym_BQUOTE] = anon_sym_BQUOTE, + [sym_boolean] = sym_boolean, + [sym_null] = sym_null, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, + [aux_sym_yield_expression_token1] = aux_sym_yield_expression_token1, + [aux_sym_yield_expression_token2] = aux_sym_yield_expression_token2, + [aux_sym_binary_expression_token1] = aux_sym_binary_expression_token1, + [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, + [aux_sym_binary_expression_token2] = aux_sym_binary_expression_token2, + [aux_sym_binary_expression_token3] = aux_sym_binary_expression_token3, + [aux_sym_binary_expression_token4] = aux_sym_binary_expression_token4, + [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_LT_GT] = anon_sym_LT_GT, + [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, + [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_LT_EQ_GT] = anon_sym_LT_EQ_GT, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [aux_sym_include_expression_token1] = aux_sym_include_expression_token1, + [aux_sym_include_once_expression_token1] = aux_sym_include_once_expression_token1, + [aux_sym_require_expression_token1] = aux_sym_require_expression_token1, + [aux_sym_require_once_expression_token1] = aux_sym_require_once_expression_token1, + [sym_comment] = sym_comment, + [sym__automatic_semicolon] = sym__automatic_semicolon, + [sym_encapsed_string_chars] = sym_string_value, + [sym_encapsed_string_chars_after_variable] = sym_string_value, + [sym_execution_string_chars] = sym_string_value, + [sym_execution_string_chars_after_variable] = sym_string_value, + [sym_encapsed_string_chars_heredoc] = sym_string_value, + [sym_encapsed_string_chars_after_variable_heredoc] = sym_string_value, + [sym_heredoc_start] = sym_heredoc_start, + [sym_heredoc_end] = sym_heredoc_end, + [sym_nowdoc_string] = sym_nowdoc_string, + [sym_sentinel_error] = sym_sentinel_error, + [sym_php] = sym_php, + [sym_empty_statement] = sym_empty_statement, + [sym_reference_modifier] = sym_reference_modifier, + [sym_function_static_declaration] = sym_function_static_declaration, + [sym_static_variable_declaration] = sym_static_variable_declaration, + [sym_global_declaration] = sym_global_declaration, + [sym_namespace_definition] = sym_namespace_definition, + [sym_namespace_use_declaration] = sym_namespace_use_declaration, + [sym_namespace_use_clause] = sym_namespace_use_clause, + [sym_qualified_name] = sym_qualified_name, + [sym_namespace_name_as_prefix] = sym_namespace_name_as_prefix, + [sym_namespace_name] = sym_namespace_name, + [sym_namespace_aliasing_clause] = sym_namespace_aliasing_clause, + [sym_namespace_use_group] = sym_namespace_use_group, + [sym_namespace_use_group_clause] = sym_namespace_use_group_clause, + [sym_trait_declaration] = sym_trait_declaration, + [sym_interface_declaration] = sym_interface_declaration, + [sym_base_clause] = sym_base_clause, + [sym_enum_declaration] = sym_enum_declaration, + [sym_enum_declaration_list] = sym_enum_declaration_list, + [sym__enum_member_declaration] = sym__enum_member_declaration, + [sym_enum_case] = sym_enum_case, + [sym_class_declaration] = sym_class_declaration, + [sym_declaration_list] = sym_declaration_list, + [sym_final_modifier] = sym_final_modifier, + [sym_abstract_modifier] = sym_abstract_modifier, + [sym_readonly_modifier] = sym_readonly_modifier, + [sym_class_interface_clause] = sym_class_interface_clause, + [sym__member_declaration] = sym__member_declaration, + [sym_const_declaration] = sym_const_declaration, + [sym__class_const_declaration] = sym_const_declaration, + [sym__const_declaration] = sym__const_declaration, + [sym_property_declaration] = sym_property_declaration, + [sym__modifier] = sym__modifier, + [sym_property_element] = sym_property_element, + [sym_property_initializer] = sym_property_initializer, + [sym_method_declaration] = sym_method_declaration, + [sym_static_modifier] = sym_static_modifier, + [sym_use_declaration] = sym_use_declaration, + [sym_use_list] = sym_use_list, + [sym_use_instead_of_clause] = sym_use_instead_of_clause, + [sym_use_as_clause] = sym_use_as_clause, + [sym_visibility_modifier] = sym_visibility_modifier, + [sym_function_definition] = sym_function_definition, + [sym__function_definition_header] = sym__function_definition_header, + [sym__arrow_function_header] = sym__arrow_function_header, + [sym_arrow_function] = sym_arrow_function, + [sym_formal_parameters] = sym_formal_parameters, + [sym_property_promotion_parameter] = sym_property_promotion_parameter, + [sym_simple_parameter] = sym_simple_parameter, + [sym_variadic_parameter] = sym_variadic_parameter, + [sym__type] = sym__type, + [sym__types] = sym__types, + [sym_named_type] = sym_named_type, + [sym_optional_type] = sym_optional_type, + [sym_union_type] = sym_union_type, + [sym_intersection_type] = sym_intersection_type, + [sym_primitive_type] = sym_primitive_type, + [sym_cast_type] = sym_cast_type, + [sym__return_type] = sym__return_type, + [sym_const_element] = sym_const_element, + [sym_echo_statement] = sym_echo_statement, + [sym_unset_statement] = sym_unset_statement, + [sym_declare_statement] = sym_declare_statement, + [sym_declare_directive] = sym_declare_directive, + [sym_try_statement] = sym_try_statement, + [sym_catch_clause] = sym_catch_clause, + [sym_type_list] = sym_type_list, + [sym_finally_clause] = sym_finally_clause, + [sym_goto_statement] = sym_goto_statement, + [sym_continue_statement] = sym_continue_statement, + [sym_break_statement] = sym_break_statement, + [sym_return_statement] = sym_return_statement, + [sym_throw_expression] = sym_throw_expression, + [sym_while_statement] = sym_while_statement, + [sym_do_statement] = sym_do_statement, + [sym_for_statement] = sym_for_statement, + [sym__expressions] = sym__expressions, + [sym_sequence_expression] = sym_sequence_expression, + [sym_foreach_statement] = sym_foreach_statement, + [sym_foreach_pair] = sym_foreach_pair, + [sym_if_statement] = sym_if_statement, + [sym_colon_block] = sym_colon_block, + [sym_else_if_clause] = sym_else_if_clause, + [sym_else_clause] = sym_else_clause, + [sym_else_if_clause_2] = sym_else_if_clause, + [sym_else_clause_2] = sym_else_clause, + [sym_match_expression] = sym_match_expression, + [sym_match_block] = sym_match_block, + [sym_match_condition_list] = sym_match_condition_list, + [sym_match_conditional_expression] = sym_match_conditional_expression, + [sym_match_default_expression] = sym_match_default_expression, + [sym_switch_statement] = sym_switch_statement, + [sym_switch_block] = sym_switch_block, + [sym_case_statement] = sym_case_statement, + [sym_default_statement] = sym_default_statement, + [sym_compound_statement] = sym_compound_statement, + [sym_named_label_statement] = sym_named_label_statement, + [sym_expression_statement] = sym_expression_statement, + [sym__expression] = sym__expression, + [sym__unary_expression] = sym__unary_expression, + [sym_unary_op_expression] = sym_unary_op_expression, + [sym_exponentiation_expression] = sym_exponentiation_expression, + [sym_clone_expression] = sym_clone_expression, + [sym__primary_expression] = sym__primary_expression, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym_class_constant_access_expression] = sym_class_constant_access_expression, + [sym_print_intrinsic] = sym_print_intrinsic, + [sym_anonymous_function_creation_expression] = sym_anonymous_function_creation_expression, + [sym_anonymous_function_use_clause] = sym_anonymous_function_use_clause, + [sym_object_creation_expression] = sym_object_creation_expression, + [sym_update_expression] = sym_update_expression, + [sym_cast_expression] = sym_cast_expression, + [sym_cast_variable] = sym_cast_expression, + [sym_assignment_expression] = sym_assignment_expression, + [sym_reference_assignment_expression] = sym_reference_assignment_expression, + [sym_conditional_expression] = sym_conditional_expression, + [sym_augmented_assignment_expression] = sym_augmented_assignment_expression, + [sym_member_access_expression] = sym_member_access_expression, + [sym_nullsafe_member_access_expression] = sym_nullsafe_member_access_expression, + [sym_scoped_property_access_expression] = sym_scoped_property_access_expression, + [sym_list_literal] = sym_list_literal, + [sym__list_destructing] = sym__list_destructing, + [sym__array_destructing] = sym__array_destructing, + [sym__array_destructing_element] = sym__array_destructing_element, + [sym_function_call_expression] = sym_function_call_expression, + [sym_scoped_call_expression] = sym_scoped_call_expression, + [sym__scope_resolution_qualifier] = sym__scope_resolution_qualifier, + [sym_relative_scope] = sym_relative_scope, + [sym_variadic_placeholder] = sym_variadic_placeholder, + [sym_arguments] = sym_arguments, + [sym_argument] = sym_argument, + [sym_member_call_expression] = sym_member_call_expression, + [sym_nullsafe_member_call_expression] = sym_nullsafe_member_call_expression, + [sym_variadic_unpacking] = sym_variadic_unpacking, + [sym_subscript_expression] = sym_subscript_expression, + [sym__dereferencable_expression] = sym__dereferencable_expression, + [sym_array_creation_expression] = sym_array_creation_expression, + [sym_attribute_group] = sym_attribute_group, + [sym_attribute_list] = sym_attribute_list, + [sym_attribute] = sym_attribute, + [sym__complex_string_part] = sym__complex_string_part, + [sym__simple_string_member_access_expression] = sym_member_access_expression, + [sym__simple_string_subscript_unary_expression] = sym_unary_op_expression, + [sym__simple_string_array_access_argument] = sym__simple_string_array_access_argument, + [sym__simple_string_subscript_expression] = sym_subscript_expression, + [sym__simple_string_part] = sym__simple_string_part, + [aux_sym__interpolated_string_body] = aux_sym__interpolated_string_body, + [aux_sym__interpolated_string_body_heredoc] = aux_sym__interpolated_string_body_heredoc, + [sym_encapsed_string] = sym_encapsed_string, + [sym_string] = sym_string, + [sym_heredoc_body] = sym_heredoc_body, + [sym_heredoc] = sym_heredoc, + [sym__new_line] = sym__new_line, + [sym_nowdoc_body] = sym_nowdoc_body, + [sym_nowdoc] = sym_nowdoc, + [aux_sym__interpolated_execution_operator_body] = aux_sym__interpolated_execution_operator_body, + [sym_shell_command_expression] = sym_shell_command_expression, + [sym__string] = sym__string, + [sym_dynamic_variable_name] = sym_dynamic_variable_name, + [sym_variable_name] = sym_variable_name, + [sym_variable_reference] = sym_by_ref, + [sym_by_ref] = sym_by_ref, + [sym_yield_expression] = sym_yield_expression, + [sym_array_element_initializer] = sym_array_element_initializer, + [sym_binary_expression] = sym_binary_expression, + [sym_include_expression] = sym_include_expression, + [sym_include_once_expression] = sym_include_once_expression, + [sym_require_expression] = sym_require_expression, + [sym_require_once_expression] = sym_require_once_expression, + [sym__reserved_identifier] = sym_name, + [aux_sym_php_repeat1] = aux_sym_php_repeat1, + [aux_sym_function_static_declaration_repeat1] = aux_sym_function_static_declaration_repeat1, + [aux_sym_global_declaration_repeat1] = aux_sym_global_declaration_repeat1, + [aux_sym_namespace_use_declaration_repeat1] = aux_sym_namespace_use_declaration_repeat1, + [aux_sym_namespace_name_repeat1] = aux_sym_namespace_name_repeat1, + [aux_sym_namespace_use_group_repeat1] = aux_sym_namespace_use_group_repeat1, + [aux_sym_base_clause_repeat1] = aux_sym_base_clause_repeat1, + [aux_sym_enum_declaration_list_repeat1] = aux_sym_enum_declaration_list_repeat1, + [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, + [aux_sym__const_declaration_repeat1] = aux_sym__const_declaration_repeat1, + [aux_sym_property_declaration_repeat1] = aux_sym_property_declaration_repeat1, + [aux_sym_property_declaration_repeat2] = aux_sym_property_declaration_repeat2, + [aux_sym_use_list_repeat1] = aux_sym_use_list_repeat1, + [aux_sym_formal_parameters_repeat1] = aux_sym_formal_parameters_repeat1, + [aux_sym_union_type_repeat1] = aux_sym_union_type_repeat1, + [aux_sym_intersection_type_repeat1] = aux_sym_intersection_type_repeat1, + [aux_sym_unset_statement_repeat1] = aux_sym_unset_statement_repeat1, + [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, + [aux_sym_type_list_repeat1] = aux_sym_type_list_repeat1, + [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, + [aux_sym_if_statement_repeat2] = aux_sym_if_statement_repeat2, + [aux_sym_match_block_repeat1] = aux_sym_match_block_repeat1, + [aux_sym_match_condition_list_repeat1] = aux_sym_match_condition_list_repeat1, + [aux_sym_switch_block_repeat1] = aux_sym_switch_block_repeat1, + [aux_sym_anonymous_function_use_clause_repeat1] = aux_sym_anonymous_function_use_clause_repeat1, + [aux_sym__list_destructing_repeat1] = aux_sym__list_destructing_repeat1, + [aux_sym__array_destructing_repeat1] = aux_sym__array_destructing_repeat1, + [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, + [aux_sym_array_creation_expression_repeat1] = aux_sym_array_creation_expression_repeat1, + [aux_sym_attribute_group_repeat1] = aux_sym_attribute_group_repeat1, + [aux_sym_attribute_list_repeat1] = aux_sym_attribute_list_repeat1, + [aux_sym_heredoc_body_repeat1] = aux_sym_heredoc_body_repeat1, + [aux_sym_nowdoc_body_repeat1] = aux_sym_nowdoc_body_repeat1, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_name] = { + .visible = true, + .named = true, + }, + [anon_sym_QMARK_GT] = { + .visible = true, + .named = false, + }, + [sym_php_tag] = { + .visible = true, + .named = true, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [aux_sym_function_static_declaration_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [aux_sym_global_declaration_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_namespace_definition_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_namespace_use_declaration_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_namespace_use_declaration_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_namespace_use_declaration_token3] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH] = { + .visible = true, + .named = false, + }, + [aux_sym_namespace_aliasing_clause_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [aux_sym_trait_declaration_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_interface_declaration_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_base_clause_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_enum_declaration_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_string] = { + .visible = true, + .named = false, + }, + [anon_sym_int] = { + .visible = true, + .named = false, + }, + [aux_sym_enum_case_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_class_declaration_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_final_modifier_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_abstract_modifier_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_readonly_modifier_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_class_interface_clause_token1] = { + .visible = true, + .named = false, + }, + [sym_var_modifier] = { + .visible = true, + .named = true, + }, + [aux_sym_use_instead_of_clause_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_visibility_modifier_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_visibility_modifier_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_visibility_modifier_token3] = { + .visible = true, + .named = false, + }, + [aux_sym__arrow_function_header_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [sym_bottom_type] = { + .visible = true, + .named = true, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_array] = { + .visible = true, + .named = false, + }, + [aux_sym_primitive_type_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_iterable] = { + .visible = true, + .named = false, + }, + [anon_sym_bool] = { + .visible = true, + .named = false, + }, + [anon_sym_float] = { + .visible = true, + .named = false, + }, + [anon_sym_void] = { + .visible = true, + .named = false, + }, + [anon_sym_mixed] = { + .visible = true, + .named = false, + }, + [anon_sym_static] = { + .visible = true, + .named = false, + }, + [anon_sym_false] = { + .visible = true, + .named = false, + }, + [anon_sym_null] = { + .visible = true, + .named = false, + }, + [anon_sym_true] = { + .visible = true, + .named = false, + }, + [aux_sym_cast_type_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token4] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token5] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token6] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token7] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token8] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token9] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token10] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token11] = { + .visible = false, + .named = false, + }, + [aux_sym_cast_type_token12] = { + .visible = false, + .named = false, + }, + [aux_sym_echo_statement_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_unset] = { + .visible = true, + .named = false, + }, + [aux_sym_declare_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_declare_statement_token2] = { + .visible = true, + .named = false, + }, + [anon_sym_ticks] = { + .visible = true, + .named = false, + }, + [anon_sym_encoding] = { + .visible = true, + .named = false, + }, + [anon_sym_strict_types] = { + .visible = true, + .named = false, + }, + [sym_float] = { + .visible = true, + .named = true, + }, + [aux_sym_try_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_catch_clause_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_finally_clause_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_goto_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_continue_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_break_statement_token1] = { + .visible = true, + .named = false, + }, + [sym_integer] = { + .visible = true, + .named = true, + }, + [aux_sym_return_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_throw_expression_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_while_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_while_statement_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_do_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_for_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_for_statement_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_foreach_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_foreach_statement_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_if_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_if_statement_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_else_if_clause_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_else_clause_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_match_expression_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_match_default_expression_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_switch_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_switch_block_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR] = { + .visible = true, + .named = false, + }, + [aux_sym_clone_expression_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_COLON] = { + .visible = true, + .named = false, + }, + [aux_sym_print_intrinsic_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_object_creation_expression_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_QMARK_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_DASH_GT] = { + .visible = true, + .named = false, + }, + [aux_sym__list_destructing_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_self] = { + .visible = true, + .named = false, + }, + [anon_sym_parent] = { + .visible = true, + .named = false, + }, + [anon_sym_POUND_LBRACK] = { + .visible = true, + .named = false, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [anon_sym_BSLASHu] = { + .visible = true, + .named = true, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_QMARK] = { + .visible = true, + .named = true, + }, + [anon_sym_QMARK_GT2] = { + .visible = true, + .named = true, + }, + [aux_sym_encapsed_string_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_string_token1] = { + .visible = false, + .named = false, + }, + [sym_string_value] = { + .visible = true, + .named = true, + }, + [anon_sym_LT_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE2] = { + .visible = true, + .named = false, + }, + [aux_sym__new_line_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__new_line_token2] = { + .visible = false, + .named = false, + }, + [anon_sym_] = { + .visible = true, + .named = true, + }, + [anon_sym_SQUOTE2] = { + .visible = true, + .named = false, + }, + [anon_sym_BQUOTE] = { + .visible = true, + .named = false, + }, + [sym_boolean] = { + .visible = true, + .named = true, + }, + [sym_null] = { + .visible = true, + .named = true, + }, + [anon_sym_DOLLAR] = { + .visible = true, + .named = false, + }, + [aux_sym_yield_expression_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_yield_expression_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_binary_expression_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_QMARK] = { + .visible = true, + .named = false, + }, + [aux_sym_binary_expression_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_binary_expression_token3] = { + .visible = true, + .named = false, + }, + [aux_sym_binary_expression_token4] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [aux_sym_include_expression_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_include_once_expression_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_require_expression_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_require_once_expression_token1] = { + .visible = true, + .named = false, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [sym__automatic_semicolon] = { + .visible = false, + .named = true, + }, + [sym_encapsed_string_chars] = { + .visible = true, + .named = true, + }, + [sym_encapsed_string_chars_after_variable] = { + .visible = true, + .named = true, + }, + [sym_execution_string_chars] = { + .visible = true, + .named = true, + }, + [sym_execution_string_chars_after_variable] = { + .visible = true, + .named = true, + }, + [sym_encapsed_string_chars_heredoc] = { + .visible = true, + .named = true, + }, + [sym_encapsed_string_chars_after_variable_heredoc] = { + .visible = true, + .named = true, + }, + [sym_heredoc_start] = { + .visible = true, + .named = true, + }, + [sym_heredoc_end] = { + .visible = true, + .named = true, + }, + [sym_nowdoc_string] = { + .visible = true, + .named = true, + }, + [sym_sentinel_error] = { + .visible = true, + .named = true, + }, + [sym_php] = { + .visible = true, + .named = true, + }, + [sym_empty_statement] = { + .visible = true, + .named = true, + }, + [sym_reference_modifier] = { + .visible = true, + .named = true, + }, + [sym_function_static_declaration] = { + .visible = true, + .named = true, + }, + [sym_static_variable_declaration] = { + .visible = true, + .named = true, + }, + [sym_global_declaration] = { + .visible = true, + .named = true, + }, + [sym_namespace_definition] = { + .visible = true, + .named = true, + }, + [sym_namespace_use_declaration] = { + .visible = true, + .named = true, + }, + [sym_namespace_use_clause] = { + .visible = true, + .named = true, + }, + [sym_qualified_name] = { + .visible = true, + .named = true, + }, + [sym_namespace_name_as_prefix] = { + .visible = true, + .named = true, + }, + [sym_namespace_name] = { + .visible = true, + .named = true, + }, + [sym_namespace_aliasing_clause] = { + .visible = true, + .named = true, + }, + [sym_namespace_use_group] = { + .visible = true, + .named = true, + }, + [sym_namespace_use_group_clause] = { + .visible = true, + .named = true, + }, + [sym_trait_declaration] = { + .visible = true, + .named = true, + }, + [sym_interface_declaration] = { + .visible = true, + .named = true, + }, + [sym_base_clause] = { + .visible = true, + .named = true, + }, + [sym_enum_declaration] = { + .visible = true, + .named = true, + }, + [sym_enum_declaration_list] = { + .visible = true, + .named = true, + }, + [sym__enum_member_declaration] = { + .visible = false, + .named = true, + }, + [sym_enum_case] = { + .visible = true, + .named = true, + }, + [sym_class_declaration] = { + .visible = true, + .named = true, + }, + [sym_declaration_list] = { + .visible = true, + .named = true, + }, + [sym_final_modifier] = { + .visible = true, + .named = true, + }, + [sym_abstract_modifier] = { + .visible = true, + .named = true, + }, + [sym_readonly_modifier] = { + .visible = true, + .named = true, + }, + [sym_class_interface_clause] = { + .visible = true, + .named = true, + }, + [sym__member_declaration] = { + .visible = false, + .named = true, + }, + [sym_const_declaration] = { + .visible = true, + .named = true, + }, + [sym__class_const_declaration] = { + .visible = true, + .named = true, + }, + [sym__const_declaration] = { + .visible = false, + .named = true, + }, + [sym_property_declaration] = { + .visible = true, + .named = true, + }, + [sym__modifier] = { + .visible = false, + .named = true, + }, + [sym_property_element] = { + .visible = true, + .named = true, + }, + [sym_property_initializer] = { + .visible = true, + .named = true, + }, + [sym_method_declaration] = { + .visible = true, + .named = true, + }, + [sym_static_modifier] = { + .visible = true, + .named = true, + }, + [sym_use_declaration] = { + .visible = true, + .named = true, + }, + [sym_use_list] = { + .visible = true, + .named = true, + }, + [sym_use_instead_of_clause] = { + .visible = true, + .named = true, + }, + [sym_use_as_clause] = { + .visible = true, + .named = true, + }, + [sym_visibility_modifier] = { + .visible = true, + .named = true, + }, + [sym_function_definition] = { + .visible = true, + .named = true, + }, + [sym__function_definition_header] = { + .visible = false, + .named = true, + }, + [sym__arrow_function_header] = { + .visible = false, + .named = true, + }, + [sym_arrow_function] = { + .visible = true, + .named = true, + }, + [sym_formal_parameters] = { + .visible = true, + .named = true, + }, + [sym_property_promotion_parameter] = { + .visible = true, + .named = true, + }, + [sym_simple_parameter] = { + .visible = true, + .named = true, + }, + [sym_variadic_parameter] = { + .visible = true, + .named = true, + }, + [sym__type] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__types] = { + .visible = false, + .named = true, + }, + [sym_named_type] = { + .visible = true, + .named = true, + }, + [sym_optional_type] = { + .visible = true, + .named = true, + }, + [sym_union_type] = { + .visible = true, + .named = true, + }, + [sym_intersection_type] = { + .visible = true, + .named = true, + }, + [sym_primitive_type] = { + .visible = true, + .named = true, + }, + [sym_cast_type] = { + .visible = true, + .named = true, + }, + [sym__return_type] = { + .visible = false, + .named = true, + }, + [sym_const_element] = { + .visible = true, + .named = true, + }, + [sym_echo_statement] = { + .visible = true, + .named = true, + }, + [sym_unset_statement] = { + .visible = true, + .named = true, + }, + [sym_declare_statement] = { + .visible = true, + .named = true, + }, + [sym_declare_directive] = { + .visible = true, + .named = true, + }, + [sym_try_statement] = { + .visible = true, + .named = true, + }, + [sym_catch_clause] = { + .visible = true, + .named = true, + }, + [sym_type_list] = { + .visible = true, + .named = true, + }, + [sym_finally_clause] = { + .visible = true, + .named = true, + }, + [sym_goto_statement] = { + .visible = true, + .named = true, + }, + [sym_continue_statement] = { + .visible = true, + .named = true, + }, + [sym_break_statement] = { + .visible = true, + .named = true, + }, + [sym_return_statement] = { + .visible = true, + .named = true, + }, + [sym_throw_expression] = { + .visible = true, + .named = true, + }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_do_statement] = { + .visible = true, + .named = true, + }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, + [sym__expressions] = { + .visible = false, + .named = true, + }, + [sym_sequence_expression] = { + .visible = true, + .named = true, + }, + [sym_foreach_statement] = { + .visible = true, + .named = true, + }, + [sym_foreach_pair] = { + .visible = true, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_colon_block] = { + .visible = true, + .named = true, + }, + [sym_else_if_clause] = { + .visible = true, + .named = true, + }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, + [sym_else_if_clause_2] = { + .visible = true, + .named = true, + }, + [sym_else_clause_2] = { + .visible = true, + .named = true, + }, + [sym_match_expression] = { + .visible = true, + .named = true, + }, + [sym_match_block] = { + .visible = true, + .named = true, + }, + [sym_match_condition_list] = { + .visible = true, + .named = true, + }, + [sym_match_conditional_expression] = { + .visible = true, + .named = true, + }, + [sym_match_default_expression] = { + .visible = true, + .named = true, + }, + [sym_switch_statement] = { + .visible = true, + .named = true, + }, + [sym_switch_block] = { + .visible = true, + .named = true, + }, + [sym_case_statement] = { + .visible = true, + .named = true, + }, + [sym_default_statement] = { + .visible = true, + .named = true, + }, + [sym_compound_statement] = { + .visible = true, + .named = true, + }, + [sym_named_label_statement] = { + .visible = true, + .named = true, + }, + [sym_expression_statement] = { + .visible = true, + .named = true, + }, + [sym__expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__unary_expression] = { + .visible = false, + .named = true, + }, + [sym_unary_op_expression] = { + .visible = true, + .named = true, + }, + [sym_exponentiation_expression] = { + .visible = true, + .named = true, + }, + [sym_clone_expression] = { + .visible = true, + .named = true, + }, + [sym__primary_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_class_constant_access_expression] = { + .visible = true, + .named = true, + }, + [sym_print_intrinsic] = { + .visible = true, + .named = true, + }, + [sym_anonymous_function_creation_expression] = { + .visible = true, + .named = true, + }, + [sym_anonymous_function_use_clause] = { + .visible = true, + .named = true, + }, + [sym_object_creation_expression] = { + .visible = true, + .named = true, + }, + [sym_update_expression] = { + .visible = true, + .named = true, + }, + [sym_cast_expression] = { + .visible = true, + .named = true, + }, + [sym_cast_variable] = { + .visible = true, + .named = true, + }, + [sym_assignment_expression] = { + .visible = true, + .named = true, + }, + [sym_reference_assignment_expression] = { + .visible = true, + .named = true, + }, + [sym_conditional_expression] = { + .visible = true, + .named = true, + }, + [sym_augmented_assignment_expression] = { + .visible = true, + .named = true, + }, + [sym_member_access_expression] = { + .visible = true, + .named = true, + }, + [sym_nullsafe_member_access_expression] = { + .visible = true, + .named = true, + }, + [sym_scoped_property_access_expression] = { + .visible = true, + .named = true, + }, + [sym_list_literal] = { + .visible = true, + .named = true, + }, + [sym__list_destructing] = { + .visible = false, + .named = true, + }, + [sym__array_destructing] = { + .visible = false, + .named = true, + }, + [sym__array_destructing_element] = { + .visible = false, + .named = true, + }, + [sym_function_call_expression] = { + .visible = true, + .named = true, + }, + [sym_scoped_call_expression] = { + .visible = true, + .named = true, + }, + [sym__scope_resolution_qualifier] = { + .visible = false, + .named = true, + }, + [sym_relative_scope] = { + .visible = true, + .named = true, + }, + [sym_variadic_placeholder] = { + .visible = true, + .named = true, + }, + [sym_arguments] = { + .visible = true, + .named = true, + }, + [sym_argument] = { + .visible = true, + .named = true, + }, + [sym_member_call_expression] = { + .visible = true, + .named = true, + }, + [sym_nullsafe_member_call_expression] = { + .visible = true, + .named = true, + }, + [sym_variadic_unpacking] = { + .visible = true, + .named = true, + }, + [sym_subscript_expression] = { + .visible = true, + .named = true, + }, + [sym__dereferencable_expression] = { + .visible = false, + .named = true, + }, + [sym_array_creation_expression] = { + .visible = true, + .named = true, + }, + [sym_attribute_group] = { + .visible = true, + .named = true, + }, + [sym_attribute_list] = { + .visible = true, + .named = true, + }, + [sym_attribute] = { + .visible = true, + .named = true, + }, + [sym__complex_string_part] = { + .visible = false, + .named = true, + }, + [sym__simple_string_member_access_expression] = { + .visible = true, + .named = true, + }, + [sym__simple_string_subscript_unary_expression] = { + .visible = true, + .named = true, + }, + [sym__simple_string_array_access_argument] = { + .visible = false, + .named = true, + }, + [sym__simple_string_subscript_expression] = { + .visible = true, + .named = true, + }, + [sym__simple_string_part] = { + .visible = false, + .named = true, + }, + [aux_sym__interpolated_string_body] = { + .visible = false, + .named = false, + }, + [aux_sym__interpolated_string_body_heredoc] = { + .visible = false, + .named = false, + }, + [sym_encapsed_string] = { + .visible = true, + .named = true, + }, + [sym_string] = { + .visible = true, + .named = true, + }, + [sym_heredoc_body] = { + .visible = true, + .named = true, + }, + [sym_heredoc] = { + .visible = true, + .named = true, + }, + [sym__new_line] = { + .visible = false, + .named = true, + }, + [sym_nowdoc_body] = { + .visible = true, + .named = true, + }, + [sym_nowdoc] = { + .visible = true, + .named = true, + }, + [aux_sym__interpolated_execution_operator_body] = { + .visible = false, + .named = false, + }, + [sym_shell_command_expression] = { + .visible = true, + .named = true, + }, + [sym__string] = { + .visible = false, + .named = true, + }, + [sym_dynamic_variable_name] = { + .visible = true, + .named = true, + }, + [sym_variable_name] = { + .visible = true, + .named = true, + }, + [sym_variable_reference] = { + .visible = true, + .named = true, + }, + [sym_by_ref] = { + .visible = true, + .named = true, + }, + [sym_yield_expression] = { + .visible = true, + .named = true, + }, + [sym_array_element_initializer] = { + .visible = true, + .named = true, + }, + [sym_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_include_expression] = { + .visible = true, + .named = true, + }, + [sym_include_once_expression] = { + .visible = true, + .named = true, + }, + [sym_require_expression] = { + .visible = true, + .named = true, + }, + [sym_require_once_expression] = { + .visible = true, + .named = true, + }, + [sym__reserved_identifier] = { + .visible = true, + .named = true, + }, + [aux_sym_php_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_static_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_global_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_namespace_use_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_namespace_name_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_namespace_use_group_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_base_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_enum_declaration_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_declaration_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__const_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_property_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_property_declaration_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_use_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_formal_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_union_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_intersection_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_unset_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_try_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_if_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_if_statement_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_match_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_match_condition_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_switch_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_anonymous_function_use_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__list_destructing_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__array_destructing_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_arguments_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_array_creation_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_group_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_heredoc_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_nowdoc_body_repeat1] = { + .visible = false, + .named = false, + }, +}; + +enum { + field_alternative = 1, + field_arguments = 2, + field_attributes = 3, + field_body = 4, + field_condition = 5, + field_conditional_expressions = 6, + field_default_value = 7, + field_end_tag = 8, + field_function = 9, + field_identifier = 10, + field_left = 11, + field_modifier = 12, + field_name = 13, + field_object = 14, + field_operator = 15, + field_parameters = 16, + field_readonly = 17, + field_reference_modifier = 18, + field_return_expression = 19, + field_return_type = 20, + field_right = 21, + field_scope = 22, + field_type = 23, + field_value = 24, + field_visibility = 25, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_alternative] = "alternative", + [field_arguments] = "arguments", + [field_attributes] = "attributes", + [field_body] = "body", + [field_condition] = "condition", + [field_conditional_expressions] = "conditional_expressions", + [field_default_value] = "default_value", + [field_end_tag] = "end_tag", + [field_function] = "function", + [field_identifier] = "identifier", + [field_left] = "left", + [field_modifier] = "modifier", + [field_name] = "name", + [field_object] = "object", + [field_operator] = "operator", + [field_parameters] = "parameters", + [field_readonly] = "readonly", + [field_reference_modifier] = "reference_modifier", + [field_return_expression] = "return_expression", + [field_return_type] = "return_type", + [field_right] = "right", + [field_scope] = "scope", + [field_type] = "type", + [field_value] = "value", + [field_visibility] = "visibility", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [1] = {.index = 0, .length = 1}, + [2] = {.index = 1, .length = 1}, + [3] = {.index = 2, .length = 1}, + [6] = {.index = 3, .length = 2}, + [7] = {.index = 5, .length = 2}, + [8] = {.index = 7, .length = 5}, + [9] = {.index = 12, .length = 1}, + [10] = {.index = 13, .length = 2}, + [11] = {.index = 15, .length = 2}, + [12] = {.index = 17, .length = 2}, + [13] = {.index = 19, .length = 2}, + [14] = {.index = 21, .length = 2}, + [16] = {.index = 23, .length = 2}, + [17] = {.index = 25, .length = 2}, + [18] = {.index = 27, .length = 1}, + [19] = {.index = 28, .length = 5}, + [20] = {.index = 33, .length = 2}, + [21] = {.index = 35, .length = 3}, + [22] = {.index = 38, .length = 2}, + [23] = {.index = 40, .length = 2}, + [24] = {.index = 42, .length = 2}, + [25] = {.index = 44, .length = 6}, + [26] = {.index = 50, .length = 2}, + [27] = {.index = 52, .length = 2}, + [28] = {.index = 54, .length = 2}, + [29] = {.index = 56, .length = 2}, + [30] = {.index = 58, .length = 2}, + [31] = {.index = 60, .length = 2}, + [32] = {.index = 62, .length = 3}, + [33] = {.index = 65, .length = 3}, + [34] = {.index = 68, .length = 3}, + [35] = {.index = 71, .length = 1}, + [36] = {.index = 72, .length = 3}, + [37] = {.index = 75, .length = 2}, + [38] = {.index = 77, .length = 2}, + [39] = {.index = 79, .length = 2}, + [40] = {.index = 81, .length = 3}, + [41] = {.index = 84, .length = 2}, + [42] = {.index = 86, .length = 1}, + [43] = {.index = 87, .length = 3}, + [44] = {.index = 90, .length = 3}, + [45] = {.index = 93, .length = 1}, + [48] = {.index = 94, .length = 3}, + [49] = {.index = 97, .length = 1}, + [50] = {.index = 98, .length = 3}, + [51] = {.index = 101, .length = 2}, + [52] = {.index = 103, .length = 2}, + [53] = {.index = 105, .length = 2}, + [54] = {.index = 107, .length = 2}, + [55] = {.index = 109, .length = 3}, + [56] = {.index = 112, .length = 3}, + [57] = {.index = 115, .length = 3}, + [58] = {.index = 118, .length = 3}, + [59] = {.index = 121, .length = 3}, + [60] = {.index = 124, .length = 3}, + [61] = {.index = 127, .length = 2}, + [62] = {.index = 129, .length = 3}, + [63] = {.index = 132, .length = 3}, + [64] = {.index = 135, .length = 2}, + [65] = {.index = 137, .length = 2}, + [66] = {.index = 139, .length = 3}, + [67] = {.index = 142, .length = 3}, + [68] = {.index = 145, .length = 2}, + [69] = {.index = 147, .length = 3}, + [70] = {.index = 150, .length = 2}, + [71] = {.index = 152, .length = 3}, + [72] = {.index = 155, .length = 3}, + [73] = {.index = 158, .length = 2}, + [74] = {.index = 160, .length = 4}, + [75] = {.index = 164, .length = 4}, + [76] = {.index = 168, .length = 3}, + [77] = {.index = 171, .length = 3}, + [78] = {.index = 174, .length = 1}, + [79] = {.index = 175, .length = 4}, + [80] = {.index = 179, .length = 1}, + [81] = {.index = 180, .length = 2}, + [82] = {.index = 180, .length = 2}, + [83] = {.index = 182, .length = 2}, + [84] = {.index = 184, .length = 4}, + [85] = {.index = 188, .length = 2}, + [86] = {.index = 190, .length = 3}, + [87] = {.index = 193, .length = 2}, + [88] = {.index = 195, .length = 4}, + [89] = {.index = 199, .length = 3}, + [90] = {.index = 202, .length = 3}, + [91] = {.index = 205, .length = 3}, + [92] = {.index = 208, .length = 2}, + [93] = {.index = 210, .length = 3}, + [94] = {.index = 213, .length = 4}, + [95] = {.index = 217, .length = 4}, + [96] = {.index = 221, .length = 3}, + [97] = {.index = 224, .length = 3}, + [98] = {.index = 227, .length = 4}, + [99] = {.index = 231, .length = 4}, + [100] = {.index = 235, .length = 3}, + [101] = {.index = 238, .length = 3}, + [102] = {.index = 241, .length = 4}, + [103] = {.index = 245, .length = 3}, + [104] = {.index = 248, .length = 3}, + [105] = {.index = 251, .length = 3}, + [106] = {.index = 254, .length = 4}, + [107] = {.index = 258, .length = 3}, + [108] = {.index = 261, .length = 3}, + [109] = {.index = 264, .length = 3}, + [110] = {.index = 267, .length = 3}, + [111] = {.index = 270, .length = 3}, + [112] = {.index = 273, .length = 4}, + [113] = {.index = 277, .length = 3}, + [114] = {.index = 280, .length = 4}, + [115] = {.index = 284, .length = 2}, + [116] = {.index = 286, .length = 5}, + [117] = {.index = 291, .length = 4}, + [118] = {.index = 295, .length = 5}, + [119] = {.index = 300, .length = 2}, + [120] = {.index = 302, .length = 1}, + [121] = {.index = 303, .length = 2}, + [122] = {.index = 305, .length = 1}, + [125] = {.index = 306, .length = 3}, + [126] = {.index = 309, .length = 5}, + [127] = {.index = 314, .length = 2}, + [128] = {.index = 316, .length = 3}, + [129] = {.index = 319, .length = 3}, + [130] = {.index = 322, .length = 3}, + [131] = {.index = 325, .length = 4}, + [132] = {.index = 329, .length = 4}, + [133] = {.index = 333, .length = 3}, + [134] = {.index = 336, .length = 5}, + [135] = {.index = 341, .length = 4}, + [136] = {.index = 345, .length = 4}, + [137] = {.index = 349, .length = 3}, + [138] = {.index = 349, .length = 3}, + [139] = {.index = 352, .length = 4}, + [140] = {.index = 356, .length = 4}, + [141] = {.index = 360, .length = 4}, + [142] = {.index = 364, .length = 4}, + [143] = {.index = 368, .length = 4}, + [144] = {.index = 372, .length = 4}, + [145] = {.index = 376, .length = 4}, + [146] = {.index = 380, .length = 4}, + [147] = {.index = 384, .length = 4}, + [148] = {.index = 388, .length = 5}, + [149] = {.index = 393, .length = 6}, + [150] = {.index = 399, .length = 1}, + [151] = {.index = 400, .length = 2}, + [152] = {.index = 402, .length = 1}, + [153] = {.index = 403, .length = 3}, + [154] = {.index = 406, .length = 5}, + [155] = {.index = 411, .length = 5}, + [156] = {.index = 416, .length = 4}, + [157] = {.index = 420, .length = 4}, + [158] = {.index = 424, .length = 5}, + [159] = {.index = 429, .length = 3}, + [160] = {.index = 432, .length = 4}, + [161] = {.index = 436, .length = 5}, + [162] = {.index = 441, .length = 5}, + [163] = {.index = 446, .length = 2}, + [164] = {.index = 448, .length = 2}, + [165] = {.index = 450, .length = 3}, + [166] = {.index = 453, .length = 5}, + [167] = {.index = 458, .length = 3}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_name, 0}, + [1] = + {field_body, 1}, + [2] = + {field_parameters, 1}, + [3] = + {field_name, 0, .inherited = true}, + {field_object, 0, .inherited = true}, + [5] = + {field_arguments, 1}, + {field_function, 0}, + [7] = + {field_body, 1}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_reference_modifier, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + [12] = + {field_name, 1}, + [13] = + {field_body, 2}, + {field_name, 1}, + [15] = + {field_name, 1}, + {field_parameters, 2}, + [17] = + {field_body, 2}, + {field_parameters, 1}, + [19] = + {field_parameters, 2}, + {field_reference_modifier, 1}, + [21] = + {field_parameters, 1}, + {field_return_type, 2, .inherited = true}, + [23] = + {field_body, 2}, + {field_condition, 1}, + [25] = + {field_end_tag, 2}, + {field_identifier, 1}, + [27] = + {field_parameters, 2}, + [28] = + {field_attributes, 0, .inherited = true}, + {field_body, 2}, + {field_parameters, 0, .inherited = true}, + {field_reference_modifier, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + [33] = + {field_left, 0}, + {field_right, 2}, + [35] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [38] = + {field_name, 2}, + {field_scope, 0}, + [40] = + {field_name, 2}, + {field_object, 0}, + [42] = + {field_attributes, 0}, + {field_parameters, 2}, + [44] = + {field_attributes, 0}, + {field_body, 2}, + {field_name, 1, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_reference_modifier, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + [50] = + {field_body, 3}, + {field_parameters, 2}, + [52] = + {field_name, 0}, + {field_value, 2}, + [54] = + {field_name, 1}, + {field_reference_modifier, 0}, + [56] = + {field_name, 1}, + {field_visibility, 0}, + [58] = + {field_name, 1}, + {field_type, 0}, + [60] = + {field_attributes, 0}, + {field_name, 1}, + [62] = + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 3, .inherited = true}, + [65] = + {field_name, 2}, + {field_parameters, 3}, + {field_reference_modifier, 1}, + [68] = + {field_body, 3}, + {field_parameters, 2}, + {field_reference_modifier, 1}, + [71] = + {field_return_type, 1}, + [72] = + {field_body, 3}, + {field_parameters, 1}, + {field_return_type, 2, .inherited = true}, + [75] = + {field_body, 3}, + {field_parameters, 1}, + [77] = + {field_attributes, 0, .inherited = true}, + {field_modifier, 0, .inherited = true}, + [79] = + {field_body, 3}, + {field_name, 1}, + [81] = + {field_parameters, 2}, + {field_reference_modifier, 1}, + {field_return_type, 3, .inherited = true}, + [84] = + {field_type, 1}, + {field_value, 3}, + [86] = + {field_alternative, 0}, + [87] = + {field_alternative, 3}, + {field_body, 2}, + {field_condition, 1}, + [90] = + {field_alternative, 3, .inherited = true}, + {field_body, 2}, + {field_condition, 1}, + [93] = + {field_attributes, 1}, + [94] = + {field_end_tag, 3}, + {field_identifier, 1}, + {field_value, 2}, + [97] = + {field_reference_modifier, 0}, + [98] = + {field_body, 3}, + {field_modifier, 0}, + {field_name, 2}, + [101] = + {field_parameters, 3}, + {field_reference_modifier, 2}, + [103] = + {field_parameters, 2}, + {field_return_type, 3, .inherited = true}, + [105] = + {field_alternative, 3}, + {field_condition, 0}, + [107] = + {field_left, 0}, + {field_right, 3}, + [109] = + {field_arguments, 3}, + {field_name, 2}, + {field_scope, 0}, + [112] = + {field_arguments, 3}, + {field_name, 2}, + {field_object, 0}, + [115] = + {field_attributes, 0}, + {field_body, 3}, + {field_parameters, 2}, + [118] = + {field_attributes, 0}, + {field_body, 3}, + {field_name, 2}, + [121] = + {field_attributes, 0}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + [124] = + {field_attributes, 0}, + {field_parameters, 2}, + {field_return_type, 3, .inherited = true}, + [127] = + {field_attributes, 0}, + {field_parameters, 3}, + [129] = + {field_body, 4}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + [132] = + {field_body, 4}, + {field_parameters, 2}, + {field_return_type, 3, .inherited = true}, + [135] = + {field_body, 4}, + {field_parameters, 2}, + [137] = + {field_name, 2}, + {field_reference_modifier, 0}, + [139] = + {field_name, 2}, + {field_readonly, 1}, + {field_visibility, 0}, + [142] = + {field_name, 2}, + {field_type, 1}, + {field_visibility, 0}, + [145] = + {field_name, 2}, + {field_type, 0}, + [147] = + {field_name, 2}, + {field_reference_modifier, 1}, + {field_type, 0}, + [150] = + {field_attributes, 0}, + {field_name, 2}, + [152] = + {field_attributes, 0}, + {field_name, 2}, + {field_reference_modifier, 1}, + [155] = + {field_attributes, 0}, + {field_name, 2}, + {field_type, 1}, + [158] = + {field_default_value, 2}, + {field_name, 0}, + [160] = + {field_name, 2}, + {field_parameters, 3}, + {field_reference_modifier, 1}, + {field_return_type, 4, .inherited = true}, + [164] = + {field_body, 4}, + {field_parameters, 2}, + {field_reference_modifier, 1}, + {field_return_type, 3, .inherited = true}, + [168] = + {field_body, 4}, + {field_parameters, 2}, + {field_reference_modifier, 1}, + [171] = + {field_body, 4}, + {field_parameters, 1}, + {field_return_type, 3, .inherited = true}, + [174] = + {field_modifier, 0}, + [175] = + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_reference_modifier, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + [179] = + {field_attributes, 0}, + [180] = + {field_body, 4}, + {field_name, 1}, + [182] = + {field_body, 1}, + {field_condition, 3}, + [184] = + {field_alternative, 3, .inherited = true}, + {field_alternative, 4}, + {field_body, 2}, + {field_condition, 1}, + [188] = + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + [190] = + {field_end_tag, 4}, + {field_identifier, 1}, + {field_value, 2}, + [193] = + {field_end_tag, 4}, + {field_identifier, 2}, + [195] = + {field_end_tag, 4}, + {field_identifier, 1}, + {field_identifier, 2}, + {field_identifier, 3}, + [199] = + {field_body, 4}, + {field_modifier, 0}, + {field_name, 2}, + [202] = + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + [205] = + {field_alternative, 4}, + {field_body, 2}, + {field_condition, 0}, + [208] = + {field_name, 3}, + {field_object, 0}, + [210] = + {field_attributes, 0}, + {field_body, 4}, + {field_parameters, 3}, + [213] = + {field_attributes, 0}, + {field_body, 4}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + [217] = + {field_attributes, 0}, + {field_body, 4}, + {field_parameters, 2}, + {field_return_type, 3, .inherited = true}, + [221] = + {field_attributes, 0}, + {field_body, 4}, + {field_parameters, 2}, + [224] = + {field_attributes, 0}, + {field_body, 4}, + {field_name, 2}, + [227] = + {field_attributes, 0}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + [231] = + {field_attributes, 0}, + {field_body, 4}, + {field_modifier, 1}, + {field_name, 3}, + [235] = + {field_attributes, 0}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + [238] = + {field_attributes, 0}, + {field_parameters, 3}, + {field_return_type, 4, .inherited = true}, + [241] = + {field_body, 5}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + [245] = + {field_body, 5}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + [248] = + {field_body, 5}, + {field_parameters, 2}, + {field_return_type, 4, .inherited = true}, + [251] = + {field_default_value, 3}, + {field_name, 1}, + {field_reference_modifier, 0}, + [254] = + {field_name, 3}, + {field_readonly, 1}, + {field_type, 2}, + {field_visibility, 0}, + [258] = + {field_default_value, 3}, + {field_name, 1}, + {field_visibility, 0}, + [261] = + {field_name, 3}, + {field_reference_modifier, 1}, + {field_type, 0}, + [264] = + {field_default_value, 3}, + {field_name, 1}, + {field_type, 0}, + [267] = + {field_attributes, 0}, + {field_name, 3}, + {field_reference_modifier, 1}, + [270] = + {field_attributes, 0}, + {field_name, 3}, + {field_type, 1}, + [273] = + {field_attributes, 0}, + {field_name, 3}, + {field_reference_modifier, 2}, + {field_type, 1}, + [277] = + {field_attributes, 0}, + {field_default_value, 3}, + {field_name, 1}, + [280] = + {field_body, 5}, + {field_parameters, 2}, + {field_reference_modifier, 1}, + {field_return_type, 4, .inherited = true}, + [284] = + {field_attributes, 0}, + {field_modifier, 1}, + [286] = + {field_attributes, 0}, + {field_name, 1, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_reference_modifier, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + [291] = + {field_name, 1, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_reference_modifier, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + [295] = + {field_body, 2}, + {field_name, 1, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_reference_modifier, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + [300] = + {field_body, 5}, + {field_name, 1}, + [302] = + {field_return_expression, 2}, + [303] = + {field_conditional_expressions, 0}, + {field_return_expression, 2}, + [305] = + {field_value, 1}, + [306] = + {field_end_tag, 5}, + {field_identifier, 2}, + {field_value, 4}, + [309] = + {field_end_tag, 5}, + {field_identifier, 1}, + {field_identifier, 2}, + {field_identifier, 3}, + {field_value, 4}, + [314] = + {field_name, 0}, + {field_reference_modifier, 2}, + [316] = + {field_body, 5}, + {field_modifier, 0}, + {field_name, 2}, + [319] = + {field_arguments, 5}, + {field_name, 3}, + {field_scope, 0}, + [322] = + {field_arguments, 5}, + {field_name, 3}, + {field_object, 0}, + [325] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + [329] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 3}, + {field_return_type, 4, .inherited = true}, + [333] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 3}, + [336] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 4, .inherited = true}, + [341] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + [345] = + {field_attributes, 0}, + {field_body, 5}, + {field_parameters, 2}, + {field_return_type, 4, .inherited = true}, + [349] = + {field_attributes, 0}, + {field_body, 5}, + {field_name, 2}, + [352] = + {field_attributes, 0}, + {field_body, 5}, + {field_modifier, 1}, + {field_name, 3}, + [356] = + {field_attributes, 0}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + {field_return_type, 5, .inherited = true}, + [360] = + {field_body, 6}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 5, .inherited = true}, + [364] = + {field_default_value, 4}, + {field_name, 2}, + {field_readonly, 1}, + {field_visibility, 0}, + [368] = + {field_default_value, 4}, + {field_name, 2}, + {field_type, 1}, + {field_visibility, 0}, + [372] = + {field_default_value, 4}, + {field_name, 2}, + {field_reference_modifier, 1}, + {field_type, 0}, + [376] = + {field_attributes, 0}, + {field_default_value, 4}, + {field_name, 2}, + {field_reference_modifier, 1}, + [380] = + {field_attributes, 0}, + {field_name, 4}, + {field_reference_modifier, 2}, + {field_type, 1}, + [384] = + {field_attributes, 0}, + {field_default_value, 4}, + {field_name, 2}, + {field_type, 1}, + [388] = + {field_attributes, 0}, + {field_name, 2, .inherited = true}, + {field_parameters, 2, .inherited = true}, + {field_reference_modifier, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + [393] = + {field_attributes, 0}, + {field_body, 3}, + {field_name, 2, .inherited = true}, + {field_parameters, 2, .inherited = true}, + {field_reference_modifier, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + [399] = + {field_type, 1}, + [400] = + {field_body, 4}, + {field_type, 2}, + [402] = + {field_body, 6}, + [403] = + {field_end_tag, 6}, + {field_identifier, 2}, + {field_value, 4}, + [406] = + {field_end_tag, 6}, + {field_identifier, 1}, + {field_identifier, 2}, + {field_identifier, 3}, + {field_value, 4}, + [411] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + {field_return_type, 5, .inherited = true}, + [416] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + [420] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 3}, + {field_return_type, 5, .inherited = true}, + [424] = + {field_attributes, 0}, + {field_body, 6}, + {field_parameters, 3}, + {field_reference_modifier, 2}, + {field_return_type, 5, .inherited = true}, + [429] = + {field_attributes, 0}, + {field_body, 6}, + {field_name, 2}, + [432] = + {field_attributes, 0}, + {field_body, 6}, + {field_modifier, 1}, + {field_name, 3}, + [436] = + {field_default_value, 5}, + {field_name, 3}, + {field_readonly, 1}, + {field_type, 2}, + {field_visibility, 0}, + [441] = + {field_attributes, 0}, + {field_default_value, 5}, + {field_name, 3}, + {field_reference_modifier, 2}, + {field_type, 1}, + [446] = + {field_attributes, 0}, + {field_type, 2}, + [448] = + {field_name, 1}, + {field_value, 3}, + [450] = + {field_body, 5}, + {field_name, 3}, + {field_type, 2}, + [453] = + {field_attributes, 0}, + {field_body, 7}, + {field_parameters, 4}, + {field_reference_modifier, 3}, + {field_return_type, 6, .inherited = true}, + [458] = + {field_attributes, 0}, + {field_name, 2}, + {field_value, 4}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [4] = { + [0] = sym_list_literal, + }, + [5] = { + [0] = sym_string_value, + }, + [15] = { + [0] = anon_sym_array, + }, + [46] = { + [1] = sym_list_literal, + }, + [47] = { + [2] = sym_list_literal, + }, + [81] = { + [3] = sym_primitive_type, + }, + [119] = { + [3] = sym_primitive_type, + }, + [123] = { + [3] = sym_list_literal, + }, + [124] = { + [4] = sym_list_literal, + }, + [137] = { + [4] = sym_primitive_type, + }, + [159] = { + [4] = sym_primitive_type, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym__list_destructing, 2, + sym__list_destructing, + sym_list_literal, + sym__array_destructing, 2, + sym__array_destructing, + sym_list_literal, + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 8, + [10] = 7, + [11] = 2, + [12] = 12, + [13] = 13, + [14] = 12, + [15] = 15, + [16] = 12, + [17] = 12, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 20, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 19, + [33] = 22, + [34] = 34, + [35] = 35, + [36] = 36, + [37] = 23, + [38] = 35, + [39] = 27, + [40] = 35, + [41] = 31, + [42] = 29, + [43] = 30, + [44] = 36, + [45] = 45, + [46] = 22, + [47] = 28, + [48] = 48, + [49] = 34, + [50] = 30, + [51] = 48, + [52] = 52, + [53] = 53, + [54] = 36, + [55] = 53, + [56] = 52, + [57] = 34, + [58] = 34, + [59] = 27, + [60] = 36, + [61] = 35, + [62] = 23, + [63] = 30, + [64] = 22, + [65] = 21, + [66] = 19, + [67] = 20, + [68] = 23, + [69] = 27, + [70] = 34, + [71] = 25, + [72] = 36, + [73] = 24, + [74] = 19, + [75] = 20, + [76] = 45, + [77] = 77, + [78] = 77, + [79] = 79, + [80] = 80, + [81] = 77, + [82] = 79, + [83] = 80, + [84] = 77, + [85] = 85, + [86] = 85, + [87] = 85, + [88] = 85, + [89] = 89, + [90] = 90, + [91] = 89, + [92] = 89, + [93] = 90, + [94] = 89, + [95] = 90, + [96] = 90, + [97] = 89, + [98] = 90, + [99] = 90, + [100] = 100, + [101] = 100, + [102] = 100, + [103] = 100, + [104] = 100, + [105] = 105, + [106] = 105, + [107] = 105, + [108] = 105, + [109] = 105, + [110] = 105, + [111] = 105, + [112] = 105, + [113] = 113, + [114] = 114, + [115] = 114, + [116] = 113, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 120, + [121] = 120, + [122] = 119, + [123] = 120, + [124] = 119, + [125] = 120, + [126] = 119, + [127] = 118, + [128] = 128, + [129] = 119, + [130] = 120, + [131] = 131, + [132] = 120, + [133] = 117, + [134] = 119, + [135] = 120, + [136] = 131, + [137] = 120, + [138] = 128, + [139] = 119, + [140] = 140, + [141] = 140, + [142] = 119, + [143] = 143, + [144] = 144, + [145] = 144, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 146, + [152] = 148, + [153] = 149, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 158, + [160] = 160, + [161] = 160, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 158, + [166] = 166, + [167] = 166, + [168] = 164, + [169] = 160, + [170] = 162, + [171] = 162, + [172] = 157, + [173] = 163, + [174] = 160, + [175] = 166, + [176] = 162, + [177] = 158, + [178] = 166, + [179] = 157, + [180] = 163, + [181] = 164, + [182] = 163, + [183] = 164, + [184] = 157, + [185] = 185, + [186] = 185, + [187] = 187, + [188] = 187, + [189] = 189, + [190] = 185, + [191] = 191, + [192] = 185, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 185, + [197] = 193, + [198] = 198, + [199] = 185, + [200] = 198, + [201] = 201, + [202] = 201, + [203] = 203, + [204] = 204, + [205] = 203, + [206] = 204, + [207] = 207, + [208] = 204, + [209] = 207, + [210] = 204, + [211] = 204, + [212] = 207, + [213] = 203, + [214] = 204, + [215] = 215, + [216] = 215, + [217] = 215, + [218] = 215, + [219] = 219, + [220] = 203, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 222, + [228] = 228, + [229] = 225, + [230] = 230, + [231] = 221, + [232] = 232, + [233] = 222, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 223, + [250] = 224, + [251] = 251, + [252] = 252, + [253] = 226, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 232, + [260] = 260, + [261] = 258, + [262] = 232, + [263] = 224, + [264] = 232, + [265] = 254, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 256, + [274] = 274, + [275] = 251, + [276] = 276, + [277] = 248, + [278] = 247, + [279] = 246, + [280] = 245, + [281] = 281, + [282] = 244, + [283] = 243, + [284] = 242, + [285] = 269, + [286] = 241, + [287] = 240, + [288] = 288, + [289] = 239, + [290] = 238, + [291] = 222, + [292] = 237, + [293] = 236, + [294] = 235, + [295] = 234, + [296] = 296, + [297] = 256, + [298] = 223, + [299] = 221, + [300] = 300, + [301] = 258, + [302] = 226, + [303] = 251, + [304] = 296, + [305] = 269, + [306] = 254, + [307] = 248, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 247, + [312] = 312, + [313] = 313, + [314] = 269, + [315] = 258, + [316] = 246, + [317] = 225, + [318] = 223, + [319] = 245, + [320] = 320, + [321] = 321, + [322] = 244, + [323] = 243, + [324] = 222, + [325] = 242, + [326] = 241, + [327] = 240, + [328] = 239, + [329] = 225, + [330] = 281, + [331] = 238, + [332] = 237, + [333] = 333, + [334] = 236, + [335] = 335, + [336] = 225, + [337] = 232, + [338] = 338, + [339] = 235, + [340] = 234, + [341] = 223, + [342] = 221, + [343] = 256, + [344] = 224, + [345] = 345, + [346] = 346, + [347] = 251, + [348] = 260, + [349] = 222, + [350] = 270, + [351] = 296, + [352] = 254, + [353] = 313, + [354] = 272, + [355] = 281, + [356] = 276, + [357] = 248, + [358] = 281, + [359] = 309, + [360] = 222, + [361] = 310, + [362] = 312, + [363] = 310, + [364] = 274, + [365] = 309, + [366] = 274, + [367] = 312, + [368] = 313, + [369] = 296, + [370] = 232, + [371] = 288, + [372] = 276, + [373] = 247, + [374] = 374, + [375] = 234, + [376] = 235, + [377] = 272, + [378] = 270, + [379] = 236, + [380] = 223, + [381] = 237, + [382] = 313, + [383] = 260, + [384] = 312, + [385] = 225, + [386] = 226, + [387] = 225, + [388] = 310, + [389] = 223, + [390] = 238, + [391] = 309, + [392] = 239, + [393] = 222, + [394] = 276, + [395] = 223, + [396] = 223, + [397] = 272, + [398] = 270, + [399] = 260, + [400] = 288, + [401] = 225, + [402] = 226, + [403] = 240, + [404] = 241, + [405] = 242, + [406] = 226, + [407] = 243, + [408] = 225, + [409] = 244, + [410] = 225, + [411] = 223, + [412] = 245, + [413] = 246, + [414] = 222, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 418, + [420] = 417, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 422, + [428] = 422, + [429] = 429, + [430] = 422, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 437, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 437, + [447] = 437, + [448] = 437, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 431, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 464, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 424, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 449, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 423, + [546] = 546, + [547] = 547, + [548] = 548, + [549] = 548, + [550] = 548, + [551] = 548, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 577, + [579] = 575, + [580] = 580, + [581] = 581, + [582] = 577, + [583] = 575, + [584] = 558, + [585] = 556, + [586] = 560, + [587] = 587, + [588] = 561, + [589] = 559, + [590] = 557, + [591] = 558, + [592] = 553, + [593] = 569, + [594] = 564, + [595] = 563, + [596] = 570, + [597] = 597, + [598] = 587, + [599] = 573, + [600] = 581, + [601] = 568, + [602] = 572, + [603] = 554, + [604] = 575, + [605] = 571, + [606] = 606, + [607] = 577, + [608] = 597, + [609] = 562, + [610] = 565, + [611] = 566, + [612] = 567, + [613] = 552, + [614] = 574, + [615] = 555, + [616] = 576, + [617] = 581, + [618] = 587, + [619] = 576, + [620] = 620, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 587, + [625] = 581, + [626] = 622, + [627] = 627, + [628] = 628, + [629] = 561, + [630] = 630, + [631] = 557, + [632] = 632, + [633] = 633, + [634] = 634, + [635] = 560, + [636] = 559, + [637] = 633, + [638] = 556, + [639] = 570, + [640] = 640, + [641] = 641, + [642] = 572, + [643] = 643, + [644] = 563, + [645] = 555, + [646] = 571, + [647] = 564, + [648] = 565, + [649] = 573, + [650] = 570, + [651] = 554, + [652] = 566, + [653] = 553, + [654] = 643, + [655] = 567, + [656] = 656, + [657] = 574, + [658] = 562, + [659] = 552, + [660] = 568, + [661] = 569, + [662] = 662, + [663] = 559, + [664] = 556, + [665] = 560, + [666] = 628, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 561, + [671] = 557, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 559, + [676] = 676, + [677] = 662, + [678] = 561, + [679] = 559, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 561, + [685] = 685, + [686] = 686, + [687] = 556, + [688] = 560, + [689] = 689, + [690] = 690, + [691] = 557, + [692] = 692, + [693] = 693, + [694] = 674, + [695] = 556, + [696] = 686, + [697] = 681, + [698] = 560, + [699] = 699, + [700] = 557, + [701] = 701, + [702] = 702, + [703] = 562, + [704] = 567, + [705] = 572, + [706] = 555, + [707] = 707, + [708] = 547, + [709] = 552, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 553, + [714] = 565, + [715] = 715, + [716] = 573, + [717] = 717, + [718] = 718, + [719] = 564, + [720] = 563, + [721] = 721, + [722] = 722, + [723] = 723, + [724] = 723, + [725] = 571, + [726] = 726, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 707, + [731] = 731, + [732] = 732, + [733] = 733, + [734] = 734, + [735] = 735, + [736] = 736, + [737] = 737, + [738] = 568, + [739] = 739, + [740] = 569, + [741] = 554, + [742] = 742, + [743] = 574, + [744] = 566, + [745] = 633, + [746] = 557, + [747] = 747, + [748] = 633, + [749] = 628, + [750] = 634, + [751] = 751, + [752] = 556, + [753] = 560, + [754] = 754, + [755] = 424, + [756] = 756, + [757] = 423, + [758] = 758, + [759] = 640, + [760] = 641, + [761] = 685, + [762] = 676, + [763] = 561, + [764] = 559, + [765] = 562, + [766] = 569, + [767] = 568, + [768] = 553, + [769] = 572, + [770] = 564, + [771] = 567, + [772] = 563, + [773] = 571, + [774] = 552, + [775] = 775, + [776] = 555, + [777] = 777, + [778] = 565, + [779] = 566, + [780] = 574, + [781] = 781, + [782] = 573, + [783] = 781, + [784] = 570, + [785] = 554, + [786] = 561, + [787] = 557, + [788] = 560, + [789] = 556, + [790] = 674, + [791] = 570, + [792] = 792, + [793] = 793, + [794] = 792, + [795] = 673, + [796] = 699, + [797] = 669, + [798] = 668, + [799] = 667, + [800] = 800, + [801] = 685, + [802] = 656, + [803] = 803, + [804] = 692, + [805] = 805, + [806] = 793, + [807] = 559, + [808] = 681, + [809] = 674, + [810] = 803, + [811] = 681, + [812] = 805, + [813] = 556, + [814] = 628, + [815] = 560, + [816] = 800, + [817] = 431, + [818] = 449, + [819] = 690, + [820] = 693, + [821] = 662, + [822] = 793, + [823] = 676, + [824] = 561, + [825] = 559, + [826] = 662, + [827] = 557, + [828] = 559, + [829] = 561, + [830] = 560, + [831] = 556, + [832] = 832, + [833] = 793, + [834] = 800, + [835] = 557, + [836] = 793, + [837] = 711, + [838] = 565, + [839] = 572, + [840] = 562, + [841] = 737, + [842] = 567, + [843] = 685, + [844] = 547, + [845] = 566, + [846] = 712, + [847] = 736, + [848] = 721, + [849] = 710, + [850] = 702, + [851] = 717, + [852] = 732, + [853] = 701, + [854] = 715, + [855] = 722, + [856] = 727, + [857] = 685, + [858] = 728, + [859] = 734, + [860] = 718, + [861] = 735, + [862] = 553, + [863] = 555, + [864] = 739, + [865] = 568, + [866] = 573, + [867] = 554, + [868] = 569, + [869] = 552, + [870] = 571, + [871] = 742, + [872] = 563, + [873] = 726, + [874] = 564, + [875] = 733, + [876] = 729, + [877] = 574, + [878] = 758, + [879] = 751, + [880] = 676, + [881] = 754, + [882] = 756, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 888, + [889] = 553, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 925, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 554, + [940] = 555, + [941] = 941, + [942] = 552, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 449, + [948] = 431, + [949] = 949, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 965, + [983] = 962, + [984] = 950, + [985] = 968, + [986] = 960, + [987] = 970, + [988] = 964, + [989] = 966, + [990] = 979, + [991] = 977, + [992] = 976, + [993] = 975, + [994] = 973, + [995] = 972, + [996] = 969, + [997] = 961, + [998] = 967, + [999] = 963, + [1000] = 958, + [1001] = 956, + [1002] = 954, + [1003] = 949, + [1004] = 952, + [1005] = 955, + [1006] = 974, + [1007] = 978, + [1008] = 981, + [1009] = 971, + [1010] = 953, + [1011] = 951, + [1012] = 980, + [1013] = 957, + [1014] = 959, + [1015] = 906, + [1016] = 975, + [1017] = 916, + [1018] = 908, + [1019] = 932, + [1020] = 907, + [1021] = 883, + [1022] = 911, + [1023] = 905, + [1024] = 904, + [1025] = 1025, + [1026] = 933, + [1027] = 913, + [1028] = 886, + [1029] = 910, + [1030] = 885, + [1031] = 423, + [1032] = 941, + [1033] = 901, + [1034] = 944, + [1035] = 920, + [1036] = 974, + [1037] = 424, + [1038] = 934, + [1039] = 924, + [1040] = 980, + [1041] = 981, + [1042] = 962, + [1043] = 918, + [1044] = 955, + [1045] = 884, + [1046] = 938, + [1047] = 971, + [1048] = 937, + [1049] = 936, + [1050] = 946, + [1051] = 915, + [1052] = 935, + [1053] = 902, + [1054] = 919, + [1055] = 931, + [1056] = 930, + [1057] = 928, + [1058] = 943, + [1059] = 898, + [1060] = 945, + [1061] = 925, + [1062] = 914, + [1063] = 923, + [1064] = 896, + [1065] = 965, + [1066] = 891, + [1067] = 953, + [1068] = 887, + [1069] = 950, + [1070] = 892, + [1071] = 968, + [1072] = 917, + [1073] = 951, + [1074] = 899, + [1075] = 921, + [1076] = 961, + [1077] = 929, + [1078] = 970, + [1079] = 964, + [1080] = 952, + [1081] = 949, + [1082] = 978, + [1083] = 900, + [1084] = 903, + [1085] = 552, + [1086] = 927, + [1087] = 922, + [1088] = 912, + [1089] = 555, + [1090] = 553, + [1091] = 554, + [1092] = 954, + [1093] = 956, + [1094] = 897, + [1095] = 958, + [1096] = 963, + [1097] = 895, + [1098] = 967, + [1099] = 969, + [1100] = 957, + [1101] = 926, + [1102] = 966, + [1103] = 972, + [1104] = 894, + [1105] = 960, + [1106] = 893, + [1107] = 890, + [1108] = 888, + [1109] = 973, + [1110] = 909, + [1111] = 976, + [1112] = 977, + [1113] = 979, + [1114] = 959, + [1115] = 976, + [1116] = 978, + [1117] = 971, + [1118] = 952, + [1119] = 965, + [1120] = 975, + [1121] = 960, + [1122] = 955, + [1123] = 953, + [1124] = 950, + [1125] = 968, + [1126] = 977, + [1127] = 974, + [1128] = 951, + [1129] = 970, + [1130] = 961, + [1131] = 966, + [1132] = 964, + [1133] = 957, + [1134] = 979, + [1135] = 962, + [1136] = 980, + [1137] = 973, + [1138] = 981, + [1139] = 963, + [1140] = 949, + [1141] = 967, + [1142] = 954, + [1143] = 956, + [1144] = 969, + [1145] = 972, + [1146] = 959, + [1147] = 958, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1153, + [1155] = 1155, + [1156] = 953, + [1157] = 1157, + [1158] = 1149, + [1159] = 1159, + [1160] = 1149, + [1161] = 1161, + [1162] = 953, + [1163] = 1153, + [1164] = 1153, + [1165] = 1165, + [1166] = 1166, + [1167] = 1149, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 1168, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1151, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1168, + [1188] = 1188, + [1189] = 1151, + [1190] = 1190, + [1191] = 1165, + [1192] = 1183, + [1193] = 1193, + [1194] = 1165, + [1195] = 1195, + [1196] = 1196, + [1197] = 1171, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1181, + [1203] = 1203, + [1204] = 1180, + [1205] = 1168, + [1206] = 1206, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 1209, + [1211] = 1211, + [1212] = 1208, + [1213] = 1213, + [1214] = 1207, + [1215] = 1207, + [1216] = 1216, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1207, + [1221] = 1208, + [1222] = 1207, + [1223] = 1208, + [1224] = 1211, + [1225] = 1225, + [1226] = 1218, + [1227] = 1206, + [1228] = 1219, + [1229] = 1207, + [1230] = 1218, + [1231] = 1231, + [1232] = 1208, + [1233] = 1207, + [1234] = 1231, + [1235] = 1213, + [1236] = 1236, + [1237] = 1208, + [1238] = 1207, + [1239] = 1231, + [1240] = 1207, + [1241] = 1241, + [1242] = 1211, + [1243] = 1243, + [1244] = 1243, + [1245] = 1231, + [1246] = 1211, + [1247] = 1219, + [1248] = 1209, + [1249] = 1219, + [1250] = 1218, + [1251] = 1251, + [1252] = 1231, + [1253] = 1208, + [1254] = 1219, + [1255] = 1218, + [1256] = 1231, + [1257] = 1218, + [1258] = 1206, + [1259] = 1259, + [1260] = 1218, + [1261] = 1261, + [1262] = 1243, + [1263] = 1211, + [1264] = 1219, + [1265] = 1216, + [1266] = 1211, + [1267] = 1208, + [1268] = 1251, + [1269] = 1208, + [1270] = 1207, + [1271] = 1251, + [1272] = 1272, + [1273] = 1251, + [1274] = 1208, + [1275] = 1218, + [1276] = 1209, + [1277] = 1218, + [1278] = 1278, + [1279] = 1279, + [1280] = 1280, + [1281] = 1281, + [1282] = 1278, + [1283] = 1283, + [1284] = 1284, + [1285] = 1285, + [1286] = 1286, + [1287] = 1285, + [1288] = 1285, + [1289] = 1286, + [1290] = 1286, + [1291] = 1291, + [1292] = 1292, + [1293] = 1293, + [1294] = 1293, + [1295] = 1293, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, + [1299] = 1280, + [1300] = 1300, + [1301] = 1301, + [1302] = 1283, + [1303] = 1303, + [1304] = 1304, + [1305] = 1305, + [1306] = 1306, + [1307] = 1307, + [1308] = 1308, + [1309] = 1291, + [1310] = 1310, + [1311] = 1311, + [1312] = 1292, + [1313] = 1025, + [1314] = 1314, + [1315] = 1297, + [1316] = 1296, + [1317] = 1317, + [1318] = 1298, + [1319] = 1319, + [1320] = 1320, + [1321] = 1321, + [1322] = 1322, + [1323] = 1323, + [1324] = 1324, + [1325] = 1325, + [1326] = 1326, + [1327] = 1327, + [1328] = 1328, + [1329] = 567, + [1330] = 1330, + [1331] = 1331, + [1332] = 424, + [1333] = 1333, + [1334] = 423, + [1335] = 1335, + [1336] = 1336, + [1337] = 1337, + [1338] = 1338, + [1339] = 1339, + [1340] = 1340, + [1341] = 1341, + [1342] = 1321, + [1343] = 1319, + [1344] = 1344, + [1345] = 1345, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1349, + [1350] = 1350, + [1351] = 1351, + [1352] = 1352, + [1353] = 1353, + [1354] = 1352, + [1355] = 1355, + [1356] = 1346, + [1357] = 1357, + [1358] = 1358, + [1359] = 1359, + [1360] = 1360, + [1361] = 1361, + [1362] = 1362, + [1363] = 1363, + [1364] = 535, + [1365] = 1365, + [1366] = 1363, + [1367] = 1367, + [1368] = 1365, + [1369] = 1369, + [1370] = 1370, + [1371] = 536, + [1372] = 542, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1375, + [1377] = 1374, + [1378] = 1378, + [1379] = 567, + [1380] = 1380, + [1381] = 562, + [1382] = 573, + [1383] = 1383, + [1384] = 1384, + [1385] = 1385, + [1386] = 1380, + [1387] = 1387, + [1388] = 1388, + [1389] = 1389, + [1390] = 1390, + [1391] = 1384, + [1392] = 1392, + [1393] = 1392, + [1394] = 1394, + [1395] = 1395, + [1396] = 1396, + [1397] = 692, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 567, + [1402] = 1396, + [1403] = 1403, + [1404] = 1398, + [1405] = 1405, + [1406] = 1406, + [1407] = 628, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, + [1411] = 1409, + [1412] = 1412, + [1413] = 1280, + [1414] = 1409, + [1415] = 1415, + [1416] = 1416, + [1417] = 1412, + [1418] = 1418, + [1419] = 1409, + [1420] = 1281, + [1421] = 1259, + [1422] = 1409, + [1423] = 1416, + [1424] = 1410, + [1425] = 1410, + [1426] = 1410, + [1427] = 1427, + [1428] = 1428, + [1429] = 1416, + [1430] = 1409, + [1431] = 1431, + [1432] = 1416, + [1433] = 1416, + [1434] = 1410, + [1435] = 1283, + [1436] = 1412, + [1437] = 1412, + [1438] = 1409, + [1439] = 1439, + [1440] = 1416, + [1441] = 1409, + [1442] = 1410, + [1443] = 1416, + [1444] = 1410, + [1445] = 1412, + [1446] = 1446, + [1447] = 1410, + [1448] = 1416, + [1449] = 1449, + [1450] = 1409, + [1451] = 567, + [1452] = 1410, + [1453] = 1409, + [1454] = 1409, + [1455] = 1416, + [1456] = 1410, + [1457] = 1416, + [1458] = 1409, + [1459] = 1459, + [1460] = 1460, + [1461] = 1461, + [1462] = 1410, + [1463] = 1416, + [1464] = 1409, + [1465] = 1284, + [1466] = 1466, + [1467] = 1467, + [1468] = 1467, + [1469] = 416, + [1470] = 1470, + [1471] = 1471, + [1472] = 1405, + [1473] = 1473, + [1474] = 1474, + [1475] = 1474, + [1476] = 1466, + [1477] = 1470, + [1478] = 415, + [1479] = 1479, + [1480] = 1480, + [1481] = 567, + [1482] = 1482, + [1483] = 1483, + [1484] = 1483, + [1485] = 1482, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 1489, + [1491] = 562, + [1492] = 1480, + [1493] = 1493, + [1494] = 1482, + [1495] = 1482, + [1496] = 662, + [1497] = 1482, + [1498] = 1415, + [1499] = 1499, + [1500] = 573, + [1501] = 1483, + [1502] = 1502, + [1503] = 1482, + [1504] = 1504, + [1505] = 1389, + [1506] = 1388, + [1507] = 1489, + [1508] = 1385, + [1509] = 662, + [1510] = 662, + [1511] = 1511, + [1512] = 1512, + [1513] = 1383, + [1514] = 1483, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1483, + [1519] = 557, + [1520] = 557, + [1521] = 777, + [1522] = 1522, + [1523] = 1388, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, + [1529] = 573, + [1530] = 418, + [1531] = 1531, + [1532] = 1532, + [1533] = 417, + [1534] = 562, + [1535] = 1535, + [1536] = 1536, + [1537] = 1522, + [1538] = 1538, + [1539] = 1539, + [1540] = 1383, + [1541] = 1541, + [1542] = 1522, + [1543] = 1527, + [1544] = 1544, + [1545] = 1545, + [1546] = 1541, + [1547] = 567, + [1548] = 1531, + [1549] = 1549, + [1550] = 1526, + [1551] = 1538, + [1552] = 1552, + [1553] = 1553, + [1554] = 1532, + [1555] = 1555, + [1556] = 1389, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1535, + [1561] = 418, + [1562] = 1562, + [1563] = 1536, + [1564] = 1564, + [1565] = 1565, + [1566] = 1545, + [1567] = 1567, + [1568] = 1480, + [1569] = 1565, + [1570] = 1553, + [1571] = 1571, + [1572] = 1544, + [1573] = 1562, + [1574] = 1574, + [1575] = 1575, + [1576] = 1559, + [1577] = 1535, + [1578] = 417, + [1579] = 1557, + [1580] = 1571, + [1581] = 1524, + [1582] = 1582, + [1583] = 1567, + [1584] = 1584, + [1585] = 1552, + [1586] = 1525, + [1587] = 1385, + [1588] = 1558, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1602, + [1603] = 1603, + [1604] = 1604, + [1605] = 421, + [1606] = 1582, + [1607] = 439, + [1608] = 1595, + [1609] = 1609, + [1610] = 1599, + [1611] = 1611, + [1612] = 1600, + [1613] = 1613, + [1614] = 1614, + [1615] = 1615, + [1616] = 1616, + [1617] = 1599, + [1618] = 1600, + [1619] = 426, + [1620] = 1620, + [1621] = 1600, + [1622] = 1600, + [1623] = 435, + [1624] = 433, + [1625] = 1600, + [1626] = 1599, + [1627] = 432, + [1628] = 1628, + [1629] = 1600, + [1630] = 1597, + [1631] = 1600, + [1632] = 1599, + [1633] = 1615, + [1634] = 1634, + [1635] = 1620, + [1636] = 1636, + [1637] = 1599, + [1638] = 1614, + [1639] = 1639, + [1640] = 1591, + [1641] = 1599, + [1642] = 1642, + [1643] = 443, + [1644] = 1644, + [1645] = 442, + [1646] = 1564, + [1647] = 1647, + [1648] = 1609, + [1649] = 434, + [1650] = 1486, + [1651] = 1600, + [1652] = 429, + [1653] = 1599, + [1654] = 1599, + [1655] = 1599, + [1656] = 1600, + [1657] = 1657, + [1658] = 1599, + [1659] = 1600, + [1660] = 444, + [1661] = 1594, + [1662] = 1599, + [1663] = 445, + [1664] = 1657, + [1665] = 1665, + [1666] = 1591, + [1667] = 1601, + [1668] = 1668, + [1669] = 1593, + [1670] = 1592, + [1671] = 440, + [1672] = 1672, + [1673] = 436, + [1674] = 1549, + [1675] = 1598, + [1676] = 1676, + [1677] = 425, + [1678] = 1678, + [1679] = 1672, + [1680] = 1680, + [1681] = 438, + [1682] = 1672, + [1683] = 1665, + [1684] = 1684, + [1685] = 1685, + [1686] = 1575, + [1687] = 1647, + [1688] = 1688, + [1689] = 1689, + [1690] = 1690, + [1691] = 1691, + [1692] = 1692, + [1693] = 1693, + [1694] = 1592, + [1695] = 1695, + [1696] = 1696, + [1697] = 1697, + [1698] = 1698, + [1699] = 1699, + [1700] = 1700, + [1701] = 1693, + [1702] = 1702, + [1703] = 1703, + [1704] = 1704, + [1705] = 1705, + [1706] = 1706, + [1707] = 1700, + [1708] = 1708, + [1709] = 1709, + [1710] = 1710, + [1711] = 1711, + [1712] = 1712, + [1713] = 1713, + [1714] = 1714, + [1715] = 1715, + [1716] = 1716, + [1717] = 1706, + [1718] = 1718, + [1719] = 1704, + [1720] = 1720, + [1721] = 1721, + [1722] = 1722, + [1723] = 1723, + [1724] = 1688, + [1725] = 1725, + [1726] = 1726, + [1727] = 1708, + [1728] = 1728, + [1729] = 1729, + [1730] = 1730, + [1731] = 1731, + [1732] = 1732, + [1733] = 1733, + [1734] = 1734, + [1735] = 1735, + [1736] = 1736, + [1737] = 1665, + [1738] = 1738, + [1739] = 1729, + [1740] = 1740, + [1741] = 1741, + [1742] = 1742, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, + [1746] = 1746, + [1747] = 1747, + [1748] = 1748, + [1749] = 1749, + [1750] = 1750, + [1751] = 1751, + [1752] = 1752, + [1753] = 1753, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 1757, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1751, + [1763] = 1709, + [1764] = 1757, + [1765] = 1734, + [1766] = 1718, + [1767] = 1731, + [1768] = 1738, + [1769] = 1769, + [1770] = 1770, + [1771] = 1771, + [1772] = 1732, + [1773] = 1773, + [1774] = 1735, + [1775] = 1747, + [1776] = 1745, + [1777] = 1744, + [1778] = 1732, + [1779] = 1740, + [1780] = 1728, + [1781] = 1639, + [1782] = 1782, + [1783] = 1783, + [1784] = 1726, + [1785] = 1733, + [1786] = 1731, + [1787] = 1787, + [1788] = 1788, + [1789] = 1760, + [1790] = 1759, + [1791] = 1730, + [1792] = 1758, + [1793] = 1755, + [1794] = 1754, + [1795] = 1685, + [1796] = 1752, + [1797] = 1797, + [1798] = 1798, + [1799] = 1788, + [1800] = 1723, + [1801] = 1716, + [1802] = 1713, + [1803] = 1711, + [1804] = 1725, + [1805] = 1709, + [1806] = 1684, + [1807] = 1714, + [1808] = 1757, + [1809] = 656, + [1810] = 1703, + [1811] = 1721, + [1812] = 1702, + [1813] = 1813, + [1814] = 1814, + [1815] = 1695, + [1816] = 1718, + [1817] = 1712, + [1818] = 1691, + [1819] = 1819, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1757, + [1824] = 1824, + [1825] = 1825, + [1826] = 1826, + [1827] = 528, + [1828] = 529, + [1829] = 532, + [1830] = 1830, + [1831] = 1831, + [1832] = 524, + [1833] = 525, + [1834] = 451, + [1835] = 516, + [1836] = 1836, + [1837] = 504, + [1838] = 485, + [1839] = 453, + [1840] = 1840, + [1841] = 1841, + [1842] = 454, + [1843] = 455, + [1844] = 1844, + [1845] = 456, + [1846] = 461, + [1847] = 1847, + [1848] = 1848, + [1849] = 1849, + [1850] = 462, + [1851] = 463, + [1852] = 464, + [1853] = 1853, + [1854] = 465, + [1855] = 468, + [1856] = 1856, + [1857] = 469, + [1858] = 472, + [1859] = 480, + [1860] = 450, + [1861] = 1861, + [1862] = 1862, + [1863] = 487, + [1864] = 1864, + [1865] = 1865, + [1866] = 1866, + [1867] = 1867, + [1868] = 1868, + [1869] = 1869, + [1870] = 1870, + [1871] = 1871, + [1872] = 490, + [1873] = 1873, + [1874] = 499, + [1875] = 1875, + [1876] = 517, + [1877] = 526, + [1878] = 539, + [1879] = 541, + [1880] = 543, + [1881] = 530, + [1882] = 1882, + [1883] = 527, + [1884] = 1884, + [1885] = 510, + [1886] = 505, + [1887] = 1887, + [1888] = 497, + [1889] = 1889, + [1890] = 508, + [1891] = 1891, + [1892] = 1892, + [1893] = 1893, + [1894] = 501, + [1895] = 531, + [1896] = 1896, + [1897] = 506, + [1898] = 1590, + [1899] = 542, + [1900] = 537, + [1901] = 520, + [1902] = 1902, + [1903] = 507, + [1904] = 1849, + [1905] = 502, + [1906] = 1906, + [1907] = 500, + [1908] = 1908, + [1909] = 1909, + [1910] = 1910, + [1911] = 1867, + [1912] = 1912, + [1913] = 1862, + [1914] = 495, + [1915] = 482, + [1916] = 1916, + [1917] = 477, + [1918] = 476, + [1919] = 1919, + [1920] = 475, + [1921] = 467, + [1922] = 466, + [1923] = 1923, + [1924] = 460, + [1925] = 1925, + [1926] = 1926, + [1927] = 491, + [1928] = 1928, + [1929] = 522, + [1930] = 474, + [1931] = 538, + [1932] = 1932, + [1933] = 1933, + [1934] = 1934, + [1935] = 1935, + [1936] = 521, + [1937] = 1937, + [1938] = 1938, + [1939] = 1939, + [1940] = 1940, + [1941] = 1941, + [1942] = 1942, + [1943] = 1943, + [1944] = 1836, + [1945] = 1945, + [1946] = 1946, + [1947] = 1947, + [1948] = 1948, + [1949] = 513, + [1950] = 1950, + [1951] = 1951, + [1952] = 518, + [1953] = 1953, + [1954] = 1668, + [1955] = 534, + [1956] = 544, + [1957] = 1957, + [1958] = 1958, + [1959] = 535, + [1960] = 1736, + [1961] = 1893, + [1962] = 1962, + [1963] = 1963, + [1964] = 1964, + [1965] = 492, + [1966] = 1966, + [1967] = 1841, + [1968] = 1968, + [1969] = 1969, + [1970] = 1848, + [1971] = 488, + [1972] = 1972, + [1973] = 1973, + [1974] = 484, + [1975] = 1975, + [1976] = 1976, + [1977] = 1977, + [1978] = 1978, + [1979] = 1979, + [1980] = 1980, + [1981] = 1981, + [1982] = 1982, + [1983] = 1983, + [1984] = 479, + [1985] = 496, + [1986] = 1916, + [1987] = 1987, + [1988] = 1988, + [1989] = 1989, + [1990] = 478, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 473, + [1995] = 1864, + [1996] = 1968, + [1997] = 470, + [1998] = 1998, + [1999] = 1933, + [2000] = 2000, + [2001] = 1932, + [2002] = 471, + [2003] = 1864, + [2004] = 2004, + [2005] = 1916, + [2006] = 1875, + [2007] = 489, + [2008] = 2008, + [2009] = 1870, + [2010] = 1889, + [2011] = 452, + [2012] = 493, + [2013] = 1280, + [2014] = 1847, + [2015] = 512, + [2016] = 483, + [2017] = 546, + [2018] = 2018, + [2019] = 1830, + [2020] = 2020, + [2021] = 2021, + [2022] = 1826, + [2023] = 1987, + [2024] = 481, + [2025] = 536, + [2026] = 1644, + [2027] = 1916, + [2028] = 515, + [2029] = 2029, + [2030] = 2030, + [2031] = 2031, + [2032] = 2032, + [2033] = 1864, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 1864, + [2038] = 503, + [2039] = 2039, + [2040] = 1916, + [2041] = 2041, + [2042] = 1861, + [2043] = 523, + [2044] = 2044, + [2045] = 1891, + [2046] = 519, + [2047] = 514, + [2048] = 1864, + [2049] = 2049, + [2050] = 1916, + [2051] = 2051, + [2052] = 2052, + [2053] = 509, + [2054] = 1916, + [2055] = 2055, + [2056] = 458, + [2057] = 459, + [2058] = 1982, + [2059] = 1864, + [2060] = 494, + [2061] = 2061, + [2062] = 2062, + [2063] = 1864, + [2064] = 1916, + [2065] = 533, + [2066] = 486, + [2067] = 511, + [2068] = 2068, + [2069] = 2069, + [2070] = 2070, + [2071] = 2071, + [2072] = 2072, + [2073] = 2073, + [2074] = 2074, + [2075] = 2075, + [2076] = 2076, + [2077] = 2077, + [2078] = 2078, + [2079] = 2079, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 2074, + [2084] = 2084, + [2085] = 2085, + [2086] = 2086, + [2087] = 2087, + [2088] = 1595, + [2089] = 2089, + [2090] = 2090, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, + [2094] = 2094, + [2095] = 2095, + [2096] = 2096, + [2097] = 2097, + [2098] = 2098, + [2099] = 2099, + [2100] = 2100, + [2101] = 2101, + [2102] = 2102, + [2103] = 2103, + [2104] = 2104, + [2105] = 2105, + [2106] = 2106, + [2107] = 2107, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 2074, + [2112] = 2112, + [2113] = 2113, + [2114] = 2114, + [2115] = 2115, + [2116] = 2116, + [2117] = 2117, + [2118] = 2118, + [2119] = 2119, + [2120] = 2120, + [2121] = 2121, + [2122] = 2122, + [2123] = 2123, + [2124] = 2124, + [2125] = 2125, + [2126] = 2126, + [2127] = 2127, + [2128] = 2128, + [2129] = 2078, + [2130] = 2130, + [2131] = 2089, + [2132] = 2110, + [2133] = 2133, + [2134] = 2134, + [2135] = 2135, + [2136] = 2073, + [2137] = 2137, + [2138] = 2085, + [2139] = 2086, + [2140] = 2087, + [2141] = 2141, + [2142] = 2099, + [2143] = 2143, + [2144] = 2144, + [2145] = 2098, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, + [2149] = 2149, + [2150] = 2074, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 2154, + [2155] = 2155, + [2156] = 2156, + [2157] = 2157, + [2158] = 2158, + [2159] = 2079, + [2160] = 2081, + [2161] = 2080, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 2165, + [2166] = 2166, + [2167] = 2069, + [2168] = 2168, + [2169] = 2101, + [2170] = 2170, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, + [2176] = 2085, + [2177] = 2177, + [2178] = 2155, + [2179] = 2151, + [2180] = 2180, + [2181] = 2079, + [2182] = 2149, + [2183] = 2183, + [2184] = 2074, + [2185] = 2133, + [2186] = 1597, + [2187] = 2187, + [2188] = 2188, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 2192, + [2193] = 2193, + [2194] = 2127, + [2195] = 2195, + [2196] = 2152, + [2197] = 2197, + [2198] = 2077, + [2199] = 2153, + [2200] = 2200, + [2201] = 2201, + [2202] = 2122, + [2203] = 2203, + [2204] = 2162, + [2205] = 2205, + [2206] = 2084, + [2207] = 2207, + [2208] = 2123, + [2209] = 2209, + [2210] = 2089, + [2211] = 2211, + [2212] = 2212, + [2213] = 2213, + [2214] = 2075, + [2215] = 2148, + [2216] = 2216, + [2217] = 2072, + [2218] = 2218, + [2219] = 2144, + [2220] = 2134, + [2221] = 2221, + [2222] = 2222, + [2223] = 2094, + [2224] = 2097, + [2225] = 2225, + [2226] = 2106, + [2227] = 2227, + [2228] = 2107, + [2229] = 2229, + [2230] = 2230, + [2231] = 2231, + [2232] = 2130, + [2233] = 2128, + [2234] = 2108, + [2235] = 2125, + [2236] = 2124, + [2237] = 2237, + [2238] = 2119, + [2239] = 2239, + [2240] = 2240, + [2241] = 2188, + [2242] = 2242, + [2243] = 2243, + [2244] = 2118, + [2245] = 2143, + [2246] = 2246, + [2247] = 1934, + [2248] = 2248, + [2249] = 2074, + [2250] = 2250, + [2251] = 2085, + [2252] = 2246, + [2253] = 2114, + [2254] = 1962, + [2255] = 2255, + [2256] = 2256, + [2257] = 2113, + [2258] = 2248, + [2259] = 2259, + [2260] = 2165, + [2261] = 2261, + [2262] = 2154, + [2263] = 2263, + [2264] = 2264, + [2265] = 2265, + [2266] = 2266, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 2166, + [2273] = 2273, + [2274] = 2274, + [2275] = 2275, + [2276] = 2102, + [2277] = 2239, + [2278] = 2191, + [2279] = 2207, + [2280] = 2189, + [2281] = 2259, + [2282] = 2240, + [2283] = 2180, + [2284] = 2284, + [2285] = 2163, + [2286] = 2071, + [2287] = 2076, + [2288] = 2091, + [2289] = 2211, + [2290] = 2275, + [2291] = 2229, + [2292] = 2093, + [2293] = 2225, + [2294] = 2242, + [2295] = 2243, + [2296] = 2296, + [2297] = 2172, + [2298] = 2079, + [2299] = 2164, + [2300] = 2222, + [2301] = 2265, + [2302] = 2168, + [2303] = 2303, + [2304] = 2261, + [2305] = 2068, + [2306] = 2306, + [2307] = 2237, + [2308] = 2308, + [2309] = 2267, + [2310] = 2183, + [2311] = 2311, + [2312] = 2264, + [2313] = 2089, + [2314] = 2314, + [2315] = 2250, + [2316] = 2256, + [2317] = 2317, + [2318] = 2157, + [2319] = 2303, + [2320] = 2320, + [2321] = 2321, + [2322] = 2322, + [2323] = 2323, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 2330, + [2331] = 2331, + [2332] = 2329, + [2333] = 2333, + [2334] = 2333, + [2335] = 2335, + [2336] = 2336, + [2337] = 2337, + [2338] = 2338, + [2339] = 2339, + [2340] = 2322, + [2341] = 2341, + [2342] = 2342, + [2343] = 2343, + [2344] = 2344, + [2345] = 2345, + [2346] = 2324, + [2347] = 2347, + [2348] = 2348, + [2349] = 2349, + [2350] = 2350, + [2351] = 2348, + [2352] = 2352, + [2353] = 2353, + [2354] = 2354, + [2355] = 2328, + [2356] = 2356, + [2357] = 2331, + [2358] = 1964, + [2359] = 2359, + [2360] = 2360, + [2361] = 2361, + [2362] = 2362, + [2363] = 2336, + [2364] = 2364, + [2365] = 2365, + [2366] = 2348, + [2367] = 2339, + [2368] = 2368, + [2369] = 2369, + [2370] = 2370, + [2371] = 2371, + [2372] = 2359, + [2373] = 2373, + [2374] = 2374, + [2375] = 2330, + [2376] = 2364, + [2377] = 2377, + [2378] = 2378, + [2379] = 2335, + [2380] = 2328, + [2381] = 2381, + [2382] = 2382, + [2383] = 2356, + [2384] = 2384, + [2385] = 2325, + [2386] = 2323, + [2387] = 2387, + [2388] = 2348, + [2389] = 2389, + [2390] = 2390, + [2391] = 2391, + [2392] = 2392, + [2393] = 2327, + [2394] = 2338, + [2395] = 2337, + [2396] = 2336, + [2397] = 2335, + [2398] = 2349, + [2399] = 2333, + [2400] = 2400, + [2401] = 2401, + [2402] = 2369, + [2403] = 2403, + [2404] = 2404, + [2405] = 2322, + [2406] = 2406, + [2407] = 2407, + [2408] = 2401, + [2409] = 2409, + [2410] = 2410, + [2411] = 2411, + [2412] = 2374, + [2413] = 2322, + [2414] = 2407, + [2415] = 2344, + [2416] = 2403, + [2417] = 2320, + [2418] = 2326, + [2419] = 2419, + [2420] = 2322, + [2421] = 2421, + [2422] = 2343, + [2423] = 2327, + [2424] = 2424, + [2425] = 2425, + [2426] = 2324, + [2427] = 2427, + [2428] = 2428, + [2429] = 2429, + [2430] = 2336, + [2431] = 2419, + [2432] = 2353, + [2433] = 2433, + [2434] = 2335, + [2435] = 2435, + [2436] = 2400, + [2437] = 2437, + [2438] = 2438, + [2439] = 2439, + [2440] = 2336, + [2441] = 2404, + [2442] = 2387, + [2443] = 2428, + [2444] = 2411, + [2445] = 2409, + [2446] = 2424, + [2447] = 2392, + [2448] = 2378, + [2449] = 2377, + [2450] = 2324, + [2451] = 2451, + [2452] = 2360, + [2453] = 2453, + [2454] = 2354, + [2455] = 2327, + [2456] = 2336, + [2457] = 2368, + [2458] = 2458, + [2459] = 2459, + [2460] = 2460, + [2461] = 2461, + [2462] = 2323, + [2463] = 2463, + [2464] = 2464, + [2465] = 2325, + [2466] = 2466, + [2467] = 2467, + [2468] = 2328, + [2469] = 2439, + [2470] = 2330, + [2471] = 2370, + [2472] = 2472, + [2473] = 2473, + [2474] = 2338, + [2475] = 2336, + [2476] = 2327, + [2477] = 2387, + [2478] = 2337, + [2479] = 2479, + [2480] = 2336, + [2481] = 2481, + [2482] = 2481, + [2483] = 2483, + [2484] = 2438, + [2485] = 2327, + [2486] = 2336, + [2487] = 2336, + [2488] = 2336, + [2489] = 2368, + [2490] = 2337, + [2491] = 2338, + [2492] = 2384, + [2493] = 2464, + [2494] = 2438, + [2495] = 2495, + [2496] = 2437, + [2497] = 2497, + [2498] = 2360, + [2499] = 2499, + [2500] = 2403, + [2501] = 2327, + [2502] = 2458, + [2503] = 2503, + [2504] = 1925, + [2505] = 2336, + [2506] = 2335, + [2507] = 2507, + [2508] = 2508, + [2509] = 2327, + [2510] = 2510, + [2511] = 2511, + [2512] = 2460, + [2513] = 2513, + [2514] = 2336, + [2515] = 2515, + [2516] = 2323, + [2517] = 2345, + [2518] = 2511, + [2519] = 2341, + [2520] = 2510, + [2521] = 2368, + [2522] = 2461, + [2523] = 2464, + [2524] = 2464, + [2525] = 2511, + [2526] = 2466, + [2527] = 2341, + [2528] = 2467, + [2529] = 2511, + [2530] = 2508, + [2531] = 2472, + [2532] = 2473, + [2533] = 2341, + [2534] = 2325, + [2535] = 2508, + [2536] = 2330, + [2537] = 2508, + [2538] = 2507, + [2539] = 2333, + [2540] = 2507, + [2541] = 2507, +}; + +static inline bool sym_escape_sequence_character_set_1(int32_t c) { + return (c < 'e' + ? (c < '\\' + ? (c < '$' + ? c == '"' + : c <= '$') + : (c <= '\\' || c == '`')) + : (c <= 'f' || (c < 't' + ? (c < 'r' + ? c == 'n' + : c <= 'r') + : (c <= 't' || c == 'v')))); +} + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(72); + if (lookahead == '!') ADVANCE(129); + if (lookahead == '"') ADVANCE(176); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(223); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '\'') ADVANCE(182); + if (lookahead == '(') ADVANCE(89); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(218); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(81); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '.') ADVANCE(216); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '0') ADVANCE(110); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(76); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '=') ADVANCE(82); + if (lookahead == '>') ADVANCE(204); + if (lookahead == '?') ADVANCE(93); + if (lookahead == '@') ADVANCE(118); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '^') ADVANCE(194); + if (lookahead == '_') ADVANCE(263); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '{') ADVANCE(84); + if (lookahead == '|') ADVANCE(98); + if (lookahead == '}') ADVANCE(85); + if (lookahead == '~') ADVANCE(127); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(251); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(224); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(227); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(228); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(246); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(261); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(254); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(250); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(244); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(69) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (('C' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 1: + if (lookahead == '\n') ADVANCE(266); + END_STATE(); + case 2: + if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\r') ADVANCE(1); + if (lookahead != 0 && + lookahead != '>') ADVANCE(267); + END_STATE(); + case 3: + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\r') ADVANCE(179); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '-') ADVANCE(35); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '?') ADVANCE(37); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(58); + if (lookahead == '{') ADVANCE(84); + if (lookahead == '\t' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(4) + END_STATE(); + case 4: + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\r') ADVANCE(179); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '-') ADVANCE(35); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '?') ADVANCE(37); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(41); + if (lookahead == '{') ADVANCE(84); + if (lookahead == '\t' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(4) + END_STATE(); + case 5: + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '\r') ADVANCE(180); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '\t' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(5) + END_STATE(); + case 6: + if (lookahead == '!') ADVANCE(129); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(222); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '(') ADVANCE(89); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(219); + if (lookahead == '+') ADVANCE(120); + if (lookahead == ',') ADVANCE(81); + if (lookahead == '-') ADVANCE(123); + if (lookahead == '.') ADVANCE(216); + if (lookahead == '/') ADVANCE(220); + if (lookahead == '0') ADVANCE(110); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(76); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(205); + if (lookahead == '?') ADVANCE(96); + if (lookahead == '@') ADVANCE(118); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '^') ADVANCE(193); + if (lookahead == '_') ADVANCE(263); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(85); + if (lookahead == '~') ADVANCE(127); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(251); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(225); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(227); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(229); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(261); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(259); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(6) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (('C' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 7: + if (lookahead == '!') ADVANCE(128); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(77); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '(') ADVANCE(89); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '+') ADVANCE(120); + if (lookahead == ',') ADVANCE(81); + if (lookahead == '-') ADVANCE(123); + if (lookahead == '.') ADVANCE(106); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(110); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '@') ADVANCE(118); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '_') ADVANCE(263); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '~') ADVANCE(127); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(251); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(225); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(227); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(229); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(261); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(259); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(7) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (('C' <= lookahead && lookahead <= 'Z') || + ('c' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 8: + if (lookahead == '!') ADVANCE(128); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '(') ADVANCE(89); + if (lookahead == '+') ADVANCE(120); + if (lookahead == '-') ADVANCE(123); + if (lookahead == '.') ADVANCE(107); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(110); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '@') ADVANCE(118); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == '_') ADVANCE(263); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '~') ADVANCE(127); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(251); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(224); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(227); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(228); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(246); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(261); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(254); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(250); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(244); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(8) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (('C' <= lookahead && lookahead <= 'Z') || + ('c' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 9: + if (lookahead == '!') ADVANCE(33); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(222); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '(') ADVANCE(89); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(219); + if (lookahead == '+') ADVANCE(120); + if (lookahead == ',') ADVANCE(81); + if (lookahead == '-') ADVANCE(125); + if (lookahead == '.') ADVANCE(215); + if (lookahead == '/') ADVANCE(220); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(76); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(205); + if (lookahead == '?') ADVANCE(95); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(58); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '^') ADVANCE(193); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '{') ADVANCE(84); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(85); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(10) + if (('A' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 10: + if (lookahead == '!') ADVANCE(33); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(222); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '(') ADVANCE(89); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(219); + if (lookahead == '+') ADVANCE(120); + if (lookahead == ',') ADVANCE(81); + if (lookahead == '-') ADVANCE(125); + if (lookahead == '.') ADVANCE(215); + if (lookahead == '/') ADVANCE(220); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(76); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(205); + if (lookahead == '?') ADVANCE(95); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(41); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '^') ADVANCE(193); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '{') ADVANCE(84); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(85); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(10) + if (('A' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 11: + if (lookahead == '!') ADVANCE(33); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(222); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '(') ADVANCE(89); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(219); + if (lookahead == '+') ADVANCE(119); + if (lookahead == ',') ADVANCE(81); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(215); + if (lookahead == '/') ADVANCE(220); + if (lookahead == '0') ADVANCE(115); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(76); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(82); + if (lookahead == '>') ADVANCE(205); + if (lookahead == '?') ADVANCE(95); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '^') ADVANCE(193); + if (lookahead == '{') ADVANCE(84); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(85); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(11) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 12: + if (lookahead == '!') ADVANCE(33); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(222); + if (lookahead == '&') ADVANCE(78); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(219); + if (lookahead == '+') ADVANCE(119); + if (lookahead == ',') ADVANCE(81); + if (lookahead == '-') ADVANCE(122); + if (lookahead == '.') ADVANCE(215); + if (lookahead == '/') ADVANCE(220); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(76); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(205); + if (lookahead == '?') ADVANCE(96); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '^') ADVANCE(193); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(85); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(12) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 13: + if (lookahead == '"') ADVANCE(176); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(77); + if (lookahead == '\'') ADVANCE(182); + if (lookahead == '(') ADVANCE(89); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '.') ADVANCE(26); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '=') ADVANCE(36); + if (lookahead == '?') ADVANCE(92); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '{') ADVANCE(84); + if (lookahead == '|') ADVANCE(97); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(259); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(21) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 14: + if (lookahead == '"') ADVANCE(163); + if (lookahead == '\'') ADVANCE(165); + END_STATE(); + case 15: + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '(') ADVANCE(89); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(251); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(225); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(259); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(15) + if (('C' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('c' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 16: + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(77); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '(') ADVANCE(89); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(115); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == '}') ADVANCE(85); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(251); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(225); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(259); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(16) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); + if (('C' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('c' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 17: + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '.') ADVANCE(107); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(110); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '?') ADVANCE(37); + if (lookahead == '\\') ADVANCE(58); + if (lookahead == '_') ADVANCE(61); + if (lookahead == '{') ADVANCE(84); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(14); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(43); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(44); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(54); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(51); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(18) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + END_STATE(); + case 18: + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '.') ADVANCE(107); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(110); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '?') ADVANCE(37); + if (lookahead == '\\') ADVANCE(41); + if (lookahead == '_') ADVANCE(61); + if (lookahead == '{') ADVANCE(84); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(14); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(43); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(44); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(54); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(51); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(18) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + END_STATE(); + case 19: + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(77); + if (lookahead == ')') ADVANCE(90); + if (lookahead == ',') ADVANCE(81); + if (lookahead == '.') ADVANCE(26); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '?') ADVANCE(92); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(19) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 20: + if (lookahead == '#') ADVANCE(268); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '}') ADVANCE(85); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(259); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(20) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 21: + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(77); + if (lookahead == '(') ADVANCE(89); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '.') ADVANCE(26); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '=') ADVANCE(36); + if (lookahead == '?') ADVANCE(92); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '{') ADVANCE(84); + if (lookahead == '|') ADVANCE(97); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(259); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(21) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 22: + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(77); + if (lookahead == '.') ADVANCE(26); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '?') ADVANCE(92); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(22) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 23: + if (lookahead == '*') ADVANCE(25); + if (lookahead == '/') ADVANCE(267); + END_STATE(); + case 24: + if (lookahead == '*') ADVANCE(24); + if (lookahead == '/') ADVANCE(266); + if (lookahead != 0) ADVANCE(25); + END_STATE(); + case 25: + if (lookahead == '*') ADVANCE(24); + if (lookahead != 0) ADVANCE(25); + END_STATE(); + case 26: + if (lookahead == '.') ADVANCE(28); + END_STATE(); + case 27: + if (lookahead == '.') ADVANCE(107); + if (lookahead == '_') ADVANCE(61); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27); + END_STATE(); + case 28: + if (lookahead == '.') ADVANCE(91); + END_STATE(); + case 29: + if (lookahead == '<') ADVANCE(175); + END_STATE(); + case 30: + if (lookahead == '<') ADVANCE(29); + END_STATE(); + case 31: + if (lookahead == '<') ADVANCE(29); + if (lookahead == '?') ADVANCE(75); + END_STATE(); + case 32: + if (lookahead == '<') ADVANCE(29); + if (lookahead == '?') ADVANCE(160); + END_STATE(); + case 33: + if (lookahead == '=') ADVANCE(196); + END_STATE(); + case 34: + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(88); + END_STATE(); + case 35: + if (lookahead == '>') ADVANCE(148); + END_STATE(); + case 36: + if (lookahead == '>') ADVANCE(88); + END_STATE(); + case 37: + if (lookahead == '>') ADVANCE(162); + END_STATE(); + case 38: + if (lookahead == '>') ADVANCE(149); + END_STATE(); + case 39: + if (lookahead == '>') ADVANCE(73); + END_STATE(); + case 40: + if (lookahead == '?') ADVANCE(160); + END_STATE(); + case 41: + if (lookahead == 'u') ADVANCE(157); + END_STATE(); + case 42: + if (lookahead == '}') ADVANCE(153); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + END_STATE(); + case 43: + if (lookahead == '+' || + lookahead == '-') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + END_STATE(); + case 44: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(47); + END_STATE(); + case 45: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(184); + END_STATE(); + case 46: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(50); + END_STATE(); + case 47: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(52); + END_STATE(); + case 48: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(186); + END_STATE(); + case 49: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(48); + END_STATE(); + case 50: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(74); + END_STATE(); + case 51: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(53); + END_STATE(); + case 52: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(45); + END_STATE(); + case 53: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(45); + END_STATE(); + case 54: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(49); + END_STATE(); + case 55: + if (lookahead == '0' || + lookahead == '1') ADVANCE(113); + END_STATE(); + case 56: + if (lookahead == '8' || + lookahead == '9') ADVANCE(27); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(111); + END_STATE(); + case 57: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); + END_STATE(); + case 58: + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(153); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'x') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(155); + END_STATE(); + case 59: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + END_STATE(); + case 60: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); + END_STATE(); + case 61: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27); + END_STATE(); + case 62: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + END_STATE(); + case 63: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); + END_STATE(); + case 64: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); + END_STATE(); + case 65: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(156); + END_STATE(); + case 66: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + END_STATE(); + case 67: + if (lookahead != 0 && + lookahead != '*') ADVANCE(171); + if (lookahead == '*') ADVANCE(170); + END_STATE(); + case 68: + if (lookahead != 0) ADVANCE(173); + END_STATE(); + case 69: + if (eof) ADVANCE(72); + if (lookahead == '!') ADVANCE(129); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(223); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '(') ADVANCE(89); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(218); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(81); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '.') ADVANCE(216); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '0') ADVANCE(110); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(76); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '=') ADVANCE(82); + if (lookahead == '>') ADVANCE(204); + if (lookahead == '?') ADVANCE(93); + if (lookahead == '@') ADVANCE(118); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '^') ADVANCE(194); + if (lookahead == '_') ADVANCE(263); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '{') ADVANCE(84); + if (lookahead == '|') ADVANCE(98); + if (lookahead == '}') ADVANCE(85); + if (lookahead == '~') ADVANCE(127); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(251); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(224); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(227); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(228); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(246); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(261); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(254); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(250); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(244); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(69) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (('C' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 70: + if (eof) ADVANCE(72); + if (lookahead == '!') ADVANCE(128); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(77); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '(') ADVANCE(89); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '+') ADVANCE(120); + if (lookahead == ',') ADVANCE(81); + if (lookahead == '-') ADVANCE(123); + if (lookahead == '.') ADVANCE(107); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '0') ADVANCE(110); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(76); + if (lookahead == '<') ADVANCE(31); + if (lookahead == '?') ADVANCE(39); + if (lookahead == '@') ADVANCE(118); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '_') ADVANCE(263); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '{') ADVANCE(84); + if (lookahead == '}') ADVANCE(85); + if (lookahead == '~') ADVANCE(127); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(251); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(225); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(227); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(229); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(261); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(259); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(70) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); + if (('C' <= lookahead && lookahead <= 'Z') || + ('c' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 71: + if (eof) ADVANCE(72); + if (lookahead == '!') ADVANCE(33); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(269); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(223); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '(') ADVANCE(89); + if (lookahead == ')') ADVANCE(90); + if (lookahead == '*') ADVANCE(218); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(81); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '.') ADVANCE(217); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '0') ADVANCE(115); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(76); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(82); + if (lookahead == '>') ADVANCE(204); + if (lookahead == '?') ADVANCE(94); + if (lookahead == '[') ADVANCE(150); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == ']') ADVANCE(151); + if (lookahead == '^') ADVANCE(194); + if (lookahead == '{') ADVANCE(84); + if (lookahead == '|') ADVANCE(98); + if (lookahead == '}') ADVANCE(85); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(71) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 72: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_QMARK_GT); + END_STATE(); + case 74: + ACCEPT_TOKEN(sym_php_tag); + END_STATE(); + case 75: + ACCEPT_TOKEN(sym_php_tag); + if (lookahead == '=') ADVANCE(74); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(46); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(192); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(192); + if (lookahead == '=') ADVANCE(144); + END_STATE(); + case 80: + ACCEPT_TOKEN(aux_sym_function_static_declaration_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 81: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 82: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(88); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_BSLASH); + END_STATE(); + case 84: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(132); + END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(38); + if (lookahead == '>') ADVANCE(162); + if (lookahead == '?') ADVANCE(190); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(38); + if (lookahead == '?') ADVANCE(190); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(38); + if (lookahead == '?') ADVANCE(189); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '?') ADVANCE(189); + END_STATE(); + case 97: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 98: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(146); + if (lookahead == '|') ADVANCE(191); + END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(191); + END_STATE(); + case 100: + ACCEPT_TOKEN(aux_sym_cast_type_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 101: + ACCEPT_TOKEN(aux_sym_cast_type_token3); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 102: + ACCEPT_TOKEN(aux_sym_cast_type_token6); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 103: + ACCEPT_TOKEN(aux_sym_cast_type_token8); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 104: + ACCEPT_TOKEN(aux_sym_cast_type_token11); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 105: + ACCEPT_TOKEN(aux_sym_cast_type_token12); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 106: + ACCEPT_TOKEN(sym_float); + if (lookahead == '.') ADVANCE(28); + if (lookahead == '_') ADVANCE(60); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); + END_STATE(); + case 107: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(60); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); + END_STATE(); + case 108: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 109: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + END_STATE(); + case 110: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(107); + if (lookahead == '_') ADVANCE(56); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(55); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(43); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(116); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(64); + if (lookahead == '8' || + lookahead == '9') ADVANCE(27); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(111); + END_STATE(); + case 111: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(107); + if (lookahead == '_') ADVANCE(56); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(43); + if (lookahead == '8' || + lookahead == '9') ADVANCE(27); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(111); + END_STATE(); + case 112: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(107); + if (lookahead == '_') ADVANCE(59); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + END_STATE(); + case 113: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(55); + if (lookahead == '0' || + lookahead == '1') ADVANCE(113); + END_STATE(); + case 114: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); + END_STATE(); + case 115: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(57); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(55); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(116); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); + END_STATE(); + case 116: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); + END_STATE(); + case 117: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(133); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(133); + if (lookahead == '=') ADVANCE(139); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(134); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(134); + if (lookahead == '=') ADVANCE(140); + if (lookahead == '>') ADVANCE(148); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(134); + if (lookahead == '>') ADVANCE(148); + END_STATE(); + case 126: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(148); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(196); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(135); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 139: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_DOT_EQ); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 143: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 145: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_POUND_LBRACK); + END_STATE(); + case 153: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 154: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(153); + END_STATE(); + case 155: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(154); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(153); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_BSLASHu); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_BSLASHu); + if (lookahead == '{') ADVANCE(66); + END_STATE(); + case 159: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_LT_QMARK); + END_STATE(); + case 161: + ACCEPT_TOKEN(anon_sym_LT_QMARK); + if (lookahead == '=') ADVANCE(74); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(46); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym_QMARK_GT2); + END_STATE(); + case 163: + ACCEPT_TOKEN(aux_sym_encapsed_string_token1); + END_STATE(); + case 164: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 165: + ACCEPT_TOKEN(aux_sym_string_token1); + END_STATE(); + case 166: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '\n') ADVANCE(173); + if (lookahead == '\r') ADVANCE(167); + if (lookahead == '>') ADVANCE(173); + if (lookahead == '\\') ADVANCE(270); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(172); + END_STATE(); + case 167: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '\n') ADVANCE(173); + if (lookahead == '\\') ADVANCE(68); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(173); + END_STATE(); + case 168: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '#') ADVANCE(174); + if (lookahead == '/') ADVANCE(169); + if (lookahead == '\\') ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(168); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(173); + END_STATE(); + case 169: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '/') ADVANCE(172); + if (lookahead == '\\') ADVANCE(68); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(173); + END_STATE(); + case 170: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '/') ADVANCE(173); + if (lookahead == '\\') ADVANCE(67); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(171); + END_STATE(); + case 171: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '\\') ADVANCE(67); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(171); + END_STATE(); + case 172: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '\\') ADVANCE(270); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(173); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(172); + END_STATE(); + case 173: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '\\') ADVANCE(68); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(173); + END_STATE(); + case 174: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '\\') ADVANCE(270); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '?' || + lookahead == '[') ADVANCE(173); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(172); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_DQUOTE2); + END_STATE(); + case 177: + ACCEPT_TOKEN(aux_sym__new_line_token1); + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\r') ADVANCE(179); + if (lookahead == '?') ADVANCE(37); + END_STATE(); + case 178: + ACCEPT_TOKEN(aux_sym__new_line_token1); + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '\r') ADVANCE(180); + END_STATE(); + case 179: + ACCEPT_TOKEN(aux_sym__new_line_token2); + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\r') ADVANCE(179); + if (lookahead == '?') ADVANCE(37); + END_STATE(); + case 180: + ACCEPT_TOKEN(aux_sym__new_line_token2); + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '\r') ADVANCE(180); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_SQUOTE2); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 184: + ACCEPT_TOKEN(sym_boolean); + END_STATE(); + case 185: + ACCEPT_TOKEN(sym_boolean); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 186: + ACCEPT_TOKEN(sym_null); + END_STATE(); + case 187: + ACCEPT_TOKEN(sym_null); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(147); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(145); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(198); + END_STATE(); + case 196: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(199); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 198: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(211); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); + if (lookahead == '?') ADVANCE(161); + END_STATE(); + case 201: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(210); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(212); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(209); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); + END_STATE(); + case 204: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(214); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(213); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(208); + END_STATE(); + case 207: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + END_STATE(); + case 209: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 210: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(175); + END_STATE(); + case 211: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '=') ADVANCE(142); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(142); + END_STATE(); + case 213: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(143); + END_STATE(); + case 215: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(28); + if (lookahead == '_') ADVANCE(60); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '=') ADVANCE(141); + END_STATE(); + case 218: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(131); + if (lookahead == '=') ADVANCE(136); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(130); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(25); + if (lookahead == '/') ADVANCE(267); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(25); + if (lookahead == '/') ADVANCE(267); + if (lookahead == '=') ADVANCE(137); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 223: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(138); + END_STATE(); + case 224: + ACCEPT_TOKEN(sym_name); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '\'') ADVANCE(165); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 225: + ACCEPT_TOKEN(sym_name); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '\'') ADVANCE(165); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 226: + ACCEPT_TOKEN(sym_name); + if (lookahead == '.') ADVANCE(107); + if (lookahead == '_') ADVANCE(263); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(227); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 227: + ACCEPT_TOKEN(sym_name); + if (lookahead == '+' || + lookahead == '-') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 228: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(243); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 229: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(243); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 230: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 231: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(258); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(239); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 232: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(258); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 233: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(256); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 234: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 235: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(185); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 236: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 237: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 238: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(234); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 239: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(245); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 240: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(101); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 241: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(187); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 242: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(241); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 243: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(252); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 244: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(253); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(237); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 246: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(255); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 247: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(233); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 248: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(240); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 249: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(230); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 250: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(260); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 251: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(249); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 252: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(235); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 253: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(236); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 254: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(231); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 255: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 256: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 257: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(238); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 259: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(232); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 260: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(235); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 261: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(242); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 262: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(100); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 263: + ACCEPT_TOKEN(sym_name); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(226); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 264: + ACCEPT_TOKEN(sym_name); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 265: + ACCEPT_TOKEN(sym_name); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(265); + END_STATE(); + case 266: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 267: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '?') ADVANCE(2); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(267); + END_STATE(); + case 268: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '[') ADVANCE(152); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '?') ADVANCE(267); + END_STATE(); + case 269: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '?' && + lookahead != '[') ADVANCE(267); + END_STATE(); + case 270: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '?') ADVANCE(172); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(173); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'A') ADVANCE(1); + if (lookahead == 'B') ADVANCE(2); + if (lookahead == 'E') ADVANCE(3); + if (lookahead == 'F') ADVANCE(4); + if (lookahead == 'I') ADVANCE(5); + if (lookahead == 'M') ADVANCE(6); + if (lookahead == 'N') ADVANCE(7); + if (lookahead == 'P') ADVANCE(8); + if (lookahead == 'S') ADVANCE(9); + if (lookahead == 'T') ADVANCE(10); + if (lookahead == 'U') ADVANCE(11); + if (lookahead == 'V') ADVANCE(12); + if (lookahead == 'a') ADVANCE(13); + if (lookahead == 'b') ADVANCE(14); + if (lookahead == 'e') ADVANCE(15); + if (lookahead == 'f') ADVANCE(16); + if (lookahead == 'i') ADVANCE(17); + if (lookahead == 'm') ADVANCE(18); + if (lookahead == 'n') ADVANCE(19); + if (lookahead == 'p') ADVANCE(20); + if (lookahead == 's') ADVANCE(21); + if (lookahead == 't') ADVANCE(22); + if (lookahead == 'u') ADVANCE(23); + if (lookahead == 'v') ADVANCE(24); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(25); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(26); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(27); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(28); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(29); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(30); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(31); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(32); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(33); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(0) + END_STATE(); + case 1: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(34); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(35); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(36); + END_STATE(); + case 2: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(37); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(38); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(39); + END_STATE(); + case 3: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(40); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(41); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(42); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(43); + END_STATE(); + case 4: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(44); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(45); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(46); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(47); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(48); + END_STATE(); + case 5: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(49); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(50); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(51); + END_STATE(); + case 6: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(52); + END_STATE(); + case 7: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(53); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(54); + END_STATE(); + case 8: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(55); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(56); + END_STATE(); + case 9: + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(57); + END_STATE(); + case 10: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(58); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(59); + END_STATE(); + case 11: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(60); + END_STATE(); + case 12: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(61); + END_STATE(); + case 13: + if (lookahead == 'r') ADVANCE(62); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(34); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(35); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(36); + END_STATE(); + case 14: + if (lookahead == 'O') ADVANCE(38); + if (lookahead == 'o') ADVANCE(63); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(37); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(39); + END_STATE(); + case 15: + if (lookahead == 'N') ADVANCE(42); + if (lookahead == 'n') ADVANCE(64); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(40); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(41); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(43); + END_STATE(); + case 16: + if (lookahead == 'a') ADVANCE(65); + if (lookahead == 'l') ADVANCE(66); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(44); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(45); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(46); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(47); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(48); + END_STATE(); + case 17: + if (lookahead == 'N') ADVANCE(51); + if (lookahead == 'n') ADVANCE(67); + if (lookahead == 't') ADVANCE(68); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(49); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(50); + END_STATE(); + case 18: + if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(52); + END_STATE(); + case 19: + if (lookahead == 'E') ADVANCE(54); + if (lookahead == 'e') ADVANCE(70); + if (lookahead == 'u') ADVANCE(71); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(53); + END_STATE(); + case 20: + if (lookahead == 'a') ADVANCE(72); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(55); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(56); + END_STATE(); + case 21: + if (lookahead == 'e') ADVANCE(73); + if (lookahead == 't') ADVANCE(74); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(57); + END_STATE(); + case 22: + if (lookahead == 'R') ADVANCE(59); + if (lookahead == 'i') ADVANCE(75); + if (lookahead == 'r') ADVANCE(76); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(58); + END_STATE(); + case 23: + if (lookahead == 'n') ADVANCE(77); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(60); + END_STATE(); + case 24: + if (lookahead == 'o') ADVANCE(78); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(61); + END_STATE(); + case 25: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(79); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(80); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(81); + END_STATE(); + case 26: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(82); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(83); + END_STATE(); + case 27: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(84); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(85); + END_STATE(); + case 28: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(86); + END_STATE(); + case 29: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(87); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(88); + END_STATE(); + case 30: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(89); + END_STATE(); + case 31: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(90); + END_STATE(); + case 32: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(91); + END_STATE(); + case 33: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(92); + END_STATE(); + case 34: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(93); + END_STATE(); + case 35: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(94); + END_STATE(); + case 36: + ACCEPT_TOKEN(aux_sym_namespace_aliasing_clause_token1); + END_STATE(); + case 37: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(95); + END_STATE(); + case 38: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(96); + END_STATE(); + case 39: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(97); + END_STATE(); + case 40: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(98); + END_STATE(); + case 41: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(99); + END_STATE(); + case 42: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(100); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(101); + END_STATE(); + case 43: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(102); + END_STATE(); + case 44: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(103); + END_STATE(); + case 45: + ACCEPT_TOKEN(aux_sym__arrow_function_header_token1); + END_STATE(); + case 46: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(104); + END_STATE(); + case 47: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(105); + END_STATE(); + case 48: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(106); + END_STATE(); + case 49: + ACCEPT_TOKEN(aux_sym_if_statement_token1); + END_STATE(); + case 50: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(107); + END_STATE(); + case 51: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(108); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(109); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(110); + END_STATE(); + case 52: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(111); + END_STATE(); + case 53: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(112); + END_STATE(); + case 54: + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(113); + END_STATE(); + case 55: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(114); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(115); + END_STATE(); + case 56: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(116); + END_STATE(); + case 57: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(117); + END_STATE(); + case 58: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(118); + END_STATE(); + case 59: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(119); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(120); + END_STATE(); + case 60: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(121); + END_STATE(); + case 61: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(122); + END_STATE(); + case 62: + if (lookahead == 'r') ADVANCE(123); + END_STATE(); + case 63: + if (lookahead == 'O') ADVANCE(96); + if (lookahead == 'o') ADVANCE(124); + END_STATE(); + case 64: + if (lookahead == 'c') ADVANCE(125); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(100); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(101); + END_STATE(); + case 65: + if (lookahead == 'l') ADVANCE(126); + END_STATE(); + case 66: + if (lookahead == 'o') ADVANCE(127); + END_STATE(); + case 67: + if (lookahead == 'T') ADVANCE(110); + if (lookahead == 't') ADVANCE(128); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(108); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(109); + END_STATE(); + case 68: + if (lookahead == 'e') ADVANCE(129); + END_STATE(); + case 69: + if (lookahead == 'x') ADVANCE(130); + END_STATE(); + case 70: + if (lookahead == 'v') ADVANCE(131); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(113); + END_STATE(); + case 71: + if (lookahead == 'l') ADVANCE(132); + END_STATE(); + case 72: + if (lookahead == 'r') ADVANCE(133); + END_STATE(); + case 73: + if (lookahead == 'l') ADVANCE(134); + END_STATE(); + case 74: + if (lookahead == 'a') ADVANCE(135); + if (lookahead == 'r') ADVANCE(136); + END_STATE(); + case 75: + if (lookahead == 'c') ADVANCE(137); + END_STATE(); + case 76: + if (lookahead == 'u') ADVANCE(138); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(119); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(120); + END_STATE(); + case 77: + if (lookahead == 's') ADVANCE(139); + END_STATE(); + case 78: + if (lookahead == 'i') ADVANCE(140); + END_STATE(); + case 79: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(141); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(142); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(143); + END_STATE(); + case 80: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(144); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(145); + END_STATE(); + case 81: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(146); + END_STATE(); + case 82: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(147); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(148); + END_STATE(); + case 83: + ACCEPT_TOKEN(aux_sym_do_statement_token1); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(149); + END_STATE(); + case 84: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(150); + END_STATE(); + case 85: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(151); + END_STATE(); + case 86: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(152); + END_STATE(); + case 87: + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(153); + END_STATE(); + case 88: + ACCEPT_TOKEN(aux_sym_binary_expression_token3); + END_STATE(); + case 89: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(154); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(155); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(156); + END_STATE(); + case 90: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(157); + END_STATE(); + case 91: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(158); + END_STATE(); + case 92: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(159); + END_STATE(); + case 93: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(160); + END_STATE(); + case 94: + ACCEPT_TOKEN(aux_sym_binary_expression_token2); + END_STATE(); + case 95: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(161); + END_STATE(); + case 96: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(162); + END_STATE(); + case 97: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(163); + END_STATE(); + case 98: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(164); + END_STATE(); + case 99: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(165); + END_STATE(); + case 100: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(166); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(167); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(168); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(169); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(170); + END_STATE(); + case 101: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(171); + END_STATE(); + case 102: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(172); + END_STATE(); + case 103: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(173); + END_STATE(); + case 104: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(174); + END_STATE(); + case 105: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(175); + END_STATE(); + case 106: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(176); + END_STATE(); + case 107: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(177); + END_STATE(); + case 108: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(178); + END_STATE(); + case 109: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(179); + END_STATE(); + case 110: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(180); + END_STATE(); + case 111: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(181); + END_STATE(); + case 112: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(182); + END_STATE(); + case 113: + ACCEPT_TOKEN(aux_sym_object_creation_expression_token1); + END_STATE(); + case 114: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(183); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(184); + END_STATE(); + case 115: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(185); + END_STATE(); + case 116: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(186); + END_STATE(); + case 117: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(187); + END_STATE(); + case 118: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(188); + END_STATE(); + case 119: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(189); + END_STATE(); + case 120: + ACCEPT_TOKEN(aux_sym_try_statement_token1); + END_STATE(); + case 121: + ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token1); + END_STATE(); + case 122: + ACCEPT_TOKEN(sym_var_modifier); + END_STATE(); + case 123: + if (lookahead == 'a') ADVANCE(190); + END_STATE(); + case 124: + if (lookahead == 'L') ADVANCE(162); + if (lookahead == 'l') ADVANCE(191); + END_STATE(); + case 125: + if (lookahead == 'o') ADVANCE(192); + END_STATE(); + case 126: + if (lookahead == 's') ADVANCE(193); + END_STATE(); + case 127: + if (lookahead == 'a') ADVANCE(194); + END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_int); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(180); + END_STATE(); + case 129: + if (lookahead == 'r') ADVANCE(195); + END_STATE(); + case 130: + if (lookahead == 'e') ADVANCE(196); + END_STATE(); + case 131: + if (lookahead == 'e') ADVANCE(197); + END_STATE(); + case 132: + if (lookahead == 'l') ADVANCE(198); + END_STATE(); + case 133: + if (lookahead == 'e') ADVANCE(199); + END_STATE(); + case 134: + if (lookahead == 'f') ADVANCE(200); + END_STATE(); + case 135: + if (lookahead == 't') ADVANCE(201); + END_STATE(); + case 136: + if (lookahead == 'i') ADVANCE(202); + END_STATE(); + case 137: + if (lookahead == 'k') ADVANCE(203); + END_STATE(); + case 138: + if (lookahead == 'e') ADVANCE(204); + END_STATE(); + case 139: + if (lookahead == 'e') ADVANCE(205); + END_STATE(); + case 140: + if (lookahead == 'd') ADVANCE(206); + END_STATE(); + case 141: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(207); + END_STATE(); + case 142: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(208); + END_STATE(); + case 143: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(209); + END_STATE(); + case 144: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(210); + END_STATE(); + case 145: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(211); + END_STATE(); + case 146: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(212); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(213); + END_STATE(); + case 147: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(214); + END_STATE(); + case 148: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(215); + END_STATE(); + case 149: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(216); + END_STATE(); + case 150: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(217); + END_STATE(); + case 151: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(218); + END_STATE(); + case 152: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(219); + END_STATE(); + case 153: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(220); + END_STATE(); + case 154: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(221); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(222); + END_STATE(); + case 155: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(223); + END_STATE(); + case 156: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(224); + END_STATE(); + case 157: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(225); + END_STATE(); + case 158: + ACCEPT_TOKEN(aux_sym_binary_expression_token4); + END_STATE(); + case 159: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(226); + END_STATE(); + case 160: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(227); + END_STATE(); + case 161: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(228); + END_STATE(); + case 162: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(229); + END_STATE(); + case 163: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(230); + END_STATE(); + case 164: + ACCEPT_TOKEN(aux_sym_echo_statement_token1); + END_STATE(); + case 165: + ACCEPT_TOKEN(aux_sym_else_clause_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(231); + END_STATE(); + case 166: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(232); + END_STATE(); + case 167: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(233); + END_STATE(); + case 168: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(234); + END_STATE(); + case 169: + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(235); + END_STATE(); + case 170: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(236); + END_STATE(); + case 171: + ACCEPT_TOKEN(aux_sym_enum_declaration_token1); + END_STATE(); + case 172: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(237); + END_STATE(); + case 173: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(238); + END_STATE(); + case 174: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(239); + END_STATE(); + case 175: + ACCEPT_TOKEN(aux_sym_yield_expression_token2); + END_STATE(); + case 176: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(240); + END_STATE(); + case 177: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(241); + END_STATE(); + case 178: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(242); + END_STATE(); + case 179: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(243); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(244); + END_STATE(); + case 180: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(245); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(246); + END_STATE(); + case 181: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(247); + END_STATE(); + case 182: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(248); + END_STATE(); + case 183: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(249); + END_STATE(); + case 184: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(250); + END_STATE(); + case 185: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(251); + END_STATE(); + case 186: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(252); + END_STATE(); + case 187: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(253); + END_STATE(); + case 188: + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(254); + END_STATE(); + case 189: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(255); + END_STATE(); + case 190: + if (lookahead == 'y') ADVANCE(256); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(229); + END_STATE(); + case 192: + if (lookahead == 'd') ADVANCE(257); + END_STATE(); + case 193: + if (lookahead == 'e') ADVANCE(258); + END_STATE(); + case 194: + if (lookahead == 't') ADVANCE(259); + END_STATE(); + case 195: + if (lookahead == 'a') ADVANCE(260); + END_STATE(); + case 196: + if (lookahead == 'd') ADVANCE(261); + END_STATE(); + case 197: + if (lookahead == 'r') ADVANCE(262); + END_STATE(); + case 198: + ACCEPT_TOKEN(anon_sym_null); + END_STATE(); + case 199: + if (lookahead == 'n') ADVANCE(263); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_self); + END_STATE(); + case 201: + if (lookahead == 'i') ADVANCE(264); + END_STATE(); + case 202: + if (lookahead == 'c') ADVANCE(265); + if (lookahead == 'n') ADVANCE(266); + END_STATE(); + case 203: + if (lookahead == 's') ADVANCE(267); + END_STATE(); + case 204: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 205: + if (lookahead == 't') ADVANCE(268); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_void); + END_STATE(); + case 207: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(269); + END_STATE(); + case 208: + ACCEPT_TOKEN(aux_sym_enum_case_token1); + END_STATE(); + case 209: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(270); + END_STATE(); + case 210: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(271); + END_STATE(); + case 211: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(272); + END_STATE(); + case 212: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(273); + END_STATE(); + case 213: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(274); + END_STATE(); + case 214: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(275); + END_STATE(); + case 215: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(276); + END_STATE(); + case 216: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(277); + END_STATE(); + case 217: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(278); + END_STATE(); + case 218: + ACCEPT_TOKEN(aux_sym_goto_statement_token1); + END_STATE(); + case 219: + ACCEPT_TOKEN(aux_sym__list_destructing_token1); + END_STATE(); + case 220: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(279); + END_STATE(); + case 221: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(280); + END_STATE(); + case 222: + ACCEPT_TOKEN(aux_sym_cast_type_token10); + END_STATE(); + case 223: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(281); + END_STATE(); + case 224: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(282); + END_STATE(); + case 225: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(283); + END_STATE(); + case 226: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(284); + END_STATE(); + case 227: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(285); + END_STATE(); + case 228: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(286); + END_STATE(); + case 229: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(287); + END_STATE(); + case 230: + ACCEPT_TOKEN(aux_sym_break_statement_token1); + END_STATE(); + case 231: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(288); + END_STATE(); + case 232: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(289); + END_STATE(); + case 233: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(290); + END_STATE(); + case 234: + ACCEPT_TOKEN(aux_sym_if_statement_token2); + END_STATE(); + case 235: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(291); + END_STATE(); + case 236: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(292); + END_STATE(); + case 237: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(293); + END_STATE(); + case 238: + ACCEPT_TOKEN(aux_sym_final_modifier_token1); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(294); + END_STATE(); + case 239: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(295); + END_STATE(); + case 240: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(296); + END_STATE(); + case 241: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(297); + END_STATE(); + case 242: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(298); + END_STATE(); + case 243: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(299); + END_STATE(); + case 244: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(300); + END_STATE(); + case 245: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(301); + END_STATE(); + case 246: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(302); + END_STATE(); + case 247: + ACCEPT_TOKEN(aux_sym_match_expression_token1); + END_STATE(); + case 248: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(303); + END_STATE(); + case 249: + ACCEPT_TOKEN(aux_sym_print_intrinsic_token1); + END_STATE(); + case 250: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(304); + END_STATE(); + case 251: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(305); + END_STATE(); + case 252: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(306); + END_STATE(); + case 253: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(307); + END_STATE(); + case 254: + ACCEPT_TOKEN(aux_sym_throw_expression_token1); + END_STATE(); + case 255: + ACCEPT_TOKEN(aux_sym_trait_declaration_token1); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_array); + END_STATE(); + case 257: + if (lookahead == 'i') ADVANCE(308); + END_STATE(); + case 258: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 259: + ACCEPT_TOKEN(anon_sym_float); + END_STATE(); + case 260: + if (lookahead == 'b') ADVANCE(309); + END_STATE(); + case 261: + ACCEPT_TOKEN(anon_sym_mixed); + END_STATE(); + case 262: + ACCEPT_TOKEN(sym_bottom_type); + END_STATE(); + case 263: + if (lookahead == 't') ADVANCE(310); + END_STATE(); + case 264: + if (lookahead == 'c') ADVANCE(311); + END_STATE(); + case 265: + if (lookahead == 't') ADVANCE(312); + END_STATE(); + case 266: + if (lookahead == 'g') ADVANCE(313); + END_STATE(); + case 267: + ACCEPT_TOKEN(anon_sym_ticks); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_unset); + END_STATE(); + case 269: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(314); + END_STATE(); + case 270: + ACCEPT_TOKEN(aux_sym_catch_clause_token1); + END_STATE(); + case 271: + ACCEPT_TOKEN(aux_sym_class_declaration_token1); + END_STATE(); + case 272: + ACCEPT_TOKEN(aux_sym_clone_expression_token1); + END_STATE(); + case 273: + ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token3); + END_STATE(); + case 274: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(315); + END_STATE(); + case 275: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(316); + END_STATE(); + case 276: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(317); + END_STATE(); + case 277: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(318); + END_STATE(); + case 278: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(319); + END_STATE(); + case 279: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(320); + END_STATE(); + case 280: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(321); + END_STATE(); + case 281: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(322); + END_STATE(); + case 282: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(323); + END_STATE(); + case 283: + ACCEPT_TOKEN(aux_sym_while_statement_token1); + END_STATE(); + case 284: + ACCEPT_TOKEN(aux_sym_yield_expression_token1); + END_STATE(); + case 285: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(324); + END_STATE(); + case 286: + ACCEPT_TOKEN(aux_sym_cast_type_token2); + END_STATE(); + case 287: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(325); + END_STATE(); + case 288: + ACCEPT_TOKEN(aux_sym_else_if_clause_token1); + END_STATE(); + case 289: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(326); + END_STATE(); + case 290: + ACCEPT_TOKEN(aux_sym_for_statement_token2); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(327); + END_STATE(); + case 291: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(328); + END_STATE(); + case 292: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(329); + END_STATE(); + case 293: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(330); + END_STATE(); + case 294: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(331); + END_STATE(); + case 295: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(332); + END_STATE(); + case 296: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(333); + END_STATE(); + case 297: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(334); + END_STATE(); + case 298: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(335); + END_STATE(); + case 299: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(336); + END_STATE(); + case 300: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(337); + END_STATE(); + case 301: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(338); + END_STATE(); + case 302: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(339); + END_STATE(); + case 303: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(340); + END_STATE(); + case 304: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(341); + END_STATE(); + case 305: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(342); + END_STATE(); + case 306: + ACCEPT_TOKEN(aux_sym_visibility_modifier_token1); + END_STATE(); + case 307: + ACCEPT_TOKEN(aux_sym_switch_statement_token1); + END_STATE(); + case 308: + if (lookahead == 'n') ADVANCE(343); + END_STATE(); + case 309: + if (lookahead == 'l') ADVANCE(344); + END_STATE(); + case 310: + ACCEPT_TOKEN(anon_sym_parent); + END_STATE(); + case 311: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 312: + if (lookahead == '_') ADVANCE(345); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_string); + END_STATE(); + case 314: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(346); + END_STATE(); + case 315: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(347); + END_STATE(); + case 316: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(348); + END_STATE(); + case 317: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(349); + END_STATE(); + case 318: + ACCEPT_TOKEN(aux_sym_cast_type_token5); + END_STATE(); + case 319: + ACCEPT_TOKEN(aux_sym_global_declaration_token1); + END_STATE(); + case 320: + ACCEPT_TOKEN(aux_sym_cast_type_token9); + END_STATE(); + case 321: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(350); + END_STATE(); + case 322: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(351); + END_STATE(); + case 323: + ACCEPT_TOKEN(aux_sym_return_statement_token1); + END_STATE(); + case 324: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(352); + END_STATE(); + case 325: + ACCEPT_TOKEN(aux_sym_cast_type_token4); + END_STATE(); + case 326: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(353); + END_STATE(); + case 327: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(354); + END_STATE(); + case 328: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(355); + END_STATE(); + case 329: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(356); + END_STATE(); + case 330: + ACCEPT_TOKEN(aux_sym_base_clause_token1); + END_STATE(); + case 331: + ACCEPT_TOKEN(aux_sym_finally_clause_token1); + END_STATE(); + case 332: + ACCEPT_TOKEN(aux_sym_foreach_statement_token1); + END_STATE(); + case 333: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(357); + END_STATE(); + case 334: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(358); + END_STATE(); + case 335: + ACCEPT_TOKEN(aux_sym_include_expression_token1); + if (lookahead == '_') ADVANCE(359); + END_STATE(); + case 336: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(360); + END_STATE(); + case 337: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(361); + END_STATE(); + case 338: + ACCEPT_TOKEN(aux_sym_cast_type_token7); + END_STATE(); + case 339: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(362); + END_STATE(); + case 340: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(363); + END_STATE(); + case 341: + ACCEPT_TOKEN(aux_sym_visibility_modifier_token3); + END_STATE(); + case 342: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(364); + END_STATE(); + case 343: + if (lookahead == 'g') ADVANCE(365); + END_STATE(); + case 344: + if (lookahead == 'e') ADVANCE(366); + END_STATE(); + case 345: + if (lookahead == 't') ADVANCE(367); + END_STATE(); + case 346: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(368); + END_STATE(); + case 347: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(369); + END_STATE(); + case 348: + ACCEPT_TOKEN(aux_sym_declare_statement_token1); + END_STATE(); + case 349: + ACCEPT_TOKEN(aux_sym_match_default_expression_token1); + END_STATE(); + case 350: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(370); + END_STATE(); + case 351: + ACCEPT_TOKEN(aux_sym_require_expression_token1); + if (lookahead == '_') ADVANCE(371); + END_STATE(); + case 352: + ACCEPT_TOKEN(aux_sym_abstract_modifier_token1); + END_STATE(); + case 353: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(372); + END_STATE(); + case 354: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(373); + END_STATE(); + case 355: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(374); + END_STATE(); + case 356: + ACCEPT_TOKEN(aux_sym_while_statement_token2); + END_STATE(); + case 357: + ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token2); + END_STATE(); + case 358: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(375); + END_STATE(); + case 359: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(376); + END_STATE(); + case 360: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(377); + END_STATE(); + case 361: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(378); + END_STATE(); + case 362: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(379); + END_STATE(); + case 363: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(380); + END_STATE(); + case 364: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(381); + END_STATE(); + case 365: + ACCEPT_TOKEN(anon_sym_encoding); + END_STATE(); + case 366: + ACCEPT_TOKEN(anon_sym_iterable); + END_STATE(); + case 367: + if (lookahead == 'y') ADVANCE(382); + END_STATE(); + case 368: + ACCEPT_TOKEN(aux_sym_primitive_type_token1); + END_STATE(); + case 369: + ACCEPT_TOKEN(aux_sym_continue_statement_token1); + END_STATE(); + case 370: + ACCEPT_TOKEN(aux_sym_readonly_modifier_token1); + END_STATE(); + case 371: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(383); + END_STATE(); + case 372: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(384); + END_STATE(); + case 373: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(385); + END_STATE(); + case 374: + ACCEPT_TOKEN(aux_sym_switch_block_token1); + END_STATE(); + case 375: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(386); + END_STATE(); + case 376: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(387); + END_STATE(); + case 377: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(388); + END_STATE(); + case 378: + ACCEPT_TOKEN(aux_sym_use_instead_of_clause_token1); + END_STATE(); + case 379: + ACCEPT_TOKEN(aux_sym_interface_declaration_token1); + END_STATE(); + case 380: + ACCEPT_TOKEN(aux_sym_namespace_definition_token1); + END_STATE(); + case 381: + ACCEPT_TOKEN(aux_sym_visibility_modifier_token2); + END_STATE(); + case 382: + if (lookahead == 'p') ADVANCE(389); + END_STATE(); + case 383: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(390); + END_STATE(); + case 384: + ACCEPT_TOKEN(aux_sym_declare_statement_token2); + END_STATE(); + case 385: + ACCEPT_TOKEN(aux_sym_foreach_statement_token2); + END_STATE(); + case 386: + ACCEPT_TOKEN(aux_sym_class_interface_clause_token1); + END_STATE(); + case 387: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(391); + END_STATE(); + case 388: + ACCEPT_TOKEN(aux_sym_binary_expression_token1); + END_STATE(); + case 389: + if (lookahead == 'e') ADVANCE(392); + END_STATE(); + case 390: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(393); + END_STATE(); + case 391: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(394); + END_STATE(); + case 392: + if (lookahead == 's') ADVANCE(395); + END_STATE(); + case 393: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(396); + END_STATE(); + case 394: + ACCEPT_TOKEN(aux_sym_include_once_expression_token1); + END_STATE(); + case 395: + ACCEPT_TOKEN(anon_sym_strict_types); + END_STATE(); + case 396: + ACCEPT_TOKEN(aux_sym_require_once_expression_token1); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 70}, + [2] = {.lex_state = 70}, + [3] = {.lex_state = 70}, + [4] = {.lex_state = 70}, + [5] = {.lex_state = 70}, + [6] = {.lex_state = 70}, + [7] = {.lex_state = 70}, + [8] = {.lex_state = 70}, + [9] = {.lex_state = 70}, + [10] = {.lex_state = 70}, + [11] = {.lex_state = 70}, + [12] = {.lex_state = 70, .external_lex_state = 2}, + [13] = {.lex_state = 70}, + [14] = {.lex_state = 70, .external_lex_state = 2}, + [15] = {.lex_state = 70}, + [16] = {.lex_state = 70, .external_lex_state = 2}, + [17] = {.lex_state = 70, .external_lex_state = 2}, + [18] = {.lex_state = 70}, + [19] = {.lex_state = 70, .external_lex_state = 2}, + [20] = {.lex_state = 70, .external_lex_state = 2}, + [21] = {.lex_state = 70}, + [22] = {.lex_state = 70, .external_lex_state = 2}, + [23] = {.lex_state = 70, .external_lex_state = 2}, + [24] = {.lex_state = 70}, + [25] = {.lex_state = 70}, + [26] = {.lex_state = 70, .external_lex_state = 2}, + [27] = {.lex_state = 70}, + [28] = {.lex_state = 70}, + [29] = {.lex_state = 70}, + [30] = {.lex_state = 70}, + [31] = {.lex_state = 70}, + [32] = {.lex_state = 70, .external_lex_state = 2}, + [33] = {.lex_state = 70, .external_lex_state = 2}, + [34] = {.lex_state = 70}, + [35] = {.lex_state = 70, .external_lex_state = 2}, + [36] = {.lex_state = 70}, + [37] = {.lex_state = 70, .external_lex_state = 2}, + [38] = {.lex_state = 70, .external_lex_state = 2}, + [39] = {.lex_state = 70}, + [40] = {.lex_state = 70, .external_lex_state = 2}, + [41] = {.lex_state = 70}, + [42] = {.lex_state = 70}, + [43] = {.lex_state = 70}, + [44] = {.lex_state = 70}, + [45] = {.lex_state = 70}, + [46] = {.lex_state = 70, .external_lex_state = 2}, + [47] = {.lex_state = 70}, + [48] = {.lex_state = 70}, + [49] = {.lex_state = 70}, + [50] = {.lex_state = 70}, + [51] = {.lex_state = 70}, + [52] = {.lex_state = 70}, + [53] = {.lex_state = 70}, + [54] = {.lex_state = 70}, + [55] = {.lex_state = 70}, + [56] = {.lex_state = 70}, + [57] = {.lex_state = 70}, + [58] = {.lex_state = 70}, + [59] = {.lex_state = 70}, + [60] = {.lex_state = 70}, + [61] = {.lex_state = 70, .external_lex_state = 2}, + [62] = {.lex_state = 70, .external_lex_state = 2}, + [63] = {.lex_state = 70}, + [64] = {.lex_state = 70, .external_lex_state = 2}, + [65] = {.lex_state = 70}, + [66] = {.lex_state = 70, .external_lex_state = 2}, + [67] = {.lex_state = 70, .external_lex_state = 2}, + [68] = {.lex_state = 70, .external_lex_state = 2}, + [69] = {.lex_state = 70}, + [70] = {.lex_state = 70}, + [71] = {.lex_state = 70}, + [72] = {.lex_state = 70}, + [73] = {.lex_state = 70}, + [74] = {.lex_state = 70, .external_lex_state = 2}, + [75] = {.lex_state = 70, .external_lex_state = 2}, + [76] = {.lex_state = 70}, + [77] = {.lex_state = 70}, + [78] = {.lex_state = 70}, + [79] = {.lex_state = 70}, + [80] = {.lex_state = 70}, + [81] = {.lex_state = 70}, + [82] = {.lex_state = 70}, + [83] = {.lex_state = 70}, + [84] = {.lex_state = 70}, + [85] = {.lex_state = 6}, + [86] = {.lex_state = 6}, + [87] = {.lex_state = 6, .external_lex_state = 2}, + [88] = {.lex_state = 6}, + [89] = {.lex_state = 8}, + [90] = {.lex_state = 8}, + [91] = {.lex_state = 8}, + [92] = {.lex_state = 8}, + [93] = {.lex_state = 8}, + [94] = {.lex_state = 8}, + [95] = {.lex_state = 8}, + [96] = {.lex_state = 8}, + [97] = {.lex_state = 8}, + [98] = {.lex_state = 8}, + [99] = {.lex_state = 8}, + [100] = {.lex_state = 7}, + [101] = {.lex_state = 7}, + [102] = {.lex_state = 7}, + [103] = {.lex_state = 7}, + [104] = {.lex_state = 7}, + [105] = {.lex_state = 7}, + [106] = {.lex_state = 7}, + [107] = {.lex_state = 7}, + [108] = {.lex_state = 7}, + [109] = {.lex_state = 7}, + [110] = {.lex_state = 7}, + [111] = {.lex_state = 7}, + [112] = {.lex_state = 7}, + [113] = {.lex_state = 7}, + [114] = {.lex_state = 7}, + [115] = {.lex_state = 7}, + [116] = {.lex_state = 7}, + [117] = {.lex_state = 7}, + [118] = {.lex_state = 70}, + [119] = {.lex_state = 7}, + [120] = {.lex_state = 7}, + [121] = {.lex_state = 7}, + [122] = {.lex_state = 7}, + [123] = {.lex_state = 7}, + [124] = {.lex_state = 7}, + [125] = {.lex_state = 7}, + [126] = {.lex_state = 7}, + [127] = {.lex_state = 70}, + [128] = {.lex_state = 7}, + [129] = {.lex_state = 7}, + [130] = {.lex_state = 7}, + [131] = {.lex_state = 7}, + [132] = {.lex_state = 7}, + [133] = {.lex_state = 7}, + [134] = {.lex_state = 7}, + [135] = {.lex_state = 7}, + [136] = {.lex_state = 7}, + [137] = {.lex_state = 7}, + [138] = {.lex_state = 7}, + [139] = {.lex_state = 7}, + [140] = {.lex_state = 7}, + [141] = {.lex_state = 7}, + [142] = {.lex_state = 7}, + [143] = {.lex_state = 70}, + [144] = {.lex_state = 70}, + [145] = {.lex_state = 70}, + [146] = {.lex_state = 70}, + [147] = {.lex_state = 7}, + [148] = {.lex_state = 70}, + [149] = {.lex_state = 7}, + [150] = {.lex_state = 70}, + [151] = {.lex_state = 70}, + [152] = {.lex_state = 70}, + [153] = {.lex_state = 7}, + [154] = {.lex_state = 70}, + [155] = {.lex_state = 70}, + [156] = {.lex_state = 7}, + [157] = {.lex_state = 70}, + [158] = {.lex_state = 70}, + [159] = {.lex_state = 70}, + [160] = {.lex_state = 70}, + [161] = {.lex_state = 70}, + [162] = {.lex_state = 70}, + [163] = {.lex_state = 70}, + [164] = {.lex_state = 70}, + [165] = {.lex_state = 70}, + [166] = {.lex_state = 70}, + [167] = {.lex_state = 70}, + [168] = {.lex_state = 70}, + [169] = {.lex_state = 70}, + [170] = {.lex_state = 70}, + [171] = {.lex_state = 70}, + [172] = {.lex_state = 70}, + [173] = {.lex_state = 70}, + [174] = {.lex_state = 70}, + [175] = {.lex_state = 70}, + [176] = {.lex_state = 70}, + [177] = {.lex_state = 70}, + [178] = {.lex_state = 70}, + [179] = {.lex_state = 70}, + [180] = {.lex_state = 70}, + [181] = {.lex_state = 70}, + [182] = {.lex_state = 70}, + [183] = {.lex_state = 70}, + [184] = {.lex_state = 70}, + [185] = {.lex_state = 70}, + [186] = {.lex_state = 70}, + [187] = {.lex_state = 70, .external_lex_state = 2}, + [188] = {.lex_state = 70, .external_lex_state = 2}, + [189] = {.lex_state = 70}, + [190] = {.lex_state = 70}, + [191] = {.lex_state = 7}, + [192] = {.lex_state = 70}, + [193] = {.lex_state = 70, .external_lex_state = 2}, + [194] = {.lex_state = 7}, + [195] = {.lex_state = 70}, + [196] = {.lex_state = 70}, + [197] = {.lex_state = 70, .external_lex_state = 2}, + [198] = {.lex_state = 70, .external_lex_state = 2}, + [199] = {.lex_state = 70}, + [200] = {.lex_state = 70, .external_lex_state = 2}, + [201] = {.lex_state = 70}, + [202] = {.lex_state = 70}, + [203] = {.lex_state = 70}, + [204] = {.lex_state = 70}, + [205] = {.lex_state = 70}, + [206] = {.lex_state = 70}, + [207] = {.lex_state = 70}, + [208] = {.lex_state = 70}, + [209] = {.lex_state = 70}, + [210] = {.lex_state = 70}, + [211] = {.lex_state = 70}, + [212] = {.lex_state = 70}, + [213] = {.lex_state = 70}, + [214] = {.lex_state = 70}, + [215] = {.lex_state = 70}, + [216] = {.lex_state = 70}, + [217] = {.lex_state = 70}, + [218] = {.lex_state = 70}, + [219] = {.lex_state = 70}, + [220] = {.lex_state = 70}, + [221] = {.lex_state = 70}, + [222] = {.lex_state = 70}, + [223] = {.lex_state = 70}, + [224] = {.lex_state = 70}, + [225] = {.lex_state = 70}, + [226] = {.lex_state = 70}, + [227] = {.lex_state = 70}, + [228] = {.lex_state = 70}, + [229] = {.lex_state = 70}, + [230] = {.lex_state = 70}, + [231] = {.lex_state = 70}, + [232] = {.lex_state = 70}, + [233] = {.lex_state = 70}, + [234] = {.lex_state = 70}, + [235] = {.lex_state = 70}, + [236] = {.lex_state = 70}, + [237] = {.lex_state = 70}, + [238] = {.lex_state = 70}, + [239] = {.lex_state = 70}, + [240] = {.lex_state = 70}, + [241] = {.lex_state = 70}, + [242] = {.lex_state = 70}, + [243] = {.lex_state = 70}, + [244] = {.lex_state = 70}, + [245] = {.lex_state = 70}, + [246] = {.lex_state = 70}, + [247] = {.lex_state = 70}, + [248] = {.lex_state = 70}, + [249] = {.lex_state = 70}, + [250] = {.lex_state = 70}, + [251] = {.lex_state = 70}, + [252] = {.lex_state = 70}, + [253] = {.lex_state = 70}, + [254] = {.lex_state = 70}, + [255] = {.lex_state = 70}, + [256] = {.lex_state = 70}, + [257] = {.lex_state = 70}, + [258] = {.lex_state = 70}, + [259] = {.lex_state = 70}, + [260] = {.lex_state = 70}, + [261] = {.lex_state = 70}, + [262] = {.lex_state = 70}, + [263] = {.lex_state = 70}, + [264] = {.lex_state = 70}, + [265] = {.lex_state = 70}, + [266] = {.lex_state = 70}, + [267] = {.lex_state = 70}, + [268] = {.lex_state = 70}, + [269] = {.lex_state = 70}, + [270] = {.lex_state = 70}, + [271] = {.lex_state = 70}, + [272] = {.lex_state = 70}, + [273] = {.lex_state = 70}, + [274] = {.lex_state = 70}, + [275] = {.lex_state = 70}, + [276] = {.lex_state = 70}, + [277] = {.lex_state = 70}, + [278] = {.lex_state = 70}, + [279] = {.lex_state = 70}, + [280] = {.lex_state = 70}, + [281] = {.lex_state = 70}, + [282] = {.lex_state = 70}, + [283] = {.lex_state = 70}, + [284] = {.lex_state = 70}, + [285] = {.lex_state = 70}, + [286] = {.lex_state = 70}, + [287] = {.lex_state = 70}, + [288] = {.lex_state = 70}, + [289] = {.lex_state = 70}, + [290] = {.lex_state = 70}, + [291] = {.lex_state = 70}, + [292] = {.lex_state = 70}, + [293] = {.lex_state = 70}, + [294] = {.lex_state = 70}, + [295] = {.lex_state = 70}, + [296] = {.lex_state = 70}, + [297] = {.lex_state = 70}, + [298] = {.lex_state = 70}, + [299] = {.lex_state = 70}, + [300] = {.lex_state = 70}, + [301] = {.lex_state = 70}, + [302] = {.lex_state = 70}, + [303] = {.lex_state = 70}, + [304] = {.lex_state = 70}, + [305] = {.lex_state = 70}, + [306] = {.lex_state = 70}, + [307] = {.lex_state = 70}, + [308] = {.lex_state = 70}, + [309] = {.lex_state = 70}, + [310] = {.lex_state = 70}, + [311] = {.lex_state = 70}, + [312] = {.lex_state = 70}, + [313] = {.lex_state = 70}, + [314] = {.lex_state = 70}, + [315] = {.lex_state = 70}, + [316] = {.lex_state = 70}, + [317] = {.lex_state = 70}, + [318] = {.lex_state = 70}, + [319] = {.lex_state = 70}, + [320] = {.lex_state = 70}, + [321] = {.lex_state = 70}, + [322] = {.lex_state = 70}, + [323] = {.lex_state = 70}, + [324] = {.lex_state = 70}, + [325] = {.lex_state = 70}, + [326] = {.lex_state = 70}, + [327] = {.lex_state = 70}, + [328] = {.lex_state = 70}, + [329] = {.lex_state = 70}, + [330] = {.lex_state = 70}, + [331] = {.lex_state = 70}, + [332] = {.lex_state = 70}, + [333] = {.lex_state = 70}, + [334] = {.lex_state = 70}, + [335] = {.lex_state = 70}, + [336] = {.lex_state = 70}, + [337] = {.lex_state = 70}, + [338] = {.lex_state = 70}, + [339] = {.lex_state = 70}, + [340] = {.lex_state = 70}, + [341] = {.lex_state = 70}, + [342] = {.lex_state = 70}, + [343] = {.lex_state = 70}, + [344] = {.lex_state = 70}, + [345] = {.lex_state = 70}, + [346] = {.lex_state = 70}, + [347] = {.lex_state = 70}, + [348] = {.lex_state = 70}, + [349] = {.lex_state = 70}, + [350] = {.lex_state = 70}, + [351] = {.lex_state = 70}, + [352] = {.lex_state = 70}, + [353] = {.lex_state = 70}, + [354] = {.lex_state = 70}, + [355] = {.lex_state = 70}, + [356] = {.lex_state = 70}, + [357] = {.lex_state = 70}, + [358] = {.lex_state = 70}, + [359] = {.lex_state = 70}, + [360] = {.lex_state = 70}, + [361] = {.lex_state = 70}, + [362] = {.lex_state = 70}, + [363] = {.lex_state = 70}, + [364] = {.lex_state = 70}, + [365] = {.lex_state = 70}, + [366] = {.lex_state = 70}, + [367] = {.lex_state = 70}, + [368] = {.lex_state = 70}, + [369] = {.lex_state = 70}, + [370] = {.lex_state = 70}, + [371] = {.lex_state = 70}, + [372] = {.lex_state = 70}, + [373] = {.lex_state = 70}, + [374] = {.lex_state = 70}, + [375] = {.lex_state = 70}, + [376] = {.lex_state = 70}, + [377] = {.lex_state = 70}, + [378] = {.lex_state = 70}, + [379] = {.lex_state = 70}, + [380] = {.lex_state = 70}, + [381] = {.lex_state = 70}, + [382] = {.lex_state = 70}, + [383] = {.lex_state = 70}, + [384] = {.lex_state = 70}, + [385] = {.lex_state = 70}, + [386] = {.lex_state = 70}, + [387] = {.lex_state = 70}, + [388] = {.lex_state = 70}, + [389] = {.lex_state = 70}, + [390] = {.lex_state = 70}, + [391] = {.lex_state = 70}, + [392] = {.lex_state = 70}, + [393] = {.lex_state = 70}, + [394] = {.lex_state = 70}, + [395] = {.lex_state = 70}, + [396] = {.lex_state = 70}, + [397] = {.lex_state = 70}, + [398] = {.lex_state = 70}, + [399] = {.lex_state = 70}, + [400] = {.lex_state = 70}, + [401] = {.lex_state = 70}, + [402] = {.lex_state = 70}, + [403] = {.lex_state = 70}, + [404] = {.lex_state = 70}, + [405] = {.lex_state = 70}, + [406] = {.lex_state = 70}, + [407] = {.lex_state = 70}, + [408] = {.lex_state = 70}, + [409] = {.lex_state = 70}, + [410] = {.lex_state = 70}, + [411] = {.lex_state = 70}, + [412] = {.lex_state = 70}, + [413] = {.lex_state = 70}, + [414] = {.lex_state = 70}, + [415] = {.lex_state = 70}, + [416] = {.lex_state = 70}, + [417] = {.lex_state = 70}, + [418] = {.lex_state = 70}, + [419] = {.lex_state = 70}, + [420] = {.lex_state = 70}, + [421] = {.lex_state = 70}, + [422] = {.lex_state = 70}, + [423] = {.lex_state = 70}, + [424] = {.lex_state = 70}, + [425] = {.lex_state = 70}, + [426] = {.lex_state = 70}, + [427] = {.lex_state = 70}, + [428] = {.lex_state = 70}, + [429] = {.lex_state = 70}, + [430] = {.lex_state = 70}, + [431] = {.lex_state = 70, .external_lex_state = 2}, + [432] = {.lex_state = 70, .external_lex_state = 2}, + [433] = {.lex_state = 70, .external_lex_state = 2}, + [434] = {.lex_state = 70, .external_lex_state = 2}, + [435] = {.lex_state = 70, .external_lex_state = 2}, + [436] = {.lex_state = 70, .external_lex_state = 2}, + [437] = {.lex_state = 70}, + [438] = {.lex_state = 70, .external_lex_state = 2}, + [439] = {.lex_state = 70, .external_lex_state = 2}, + [440] = {.lex_state = 70, .external_lex_state = 2}, + [441] = {.lex_state = 70}, + [442] = {.lex_state = 70, .external_lex_state = 2}, + [443] = {.lex_state = 70, .external_lex_state = 2}, + [444] = {.lex_state = 70, .external_lex_state = 2}, + [445] = {.lex_state = 70, .external_lex_state = 2}, + [446] = {.lex_state = 70}, + [447] = {.lex_state = 70}, + [448] = {.lex_state = 70}, + [449] = {.lex_state = 70, .external_lex_state = 2}, + [450] = {.lex_state = 70}, + [451] = {.lex_state = 70}, + [452] = {.lex_state = 70}, + [453] = {.lex_state = 70}, + [454] = {.lex_state = 70}, + [455] = {.lex_state = 70}, + [456] = {.lex_state = 70}, + [457] = {.lex_state = 70}, + [458] = {.lex_state = 70}, + [459] = {.lex_state = 70}, + [460] = {.lex_state = 70}, + [461] = {.lex_state = 70}, + [462] = {.lex_state = 70}, + [463] = {.lex_state = 70}, + [464] = {.lex_state = 70}, + [465] = {.lex_state = 70}, + [466] = {.lex_state = 70}, + [467] = {.lex_state = 70}, + [468] = {.lex_state = 70}, + [469] = {.lex_state = 70}, + [470] = {.lex_state = 70}, + [471] = {.lex_state = 70}, + [472] = {.lex_state = 70}, + [473] = {.lex_state = 70}, + [474] = {.lex_state = 70}, + [475] = {.lex_state = 70}, + [476] = {.lex_state = 70}, + [477] = {.lex_state = 70}, + [478] = {.lex_state = 70}, + [479] = {.lex_state = 70}, + [480] = {.lex_state = 70}, + [481] = {.lex_state = 70}, + [482] = {.lex_state = 70}, + [483] = {.lex_state = 70}, + [484] = {.lex_state = 70}, + [485] = {.lex_state = 70}, + [486] = {.lex_state = 70}, + [487] = {.lex_state = 70}, + [488] = {.lex_state = 70}, + [489] = {.lex_state = 70}, + [490] = {.lex_state = 70}, + [491] = {.lex_state = 70}, + [492] = {.lex_state = 70}, + [493] = {.lex_state = 70}, + [494] = {.lex_state = 70}, + [495] = {.lex_state = 70}, + [496] = {.lex_state = 70}, + [497] = {.lex_state = 70}, + [498] = {.lex_state = 70}, + [499] = {.lex_state = 70}, + [500] = {.lex_state = 70}, + [501] = {.lex_state = 70}, + [502] = {.lex_state = 70}, + [503] = {.lex_state = 70}, + [504] = {.lex_state = 70}, + [505] = {.lex_state = 70}, + [506] = {.lex_state = 70}, + [507] = {.lex_state = 70}, + [508] = {.lex_state = 70}, + [509] = {.lex_state = 70}, + [510] = {.lex_state = 70}, + [511] = {.lex_state = 70}, + [512] = {.lex_state = 70}, + [513] = {.lex_state = 70}, + [514] = {.lex_state = 70}, + [515] = {.lex_state = 70}, + [516] = {.lex_state = 70}, + [517] = {.lex_state = 70}, + [518] = {.lex_state = 70}, + [519] = {.lex_state = 70}, + [520] = {.lex_state = 70}, + [521] = {.lex_state = 70}, + [522] = {.lex_state = 70}, + [523] = {.lex_state = 70}, + [524] = {.lex_state = 70}, + [525] = {.lex_state = 70}, + [526] = {.lex_state = 70}, + [527] = {.lex_state = 70}, + [528] = {.lex_state = 70}, + [529] = {.lex_state = 70}, + [530] = {.lex_state = 70}, + [531] = {.lex_state = 70}, + [532] = {.lex_state = 70}, + [533] = {.lex_state = 70}, + [534] = {.lex_state = 70}, + [535] = {.lex_state = 70}, + [536] = {.lex_state = 70}, + [537] = {.lex_state = 70}, + [538] = {.lex_state = 70}, + [539] = {.lex_state = 70}, + [540] = {.lex_state = 70}, + [541] = {.lex_state = 70}, + [542] = {.lex_state = 70}, + [543] = {.lex_state = 70}, + [544] = {.lex_state = 70}, + [545] = {.lex_state = 70}, + [546] = {.lex_state = 70}, + [547] = {.lex_state = 70}, + [548] = {.lex_state = 70}, + [549] = {.lex_state = 70}, + [550] = {.lex_state = 70}, + [551] = {.lex_state = 70}, + [552] = {.lex_state = 71}, + [553] = {.lex_state = 71}, + [554] = {.lex_state = 71}, + [555] = {.lex_state = 71}, + [556] = {.lex_state = 71}, + [557] = {.lex_state = 71}, + [558] = {.lex_state = 71}, + [559] = {.lex_state = 71}, + [560] = {.lex_state = 71}, + [561] = {.lex_state = 71}, + [562] = {.lex_state = 71}, + [563] = {.lex_state = 71}, + [564] = {.lex_state = 71}, + [565] = {.lex_state = 71}, + [566] = {.lex_state = 71}, + [567] = {.lex_state = 71}, + [568] = {.lex_state = 71}, + [569] = {.lex_state = 71}, + [570] = {.lex_state = 71}, + [571] = {.lex_state = 71}, + [572] = {.lex_state = 71}, + [573] = {.lex_state = 71}, + [574] = {.lex_state = 71}, + [575] = {.lex_state = 71}, + [576] = {.lex_state = 71}, + [577] = {.lex_state = 71}, + [578] = {.lex_state = 71}, + [579] = {.lex_state = 71}, + [580] = {.lex_state = 71}, + [581] = {.lex_state = 71}, + [582] = {.lex_state = 71, .external_lex_state = 2}, + [583] = {.lex_state = 71, .external_lex_state = 2}, + [584] = {.lex_state = 71, .external_lex_state = 2}, + [585] = {.lex_state = 71, .external_lex_state = 2}, + [586] = {.lex_state = 71, .external_lex_state = 2}, + [587] = {.lex_state = 71}, + [588] = {.lex_state = 71, .external_lex_state = 2}, + [589] = {.lex_state = 71, .external_lex_state = 2}, + [590] = {.lex_state = 71, .external_lex_state = 2}, + [591] = {.lex_state = 71}, + [592] = {.lex_state = 71, .external_lex_state = 2}, + [593] = {.lex_state = 71, .external_lex_state = 2}, + [594] = {.lex_state = 71, .external_lex_state = 2}, + [595] = {.lex_state = 71, .external_lex_state = 2}, + [596] = {.lex_state = 71, .external_lex_state = 2}, + [597] = {.lex_state = 71}, + [598] = {.lex_state = 71}, + [599] = {.lex_state = 71, .external_lex_state = 2}, + [600] = {.lex_state = 71}, + [601] = {.lex_state = 71, .external_lex_state = 2}, + [602] = {.lex_state = 71, .external_lex_state = 2}, + [603] = {.lex_state = 71, .external_lex_state = 2}, + [604] = {.lex_state = 71}, + [605] = {.lex_state = 71, .external_lex_state = 2}, + [606] = {.lex_state = 71}, + [607] = {.lex_state = 71}, + [608] = {.lex_state = 71}, + [609] = {.lex_state = 71, .external_lex_state = 2}, + [610] = {.lex_state = 71, .external_lex_state = 2}, + [611] = {.lex_state = 71, .external_lex_state = 2}, + [612] = {.lex_state = 71, .external_lex_state = 2}, + [613] = {.lex_state = 71, .external_lex_state = 2}, + [614] = {.lex_state = 71, .external_lex_state = 2}, + [615] = {.lex_state = 71, .external_lex_state = 2}, + [616] = {.lex_state = 71}, + [617] = {.lex_state = 71, .external_lex_state = 2}, + [618] = {.lex_state = 71, .external_lex_state = 2}, + [619] = {.lex_state = 71, .external_lex_state = 2}, + [620] = {.lex_state = 71}, + [621] = {.lex_state = 71}, + [622] = {.lex_state = 71}, + [623] = {.lex_state = 71}, + [624] = {.lex_state = 71}, + [625] = {.lex_state = 71}, + [626] = {.lex_state = 71}, + [627] = {.lex_state = 71}, + [628] = {.lex_state = 9}, + [629] = {.lex_state = 9}, + [630] = {.lex_state = 13}, + [631] = {.lex_state = 9}, + [632] = {.lex_state = 13}, + [633] = {.lex_state = 11}, + [634] = {.lex_state = 11}, + [635] = {.lex_state = 9}, + [636] = {.lex_state = 9}, + [637] = {.lex_state = 11}, + [638] = {.lex_state = 9}, + [639] = {.lex_state = 11}, + [640] = {.lex_state = 11}, + [641] = {.lex_state = 9}, + [642] = {.lex_state = 9}, + [643] = {.lex_state = 15}, + [644] = {.lex_state = 9}, + [645] = {.lex_state = 9}, + [646] = {.lex_state = 9}, + [647] = {.lex_state = 9}, + [648] = {.lex_state = 9}, + [649] = {.lex_state = 9}, + [650] = {.lex_state = 9}, + [651] = {.lex_state = 9}, + [652] = {.lex_state = 9}, + [653] = {.lex_state = 9}, + [654] = {.lex_state = 15}, + [655] = {.lex_state = 9}, + [656] = {.lex_state = 11}, + [657] = {.lex_state = 9}, + [658] = {.lex_state = 9}, + [659] = {.lex_state = 9}, + [660] = {.lex_state = 9}, + [661] = {.lex_state = 9}, + [662] = {.lex_state = 11}, + [663] = {.lex_state = 11}, + [664] = {.lex_state = 11}, + [665] = {.lex_state = 11}, + [666] = {.lex_state = 11}, + [667] = {.lex_state = 11}, + [668] = {.lex_state = 11}, + [669] = {.lex_state = 11}, + [670] = {.lex_state = 11}, + [671] = {.lex_state = 11}, + [672] = {.lex_state = 16}, + [673] = {.lex_state = 9}, + [674] = {.lex_state = 11}, + [675] = {.lex_state = 11}, + [676] = {.lex_state = 9}, + [677] = {.lex_state = 11}, + [678] = {.lex_state = 11}, + [679] = {.lex_state = 11}, + [680] = {.lex_state = 16}, + [681] = {.lex_state = 11}, + [682] = {.lex_state = 16}, + [683] = {.lex_state = 16}, + [684] = {.lex_state = 11}, + [685] = {.lex_state = 11}, + [686] = {.lex_state = 19}, + [687] = {.lex_state = 11}, + [688] = {.lex_state = 11}, + [689] = {.lex_state = 16}, + [690] = {.lex_state = 11}, + [691] = {.lex_state = 11}, + [692] = {.lex_state = 11}, + [693] = {.lex_state = 11}, + [694] = {.lex_state = 11}, + [695] = {.lex_state = 11}, + [696] = {.lex_state = 19}, + [697] = {.lex_state = 11}, + [698] = {.lex_state = 11}, + [699] = {.lex_state = 11}, + [700] = {.lex_state = 11}, + [701] = {.lex_state = 11}, + [702] = {.lex_state = 11}, + [703] = {.lex_state = 11}, + [704] = {.lex_state = 11}, + [705] = {.lex_state = 11}, + [706] = {.lex_state = 11}, + [707] = {.lex_state = 19}, + [708] = {.lex_state = 11}, + [709] = {.lex_state = 11}, + [710] = {.lex_state = 11}, + [711] = {.lex_state = 11}, + [712] = {.lex_state = 11}, + [713] = {.lex_state = 11}, + [714] = {.lex_state = 11}, + [715] = {.lex_state = 11}, + [716] = {.lex_state = 11}, + [717] = {.lex_state = 11}, + [718] = {.lex_state = 11}, + [719] = {.lex_state = 11}, + [720] = {.lex_state = 11}, + [721] = {.lex_state = 11}, + [722] = {.lex_state = 11}, + [723] = {.lex_state = 19}, + [724] = {.lex_state = 19}, + [725] = {.lex_state = 11}, + [726] = {.lex_state = 11}, + [727] = {.lex_state = 11}, + [728] = {.lex_state = 11}, + [729] = {.lex_state = 11}, + [730] = {.lex_state = 19}, + [731] = {.lex_state = 16}, + [732] = {.lex_state = 11}, + [733] = {.lex_state = 11}, + [734] = {.lex_state = 11}, + [735] = {.lex_state = 11}, + [736] = {.lex_state = 11}, + [737] = {.lex_state = 11}, + [738] = {.lex_state = 11}, + [739] = {.lex_state = 11}, + [740] = {.lex_state = 11}, + [741] = {.lex_state = 11}, + [742] = {.lex_state = 11}, + [743] = {.lex_state = 11}, + [744] = {.lex_state = 11}, + [745] = {.lex_state = 11, .external_lex_state = 2}, + [746] = {.lex_state = 9, .external_lex_state = 2}, + [747] = {.lex_state = 19}, + [748] = {.lex_state = 11, .external_lex_state = 2}, + [749] = {.lex_state = 9, .external_lex_state = 2}, + [750] = {.lex_state = 11, .external_lex_state = 2}, + [751] = {.lex_state = 11}, + [752] = {.lex_state = 9, .external_lex_state = 2}, + [753] = {.lex_state = 9, .external_lex_state = 2}, + [754] = {.lex_state = 11}, + [755] = {.lex_state = 12}, + [756] = {.lex_state = 11}, + [757] = {.lex_state = 12}, + [758] = {.lex_state = 11}, + [759] = {.lex_state = 11, .external_lex_state = 2}, + [760] = {.lex_state = 9, .external_lex_state = 2}, + [761] = {.lex_state = 11}, + [762] = {.lex_state = 11}, + [763] = {.lex_state = 9, .external_lex_state = 2}, + [764] = {.lex_state = 9, .external_lex_state = 2}, + [765] = {.lex_state = 9, .external_lex_state = 2}, + [766] = {.lex_state = 9, .external_lex_state = 2}, + [767] = {.lex_state = 9, .external_lex_state = 2}, + [768] = {.lex_state = 9, .external_lex_state = 2}, + [769] = {.lex_state = 9, .external_lex_state = 2}, + [770] = {.lex_state = 9, .external_lex_state = 2}, + [771] = {.lex_state = 9, .external_lex_state = 2}, + [772] = {.lex_state = 9, .external_lex_state = 2}, + [773] = {.lex_state = 9, .external_lex_state = 2}, + [774] = {.lex_state = 9, .external_lex_state = 2}, + [775] = {.lex_state = 11}, + [776] = {.lex_state = 9, .external_lex_state = 2}, + [777] = {.lex_state = 7}, + [778] = {.lex_state = 9, .external_lex_state = 2}, + [779] = {.lex_state = 9, .external_lex_state = 2}, + [780] = {.lex_state = 9, .external_lex_state = 2}, + [781] = {.lex_state = 11, .external_lex_state = 2}, + [782] = {.lex_state = 9, .external_lex_state = 2}, + [783] = {.lex_state = 11, .external_lex_state = 2}, + [784] = {.lex_state = 9, .external_lex_state = 2}, + [785] = {.lex_state = 9, .external_lex_state = 2}, + [786] = {.lex_state = 11, .external_lex_state = 2}, + [787] = {.lex_state = 11, .external_lex_state = 2}, + [788] = {.lex_state = 11, .external_lex_state = 2}, + [789] = {.lex_state = 11, .external_lex_state = 2}, + [790] = {.lex_state = 11, .external_lex_state = 2}, + [791] = {.lex_state = 11, .external_lex_state = 2}, + [792] = {.lex_state = 16}, + [793] = {.lex_state = 16}, + [794] = {.lex_state = 16}, + [795] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 11, .external_lex_state = 2}, + [797] = {.lex_state = 11, .external_lex_state = 2}, + [798] = {.lex_state = 11, .external_lex_state = 2}, + [799] = {.lex_state = 11, .external_lex_state = 2}, + [800] = {.lex_state = 16}, + [801] = {.lex_state = 11, .external_lex_state = 2}, + [802] = {.lex_state = 11, .external_lex_state = 2}, + [803] = {.lex_state = 16}, + [804] = {.lex_state = 11, .external_lex_state = 2}, + [805] = {.lex_state = 16}, + [806] = {.lex_state = 16}, + [807] = {.lex_state = 11, .external_lex_state = 2}, + [808] = {.lex_state = 11, .external_lex_state = 2}, + [809] = {.lex_state = 11, .external_lex_state = 2}, + [810] = {.lex_state = 16}, + [811] = {.lex_state = 11, .external_lex_state = 2}, + [812] = {.lex_state = 16}, + [813] = {.lex_state = 11, .external_lex_state = 2}, + [814] = {.lex_state = 11, .external_lex_state = 2}, + [815] = {.lex_state = 11, .external_lex_state = 2}, + [816] = {.lex_state = 16}, + [817] = {.lex_state = 12}, + [818] = {.lex_state = 12}, + [819] = {.lex_state = 11, .external_lex_state = 2}, + [820] = {.lex_state = 11, .external_lex_state = 2}, + [821] = {.lex_state = 11, .external_lex_state = 2}, + [822] = {.lex_state = 16}, + [823] = {.lex_state = 9, .external_lex_state = 2}, + [824] = {.lex_state = 11, .external_lex_state = 2}, + [825] = {.lex_state = 11, .external_lex_state = 2}, + [826] = {.lex_state = 11, .external_lex_state = 2}, + [827] = {.lex_state = 11, .external_lex_state = 2}, + [828] = {.lex_state = 11, .external_lex_state = 2}, + [829] = {.lex_state = 11, .external_lex_state = 2}, + [830] = {.lex_state = 11, .external_lex_state = 2}, + [831] = {.lex_state = 11, .external_lex_state = 2}, + [832] = {.lex_state = 16}, + [833] = {.lex_state = 16}, + [834] = {.lex_state = 16}, + [835] = {.lex_state = 11, .external_lex_state = 2}, + [836] = {.lex_state = 16}, + [837] = {.lex_state = 11, .external_lex_state = 2}, + [838] = {.lex_state = 11, .external_lex_state = 2}, + [839] = {.lex_state = 11, .external_lex_state = 2}, + [840] = {.lex_state = 11, .external_lex_state = 2}, + [841] = {.lex_state = 11, .external_lex_state = 2}, + [842] = {.lex_state = 11, .external_lex_state = 2}, + [843] = {.lex_state = 11}, + [844] = {.lex_state = 11, .external_lex_state = 2}, + [845] = {.lex_state = 11, .external_lex_state = 2}, + [846] = {.lex_state = 11, .external_lex_state = 2}, + [847] = {.lex_state = 11, .external_lex_state = 2}, + [848] = {.lex_state = 11, .external_lex_state = 2}, + [849] = {.lex_state = 11, .external_lex_state = 2}, + [850] = {.lex_state = 11, .external_lex_state = 2}, + [851] = {.lex_state = 11, .external_lex_state = 2}, + [852] = {.lex_state = 11, .external_lex_state = 2}, + [853] = {.lex_state = 11, .external_lex_state = 2}, + [854] = {.lex_state = 11, .external_lex_state = 2}, + [855] = {.lex_state = 11, .external_lex_state = 2}, + [856] = {.lex_state = 11, .external_lex_state = 2}, + [857] = {.lex_state = 11}, + [858] = {.lex_state = 11, .external_lex_state = 2}, + [859] = {.lex_state = 11, .external_lex_state = 2}, + [860] = {.lex_state = 11, .external_lex_state = 2}, + [861] = {.lex_state = 11, .external_lex_state = 2}, + [862] = {.lex_state = 11, .external_lex_state = 2}, + [863] = {.lex_state = 11, .external_lex_state = 2}, + [864] = {.lex_state = 11, .external_lex_state = 2}, + [865] = {.lex_state = 11, .external_lex_state = 2}, + [866] = {.lex_state = 11, .external_lex_state = 2}, + [867] = {.lex_state = 11, .external_lex_state = 2}, + [868] = {.lex_state = 11, .external_lex_state = 2}, + [869] = {.lex_state = 11, .external_lex_state = 2}, + [870] = {.lex_state = 11, .external_lex_state = 2}, + [871] = {.lex_state = 11, .external_lex_state = 2}, + [872] = {.lex_state = 11, .external_lex_state = 2}, + [873] = {.lex_state = 11, .external_lex_state = 2}, + [874] = {.lex_state = 11, .external_lex_state = 2}, + [875] = {.lex_state = 11, .external_lex_state = 2}, + [876] = {.lex_state = 11, .external_lex_state = 2}, + [877] = {.lex_state = 11, .external_lex_state = 2}, + [878] = {.lex_state = 11, .external_lex_state = 2}, + [879] = {.lex_state = 11, .external_lex_state = 2}, + [880] = {.lex_state = 11, .external_lex_state = 2}, + [881] = {.lex_state = 11, .external_lex_state = 2}, + [882] = {.lex_state = 11, .external_lex_state = 2}, + [883] = {.lex_state = 12}, + [884] = {.lex_state = 12}, + [885] = {.lex_state = 12}, + [886] = {.lex_state = 12}, + [887] = {.lex_state = 12}, + [888] = {.lex_state = 12}, + [889] = {.lex_state = 12}, + [890] = {.lex_state = 12}, + [891] = {.lex_state = 12}, + [892] = {.lex_state = 12}, + [893] = {.lex_state = 12}, + [894] = {.lex_state = 12}, + [895] = {.lex_state = 12}, + [896] = {.lex_state = 12}, + [897] = {.lex_state = 12}, + [898] = {.lex_state = 12}, + [899] = {.lex_state = 12}, + [900] = {.lex_state = 12}, + [901] = {.lex_state = 12}, + [902] = {.lex_state = 12}, + [903] = {.lex_state = 12}, + [904] = {.lex_state = 12}, + [905] = {.lex_state = 12}, + [906] = {.lex_state = 12}, + [907] = {.lex_state = 12}, + [908] = {.lex_state = 12}, + [909] = {.lex_state = 12}, + [910] = {.lex_state = 12}, + [911] = {.lex_state = 12}, + [912] = {.lex_state = 12}, + [913] = {.lex_state = 12}, + [914] = {.lex_state = 12}, + [915] = {.lex_state = 12}, + [916] = {.lex_state = 12}, + [917] = {.lex_state = 12}, + [918] = {.lex_state = 12}, + [919] = {.lex_state = 12}, + [920] = {.lex_state = 12}, + [921] = {.lex_state = 12}, + [922] = {.lex_state = 12}, + [923] = {.lex_state = 12}, + [924] = {.lex_state = 12}, + [925] = {.lex_state = 12}, + [926] = {.lex_state = 12}, + [927] = {.lex_state = 12}, + [928] = {.lex_state = 12}, + [929] = {.lex_state = 12}, + [930] = {.lex_state = 12}, + [931] = {.lex_state = 12}, + [932] = {.lex_state = 12}, + [933] = {.lex_state = 12}, + [934] = {.lex_state = 12}, + [935] = {.lex_state = 12}, + [936] = {.lex_state = 12}, + [937] = {.lex_state = 12}, + [938] = {.lex_state = 12}, + [939] = {.lex_state = 12}, + [940] = {.lex_state = 12}, + [941] = {.lex_state = 12}, + [942] = {.lex_state = 12}, + [943] = {.lex_state = 12}, + [944] = {.lex_state = 12}, + [945] = {.lex_state = 12}, + [946] = {.lex_state = 12}, + [947] = {.lex_state = 12, .external_lex_state = 2}, + [948] = {.lex_state = 12, .external_lex_state = 2}, + [949] = {.lex_state = 12}, + [950] = {.lex_state = 12}, + [951] = {.lex_state = 12}, + [952] = {.lex_state = 12}, + [953] = {.lex_state = 12}, + [954] = {.lex_state = 12}, + [955] = {.lex_state = 12}, + [956] = {.lex_state = 12}, + [957] = {.lex_state = 12}, + [958] = {.lex_state = 12}, + [959] = {.lex_state = 12}, + [960] = {.lex_state = 12}, + [961] = {.lex_state = 12}, + [962] = {.lex_state = 12}, + [963] = {.lex_state = 12}, + [964] = {.lex_state = 12}, + [965] = {.lex_state = 12}, + [966] = {.lex_state = 12}, + [967] = {.lex_state = 12}, + [968] = {.lex_state = 12}, + [969] = {.lex_state = 12}, + [970] = {.lex_state = 12}, + [971] = {.lex_state = 12}, + [972] = {.lex_state = 12}, + [973] = {.lex_state = 12}, + [974] = {.lex_state = 12}, + [975] = {.lex_state = 12}, + [976] = {.lex_state = 12}, + [977] = {.lex_state = 12}, + [978] = {.lex_state = 12}, + [979] = {.lex_state = 12}, + [980] = {.lex_state = 12}, + [981] = {.lex_state = 12}, + [982] = {.lex_state = 12}, + [983] = {.lex_state = 12}, + [984] = {.lex_state = 12}, + [985] = {.lex_state = 12}, + [986] = {.lex_state = 12}, + [987] = {.lex_state = 12}, + [988] = {.lex_state = 12}, + [989] = {.lex_state = 12}, + [990] = {.lex_state = 12}, + [991] = {.lex_state = 12}, + [992] = {.lex_state = 12}, + [993] = {.lex_state = 12}, + [994] = {.lex_state = 12}, + [995] = {.lex_state = 12}, + [996] = {.lex_state = 12}, + [997] = {.lex_state = 12}, + [998] = {.lex_state = 12}, + [999] = {.lex_state = 12}, + [1000] = {.lex_state = 12}, + [1001] = {.lex_state = 12}, + [1002] = {.lex_state = 12}, + [1003] = {.lex_state = 12}, + [1004] = {.lex_state = 12}, + [1005] = {.lex_state = 12}, + [1006] = {.lex_state = 12}, + [1007] = {.lex_state = 12}, + [1008] = {.lex_state = 12}, + [1009] = {.lex_state = 12}, + [1010] = {.lex_state = 12}, + [1011] = {.lex_state = 12}, + [1012] = {.lex_state = 12}, + [1013] = {.lex_state = 12}, + [1014] = {.lex_state = 12}, + [1015] = {.lex_state = 12, .external_lex_state = 2}, + [1016] = {.lex_state = 12, .external_lex_state = 2}, + [1017] = {.lex_state = 12, .external_lex_state = 2}, + [1018] = {.lex_state = 12, .external_lex_state = 2}, + [1019] = {.lex_state = 12, .external_lex_state = 2}, + [1020] = {.lex_state = 12, .external_lex_state = 2}, + [1021] = {.lex_state = 12, .external_lex_state = 2}, + [1022] = {.lex_state = 12, .external_lex_state = 2}, + [1023] = {.lex_state = 12, .external_lex_state = 2}, + [1024] = {.lex_state = 12, .external_lex_state = 2}, + [1025] = {.lex_state = 13}, + [1026] = {.lex_state = 12, .external_lex_state = 2}, + [1027] = {.lex_state = 12, .external_lex_state = 2}, + [1028] = {.lex_state = 12, .external_lex_state = 2}, + [1029] = {.lex_state = 12, .external_lex_state = 2}, + [1030] = {.lex_state = 12, .external_lex_state = 2}, + [1031] = {.lex_state = 12, .external_lex_state = 2}, + [1032] = {.lex_state = 12, .external_lex_state = 2}, + [1033] = {.lex_state = 12, .external_lex_state = 2}, + [1034] = {.lex_state = 12, .external_lex_state = 2}, + [1035] = {.lex_state = 12, .external_lex_state = 2}, + [1036] = {.lex_state = 12, .external_lex_state = 2}, + [1037] = {.lex_state = 12, .external_lex_state = 2}, + [1038] = {.lex_state = 12, .external_lex_state = 2}, + [1039] = {.lex_state = 12, .external_lex_state = 2}, + [1040] = {.lex_state = 12, .external_lex_state = 2}, + [1041] = {.lex_state = 12, .external_lex_state = 2}, + [1042] = {.lex_state = 12, .external_lex_state = 2}, + [1043] = {.lex_state = 12, .external_lex_state = 2}, + [1044] = {.lex_state = 12, .external_lex_state = 2}, + [1045] = {.lex_state = 12, .external_lex_state = 2}, + [1046] = {.lex_state = 12, .external_lex_state = 2}, + [1047] = {.lex_state = 12, .external_lex_state = 2}, + [1048] = {.lex_state = 12, .external_lex_state = 2}, + [1049] = {.lex_state = 12, .external_lex_state = 2}, + [1050] = {.lex_state = 12, .external_lex_state = 2}, + [1051] = {.lex_state = 12, .external_lex_state = 2}, + [1052] = {.lex_state = 12, .external_lex_state = 2}, + [1053] = {.lex_state = 12, .external_lex_state = 2}, + [1054] = {.lex_state = 12, .external_lex_state = 2}, + [1055] = {.lex_state = 12, .external_lex_state = 2}, + [1056] = {.lex_state = 12, .external_lex_state = 2}, + [1057] = {.lex_state = 12, .external_lex_state = 2}, + [1058] = {.lex_state = 12, .external_lex_state = 2}, + [1059] = {.lex_state = 12, .external_lex_state = 2}, + [1060] = {.lex_state = 12, .external_lex_state = 2}, + [1061] = {.lex_state = 12, .external_lex_state = 2}, + [1062] = {.lex_state = 12, .external_lex_state = 2}, + [1063] = {.lex_state = 12, .external_lex_state = 2}, + [1064] = {.lex_state = 12, .external_lex_state = 2}, + [1065] = {.lex_state = 12, .external_lex_state = 2}, + [1066] = {.lex_state = 12, .external_lex_state = 2}, + [1067] = {.lex_state = 12, .external_lex_state = 2}, + [1068] = {.lex_state = 12, .external_lex_state = 2}, + [1069] = {.lex_state = 12, .external_lex_state = 2}, + [1070] = {.lex_state = 12, .external_lex_state = 2}, + [1071] = {.lex_state = 12, .external_lex_state = 2}, + [1072] = {.lex_state = 12, .external_lex_state = 2}, + [1073] = {.lex_state = 12, .external_lex_state = 2}, + [1074] = {.lex_state = 12, .external_lex_state = 2}, + [1075] = {.lex_state = 12, .external_lex_state = 2}, + [1076] = {.lex_state = 12, .external_lex_state = 2}, + [1077] = {.lex_state = 12, .external_lex_state = 2}, + [1078] = {.lex_state = 12, .external_lex_state = 2}, + [1079] = {.lex_state = 12, .external_lex_state = 2}, + [1080] = {.lex_state = 12, .external_lex_state = 2}, + [1081] = {.lex_state = 12, .external_lex_state = 2}, + [1082] = {.lex_state = 12, .external_lex_state = 2}, + [1083] = {.lex_state = 12, .external_lex_state = 2}, + [1084] = {.lex_state = 12, .external_lex_state = 2}, + [1085] = {.lex_state = 12, .external_lex_state = 2}, + [1086] = {.lex_state = 12, .external_lex_state = 2}, + [1087] = {.lex_state = 12, .external_lex_state = 2}, + [1088] = {.lex_state = 12, .external_lex_state = 2}, + [1089] = {.lex_state = 12, .external_lex_state = 2}, + [1090] = {.lex_state = 12, .external_lex_state = 2}, + [1091] = {.lex_state = 12, .external_lex_state = 2}, + [1092] = {.lex_state = 12, .external_lex_state = 2}, + [1093] = {.lex_state = 12, .external_lex_state = 2}, + [1094] = {.lex_state = 12, .external_lex_state = 2}, + [1095] = {.lex_state = 12, .external_lex_state = 2}, + [1096] = {.lex_state = 12, .external_lex_state = 2}, + [1097] = {.lex_state = 12, .external_lex_state = 2}, + [1098] = {.lex_state = 12, .external_lex_state = 2}, + [1099] = {.lex_state = 12, .external_lex_state = 2}, + [1100] = {.lex_state = 12, .external_lex_state = 2}, + [1101] = {.lex_state = 12, .external_lex_state = 2}, + [1102] = {.lex_state = 12, .external_lex_state = 2}, + [1103] = {.lex_state = 12, .external_lex_state = 2}, + [1104] = {.lex_state = 12, .external_lex_state = 2}, + [1105] = {.lex_state = 12, .external_lex_state = 2}, + [1106] = {.lex_state = 12, .external_lex_state = 2}, + [1107] = {.lex_state = 12, .external_lex_state = 2}, + [1108] = {.lex_state = 12, .external_lex_state = 2}, + [1109] = {.lex_state = 12, .external_lex_state = 2}, + [1110] = {.lex_state = 12, .external_lex_state = 2}, + [1111] = {.lex_state = 12, .external_lex_state = 2}, + [1112] = {.lex_state = 12, .external_lex_state = 2}, + [1113] = {.lex_state = 12, .external_lex_state = 2}, + [1114] = {.lex_state = 12, .external_lex_state = 2}, + [1115] = {.lex_state = 12}, + [1116] = {.lex_state = 12}, + [1117] = {.lex_state = 12}, + [1118] = {.lex_state = 12}, + [1119] = {.lex_state = 12}, + [1120] = {.lex_state = 12}, + [1121] = {.lex_state = 12}, + [1122] = {.lex_state = 12}, + [1123] = {.lex_state = 12}, + [1124] = {.lex_state = 12}, + [1125] = {.lex_state = 12}, + [1126] = {.lex_state = 12}, + [1127] = {.lex_state = 12}, + [1128] = {.lex_state = 12}, + [1129] = {.lex_state = 12}, + [1130] = {.lex_state = 12}, + [1131] = {.lex_state = 12}, + [1132] = {.lex_state = 12}, + [1133] = {.lex_state = 12}, + [1134] = {.lex_state = 12}, + [1135] = {.lex_state = 12}, + [1136] = {.lex_state = 12}, + [1137] = {.lex_state = 12}, + [1138] = {.lex_state = 12}, + [1139] = {.lex_state = 12}, + [1140] = {.lex_state = 12}, + [1141] = {.lex_state = 12}, + [1142] = {.lex_state = 12}, + [1143] = {.lex_state = 12}, + [1144] = {.lex_state = 12}, + [1145] = {.lex_state = 12}, + [1146] = {.lex_state = 12}, + [1147] = {.lex_state = 12}, + [1148] = {.lex_state = 22}, + [1149] = {.lex_state = 20}, + [1150] = {.lex_state = 12}, + [1151] = {.lex_state = 12, .external_lex_state = 2}, + [1152] = {.lex_state = 20}, + [1153] = {.lex_state = 20}, + [1154] = {.lex_state = 20}, + [1155] = {.lex_state = 12, .external_lex_state = 2}, + [1156] = {.lex_state = 12}, + [1157] = {.lex_state = 12, .external_lex_state = 2}, + [1158] = {.lex_state = 20}, + [1159] = {.lex_state = 12, .external_lex_state = 2}, + [1160] = {.lex_state = 20}, + [1161] = {.lex_state = 12}, + [1162] = {.lex_state = 12}, + [1163] = {.lex_state = 20}, + [1164] = {.lex_state = 20}, + [1165] = {.lex_state = 12, .external_lex_state = 2}, + [1166] = {.lex_state = 12}, + [1167] = {.lex_state = 20}, + [1168] = {.lex_state = 12}, + [1169] = {.lex_state = 12}, + [1170] = {.lex_state = 12}, + [1171] = {.lex_state = 12, .external_lex_state = 2}, + [1172] = {.lex_state = 12}, + [1173] = {.lex_state = 12}, + [1174] = {.lex_state = 12}, + [1175] = {.lex_state = 12}, + [1176] = {.lex_state = 12}, + [1177] = {.lex_state = 12}, + [1178] = {.lex_state = 12}, + [1179] = {.lex_state = 12}, + [1180] = {.lex_state = 12, .external_lex_state = 2}, + [1181] = {.lex_state = 12, .external_lex_state = 2}, + [1182] = {.lex_state = 12}, + [1183] = {.lex_state = 12, .external_lex_state = 2}, + [1184] = {.lex_state = 12}, + [1185] = {.lex_state = 12}, + [1186] = {.lex_state = 12}, + [1187] = {.lex_state = 12}, + [1188] = {.lex_state = 12}, + [1189] = {.lex_state = 12}, + [1190] = {.lex_state = 12}, + [1191] = {.lex_state = 12}, + [1192] = {.lex_state = 12, .external_lex_state = 2}, + [1193] = {.lex_state = 12}, + [1194] = {.lex_state = 12}, + [1195] = {.lex_state = 12}, + [1196] = {.lex_state = 12}, + [1197] = {.lex_state = 12, .external_lex_state = 2}, + [1198] = {.lex_state = 12}, + [1199] = {.lex_state = 12}, + [1200] = {.lex_state = 12}, + [1201] = {.lex_state = 13}, + [1202] = {.lex_state = 12, .external_lex_state = 2}, + [1203] = {.lex_state = 13}, + [1204] = {.lex_state = 12, .external_lex_state = 2}, + [1205] = {.lex_state = 12}, + [1206] = {.lex_state = 12}, + [1207] = {.lex_state = 12}, + [1208] = {.lex_state = 12}, + [1209] = {.lex_state = 12}, + [1210] = {.lex_state = 12}, + [1211] = {.lex_state = 12}, + [1212] = {.lex_state = 12}, + [1213] = {.lex_state = 20}, + [1214] = {.lex_state = 12}, + [1215] = {.lex_state = 12}, + [1216] = {.lex_state = 20}, + [1217] = {.lex_state = 12}, + [1218] = {.lex_state = 12}, + [1219] = {.lex_state = 12}, + [1220] = {.lex_state = 12}, + [1221] = {.lex_state = 12}, + [1222] = {.lex_state = 12}, + [1223] = {.lex_state = 12}, + [1224] = {.lex_state = 12}, + [1225] = {.lex_state = 12}, + [1226] = {.lex_state = 12}, + [1227] = {.lex_state = 12}, + [1228] = {.lex_state = 12}, + [1229] = {.lex_state = 12}, + [1230] = {.lex_state = 12}, + [1231] = {.lex_state = 12}, + [1232] = {.lex_state = 12}, + [1233] = {.lex_state = 12}, + [1234] = {.lex_state = 12}, + [1235] = {.lex_state = 20}, + [1236] = {.lex_state = 12}, + [1237] = {.lex_state = 12}, + [1238] = {.lex_state = 12}, + [1239] = {.lex_state = 12}, + [1240] = {.lex_state = 12}, + [1241] = {.lex_state = 12}, + [1242] = {.lex_state = 12}, + [1243] = {.lex_state = 12}, + [1244] = {.lex_state = 12}, + [1245] = {.lex_state = 12}, + [1246] = {.lex_state = 12}, + [1247] = {.lex_state = 12}, + [1248] = {.lex_state = 12}, + [1249] = {.lex_state = 12}, + [1250] = {.lex_state = 12}, + [1251] = {.lex_state = 12}, + [1252] = {.lex_state = 12}, + [1253] = {.lex_state = 12}, + [1254] = {.lex_state = 12}, + [1255] = {.lex_state = 12}, + [1256] = {.lex_state = 12}, + [1257] = {.lex_state = 12}, + [1258] = {.lex_state = 12}, + [1259] = {.lex_state = 13}, + [1260] = {.lex_state = 12}, + [1261] = {.lex_state = 12}, + [1262] = {.lex_state = 12}, + [1263] = {.lex_state = 12}, + [1264] = {.lex_state = 12}, + [1265] = {.lex_state = 20}, + [1266] = {.lex_state = 12}, + [1267] = {.lex_state = 12}, + [1268] = {.lex_state = 12}, + [1269] = {.lex_state = 12}, + [1270] = {.lex_state = 12}, + [1271] = {.lex_state = 12}, + [1272] = {.lex_state = 20}, + [1273] = {.lex_state = 12}, + [1274] = {.lex_state = 12}, + [1275] = {.lex_state = 12}, + [1276] = {.lex_state = 12}, + [1277] = {.lex_state = 12}, + [1278] = {.lex_state = 12}, + [1279] = {.lex_state = 13}, + [1280] = {.lex_state = 13}, + [1281] = {.lex_state = 13}, + [1282] = {.lex_state = 12}, + [1283] = {.lex_state = 13}, + [1284] = {.lex_state = 13}, + [1285] = {.lex_state = 12}, + [1286] = {.lex_state = 12}, + [1287] = {.lex_state = 12}, + [1288] = {.lex_state = 12}, + [1289] = {.lex_state = 12}, + [1290] = {.lex_state = 12}, + [1291] = {.lex_state = 19}, + [1292] = {.lex_state = 19}, + [1293] = {.lex_state = 71}, + [1294] = {.lex_state = 71}, + [1295] = {.lex_state = 71}, + [1296] = {.lex_state = 19}, + [1297] = {.lex_state = 19}, + [1298] = {.lex_state = 19}, + [1299] = {.lex_state = 12}, + [1300] = {.lex_state = 3, .external_lex_state = 3}, + [1301] = {.lex_state = 3, .external_lex_state = 3}, + [1302] = {.lex_state = 12}, + [1303] = {.lex_state = 3, .external_lex_state = 4}, + [1304] = {.lex_state = 13}, + [1305] = {.lex_state = 3, .external_lex_state = 3}, + [1306] = {.lex_state = 13}, + [1307] = {.lex_state = 3, .external_lex_state = 3}, + [1308] = {.lex_state = 3, .external_lex_state = 3}, + [1309] = {.lex_state = 20}, + [1310] = {.lex_state = 13}, + [1311] = {.lex_state = 13}, + [1312] = {.lex_state = 20}, + [1313] = {.lex_state = 13}, + [1314] = {.lex_state = 16}, + [1315] = {.lex_state = 20}, + [1316] = {.lex_state = 20}, + [1317] = {.lex_state = 17, .external_lex_state = 4}, + [1318] = {.lex_state = 20}, + [1319] = {.lex_state = 9, .external_lex_state = 5}, + [1320] = {.lex_state = 9, .external_lex_state = 5}, + [1321] = {.lex_state = 9, .external_lex_state = 5}, + [1322] = {.lex_state = 20}, + [1323] = {.lex_state = 20}, + [1324] = {.lex_state = 20}, + [1325] = {.lex_state = 17}, + [1326] = {.lex_state = 20}, + [1327] = {.lex_state = 20}, + [1328] = {.lex_state = 20}, + [1329] = {.lex_state = 3, .external_lex_state = 6}, + [1330] = {.lex_state = 20}, + [1331] = {.lex_state = 20}, + [1332] = {.lex_state = 20}, + [1333] = {.lex_state = 20}, + [1334] = {.lex_state = 20}, + [1335] = {.lex_state = 20}, + [1336] = {.lex_state = 20}, + [1337] = {.lex_state = 20}, + [1338] = {.lex_state = 20}, + [1339] = {.lex_state = 20}, + [1340] = {.lex_state = 20}, + [1341] = {.lex_state = 3, .external_lex_state = 6}, + [1342] = {.lex_state = 9, .external_lex_state = 5}, + [1343] = {.lex_state = 9, .external_lex_state = 5}, + [1344] = {.lex_state = 20}, + [1345] = {.lex_state = 20}, + [1346] = {.lex_state = 9, .external_lex_state = 7}, + [1347] = {.lex_state = 20}, + [1348] = {.lex_state = 20}, + [1349] = {.lex_state = 20}, + [1350] = {.lex_state = 20}, + [1351] = {.lex_state = 20}, + [1352] = {.lex_state = 9, .external_lex_state = 7}, + [1353] = {.lex_state = 20}, + [1354] = {.lex_state = 9, .external_lex_state = 7}, + [1355] = {.lex_state = 20}, + [1356] = {.lex_state = 9, .external_lex_state = 7}, + [1357] = {.lex_state = 20}, + [1358] = {.lex_state = 20}, + [1359] = {.lex_state = 9, .external_lex_state = 7}, + [1360] = {.lex_state = 20}, + [1361] = {.lex_state = 20}, + [1362] = {.lex_state = 20}, + [1363] = {.lex_state = 13}, + [1364] = {.lex_state = 20}, + [1365] = {.lex_state = 13}, + [1366] = {.lex_state = 13}, + [1367] = {.lex_state = 20}, + [1368] = {.lex_state = 13}, + [1369] = {.lex_state = 20}, + [1370] = {.lex_state = 20}, + [1371] = {.lex_state = 20}, + [1372] = {.lex_state = 20}, + [1373] = {.lex_state = 20}, + [1374] = {.lex_state = 13}, + [1375] = {.lex_state = 13}, + [1376] = {.lex_state = 13}, + [1377] = {.lex_state = 13}, + [1378] = {.lex_state = 13}, + [1379] = {.lex_state = 3, .external_lex_state = 3}, + [1380] = {.lex_state = 71}, + [1381] = {.lex_state = 3, .external_lex_state = 3}, + [1382] = {.lex_state = 3, .external_lex_state = 3}, + [1383] = {.lex_state = 3, .external_lex_state = 3}, + [1384] = {.lex_state = 13}, + [1385] = {.lex_state = 3, .external_lex_state = 3}, + [1386] = {.lex_state = 71}, + [1387] = {.lex_state = 3, .external_lex_state = 3}, + [1388] = {.lex_state = 3, .external_lex_state = 3}, + [1389] = {.lex_state = 3, .external_lex_state = 3}, + [1390] = {.lex_state = 71}, + [1391] = {.lex_state = 13}, + [1392] = {.lex_state = 13}, + [1393] = {.lex_state = 13}, + [1394] = {.lex_state = 3, .external_lex_state = 3}, + [1395] = {.lex_state = 13}, + [1396] = {.lex_state = 71}, + [1397] = {.lex_state = 71}, + [1398] = {.lex_state = 13}, + [1399] = {.lex_state = 13}, + [1400] = {.lex_state = 71}, + [1401] = {.lex_state = 9, .external_lex_state = 8}, + [1402] = {.lex_state = 71}, + [1403] = {.lex_state = 13}, + [1404] = {.lex_state = 13}, + [1405] = {.lex_state = 71}, + [1406] = {.lex_state = 9, .external_lex_state = 8}, + [1407] = {.lex_state = 71}, + [1408] = {.lex_state = 13}, + [1409] = {.lex_state = 13}, + [1410] = {.lex_state = 13}, + [1411] = {.lex_state = 13}, + [1412] = {.lex_state = 71}, + [1413] = {.lex_state = 13}, + [1414] = {.lex_state = 13}, + [1415] = {.lex_state = 13}, + [1416] = {.lex_state = 13}, + [1417] = {.lex_state = 71}, + [1418] = {.lex_state = 13}, + [1419] = {.lex_state = 13}, + [1420] = {.lex_state = 13}, + [1421] = {.lex_state = 13}, + [1422] = {.lex_state = 13}, + [1423] = {.lex_state = 13}, + [1424] = {.lex_state = 13}, + [1425] = {.lex_state = 13}, + [1426] = {.lex_state = 13}, + [1427] = {.lex_state = 71}, + [1428] = {.lex_state = 71}, + [1429] = {.lex_state = 13}, + [1430] = {.lex_state = 13}, + [1431] = {.lex_state = 71}, + [1432] = {.lex_state = 13}, + [1433] = {.lex_state = 13}, + [1434] = {.lex_state = 13}, + [1435] = {.lex_state = 13}, + [1436] = {.lex_state = 71}, + [1437] = {.lex_state = 71}, + [1438] = {.lex_state = 13}, + [1439] = {.lex_state = 71}, + [1440] = {.lex_state = 13}, + [1441] = {.lex_state = 13}, + [1442] = {.lex_state = 13}, + [1443] = {.lex_state = 13}, + [1444] = {.lex_state = 13}, + [1445] = {.lex_state = 71}, + [1446] = {.lex_state = 71}, + [1447] = {.lex_state = 13}, + [1448] = {.lex_state = 13}, + [1449] = {.lex_state = 13}, + [1450] = {.lex_state = 13}, + [1451] = {.lex_state = 9, .external_lex_state = 9}, + [1452] = {.lex_state = 13}, + [1453] = {.lex_state = 13}, + [1454] = {.lex_state = 13}, + [1455] = {.lex_state = 13}, + [1456] = {.lex_state = 13}, + [1457] = {.lex_state = 13}, + [1458] = {.lex_state = 13}, + [1459] = {.lex_state = 9, .external_lex_state = 9}, + [1460] = {.lex_state = 71}, + [1461] = {.lex_state = 71}, + [1462] = {.lex_state = 13}, + [1463] = {.lex_state = 13}, + [1464] = {.lex_state = 13}, + [1465] = {.lex_state = 13}, + [1466] = {.lex_state = 71}, + [1467] = {.lex_state = 71}, + [1468] = {.lex_state = 71}, + [1469] = {.lex_state = 71}, + [1470] = {.lex_state = 71}, + [1471] = {.lex_state = 71}, + [1472] = {.lex_state = 71}, + [1473] = {.lex_state = 71, .external_lex_state = 2}, + [1474] = {.lex_state = 71}, + [1475] = {.lex_state = 71}, + [1476] = {.lex_state = 71}, + [1477] = {.lex_state = 71}, + [1478] = {.lex_state = 71}, + [1479] = {.lex_state = 71}, + [1480] = {.lex_state = 71}, + [1481] = {.lex_state = 9, .external_lex_state = 5}, + [1482] = {.lex_state = 71}, + [1483] = {.lex_state = 71}, + [1484] = {.lex_state = 71}, + [1485] = {.lex_state = 71}, + [1486] = {.lex_state = 13}, + [1487] = {.lex_state = 9, .external_lex_state = 5}, + [1488] = {.lex_state = 71}, + [1489] = {.lex_state = 11}, + [1490] = {.lex_state = 11}, + [1491] = {.lex_state = 9, .external_lex_state = 5}, + [1492] = {.lex_state = 71, .external_lex_state = 2}, + [1493] = {.lex_state = 71}, + [1494] = {.lex_state = 71}, + [1495] = {.lex_state = 71}, + [1496] = {.lex_state = 71}, + [1497] = {.lex_state = 71}, + [1498] = {.lex_state = 71, .external_lex_state = 2}, + [1499] = {.lex_state = 71}, + [1500] = {.lex_state = 9, .external_lex_state = 5}, + [1501] = {.lex_state = 71}, + [1502] = {.lex_state = 9, .external_lex_state = 5}, + [1503] = {.lex_state = 71}, + [1504] = {.lex_state = 71}, + [1505] = {.lex_state = 9, .external_lex_state = 5}, + [1506] = {.lex_state = 9, .external_lex_state = 5}, + [1507] = {.lex_state = 11}, + [1508] = {.lex_state = 9, .external_lex_state = 5}, + [1509] = {.lex_state = 71}, + [1510] = {.lex_state = 71}, + [1511] = {.lex_state = 71}, + [1512] = {.lex_state = 13}, + [1513] = {.lex_state = 9, .external_lex_state = 5}, + [1514] = {.lex_state = 71}, + [1515] = {.lex_state = 13}, + [1516] = {.lex_state = 71, .external_lex_state = 2}, + [1517] = {.lex_state = 13}, + [1518] = {.lex_state = 71}, + [1519] = {.lex_state = 71}, + [1520] = {.lex_state = 71}, + [1521] = {.lex_state = 13}, + [1522] = {.lex_state = 13}, + [1523] = {.lex_state = 9, .external_lex_state = 7}, + [1524] = {.lex_state = 71}, + [1525] = {.lex_state = 71}, + [1526] = {.lex_state = 71}, + [1527] = {.lex_state = 71}, + [1528] = {.lex_state = 71, .external_lex_state = 2}, + [1529] = {.lex_state = 9, .external_lex_state = 7}, + [1530] = {.lex_state = 71}, + [1531] = {.lex_state = 71}, + [1532] = {.lex_state = 71}, + [1533] = {.lex_state = 71}, + [1534] = {.lex_state = 9, .external_lex_state = 7}, + [1535] = {.lex_state = 13}, + [1536] = {.lex_state = 71}, + [1537] = {.lex_state = 13}, + [1538] = {.lex_state = 71}, + [1539] = {.lex_state = 9, .external_lex_state = 7}, + [1540] = {.lex_state = 9, .external_lex_state = 7}, + [1541] = {.lex_state = 71}, + [1542] = {.lex_state = 13}, + [1543] = {.lex_state = 71}, + [1544] = {.lex_state = 71}, + [1545] = {.lex_state = 71}, + [1546] = {.lex_state = 71}, + [1547] = {.lex_state = 9, .external_lex_state = 7}, + [1548] = {.lex_state = 71}, + [1549] = {.lex_state = 13}, + [1550] = {.lex_state = 71}, + [1551] = {.lex_state = 71}, + [1552] = {.lex_state = 71}, + [1553] = {.lex_state = 71}, + [1554] = {.lex_state = 71}, + [1555] = {.lex_state = 71}, + [1556] = {.lex_state = 9, .external_lex_state = 7}, + [1557] = {.lex_state = 71}, + [1558] = {.lex_state = 71}, + [1559] = {.lex_state = 71}, + [1560] = {.lex_state = 13}, + [1561] = {.lex_state = 71}, + [1562] = {.lex_state = 71}, + [1563] = {.lex_state = 71}, + [1564] = {.lex_state = 13}, + [1565] = {.lex_state = 71}, + [1566] = {.lex_state = 71}, + [1567] = {.lex_state = 71}, + [1568] = {.lex_state = 13}, + [1569] = {.lex_state = 71}, + [1570] = {.lex_state = 71}, + [1571] = {.lex_state = 71}, + [1572] = {.lex_state = 71}, + [1573] = {.lex_state = 71}, + [1574] = {.lex_state = 71, .external_lex_state = 2}, + [1575] = {.lex_state = 13}, + [1576] = {.lex_state = 71}, + [1577] = {.lex_state = 13}, + [1578] = {.lex_state = 71}, + [1579] = {.lex_state = 71}, + [1580] = {.lex_state = 71}, + [1581] = {.lex_state = 71}, + [1582] = {.lex_state = 71, .external_lex_state = 2}, + [1583] = {.lex_state = 71}, + [1584] = {.lex_state = 13}, + [1585] = {.lex_state = 71}, + [1586] = {.lex_state = 71}, + [1587] = {.lex_state = 9, .external_lex_state = 7}, + [1588] = {.lex_state = 71}, + [1589] = {.lex_state = 71}, + [1590] = {.lex_state = 71, .external_lex_state = 2}, + [1591] = {.lex_state = 71}, + [1592] = {.lex_state = 71, .external_lex_state = 2}, + [1593] = {.lex_state = 71}, + [1594] = {.lex_state = 71}, + [1595] = {.lex_state = 71}, + [1596] = {.lex_state = 71}, + [1597] = {.lex_state = 71}, + [1598] = {.lex_state = 5, .external_lex_state = 10}, + [1599] = {.lex_state = 71}, + [1600] = {.lex_state = 71}, + [1601] = {.lex_state = 5, .external_lex_state = 10}, + [1602] = {.lex_state = 5, .external_lex_state = 11}, + [1603] = {.lex_state = 71}, + [1604] = {.lex_state = 5, .external_lex_state = 11}, + [1605] = {.lex_state = 71}, + [1606] = {.lex_state = 71}, + [1607] = {.lex_state = 71, .external_lex_state = 2}, + [1608] = {.lex_state = 71, .external_lex_state = 2}, + [1609] = {.lex_state = 71, .external_lex_state = 2}, + [1610] = {.lex_state = 71}, + [1611] = {.lex_state = 71, .external_lex_state = 2}, + [1612] = {.lex_state = 71}, + [1613] = {.lex_state = 71}, + [1614] = {.lex_state = 71}, + [1615] = {.lex_state = 5, .external_lex_state = 10}, + [1616] = {.lex_state = 71}, + [1617] = {.lex_state = 71}, + [1618] = {.lex_state = 71}, + [1619] = {.lex_state = 71}, + [1620] = {.lex_state = 71}, + [1621] = {.lex_state = 71}, + [1622] = {.lex_state = 71}, + [1623] = {.lex_state = 71, .external_lex_state = 2}, + [1624] = {.lex_state = 71, .external_lex_state = 2}, + [1625] = {.lex_state = 71}, + [1626] = {.lex_state = 71}, + [1627] = {.lex_state = 71, .external_lex_state = 2}, + [1628] = {.lex_state = 71}, + [1629] = {.lex_state = 71}, + [1630] = {.lex_state = 71, .external_lex_state = 2}, + [1631] = {.lex_state = 71}, + [1632] = {.lex_state = 71}, + [1633] = {.lex_state = 5, .external_lex_state = 10}, + [1634] = {.lex_state = 71, .external_lex_state = 2}, + [1635] = {.lex_state = 71}, + [1636] = {.lex_state = 13}, + [1637] = {.lex_state = 71}, + [1638] = {.lex_state = 71}, + [1639] = {.lex_state = 71, .external_lex_state = 2}, + [1640] = {.lex_state = 13}, + [1641] = {.lex_state = 71}, + [1642] = {.lex_state = 13}, + [1643] = {.lex_state = 71, .external_lex_state = 2}, + [1644] = {.lex_state = 13}, + [1645] = {.lex_state = 71, .external_lex_state = 2}, + [1646] = {.lex_state = 71, .external_lex_state = 2}, + [1647] = {.lex_state = 13}, + [1648] = {.lex_state = 71, .external_lex_state = 2}, + [1649] = {.lex_state = 71, .external_lex_state = 2}, + [1650] = {.lex_state = 71, .external_lex_state = 2}, + [1651] = {.lex_state = 71}, + [1652] = {.lex_state = 71}, + [1653] = {.lex_state = 71}, + [1654] = {.lex_state = 71}, + [1655] = {.lex_state = 71}, + [1656] = {.lex_state = 71}, + [1657] = {.lex_state = 71}, + [1658] = {.lex_state = 71}, + [1659] = {.lex_state = 71}, + [1660] = {.lex_state = 71, .external_lex_state = 2}, + [1661] = {.lex_state = 71}, + [1662] = {.lex_state = 71}, + [1663] = {.lex_state = 71, .external_lex_state = 2}, + [1664] = {.lex_state = 71, .external_lex_state = 2}, + [1665] = {.lex_state = 71, .external_lex_state = 2}, + [1666] = {.lex_state = 71, .external_lex_state = 2}, + [1667] = {.lex_state = 5, .external_lex_state = 10}, + [1668] = {.lex_state = 71, .external_lex_state = 2}, + [1669] = {.lex_state = 71}, + [1670] = {.lex_state = 71}, + [1671] = {.lex_state = 71, .external_lex_state = 2}, + [1672] = {.lex_state = 71, .external_lex_state = 2}, + [1673] = {.lex_state = 71, .external_lex_state = 2}, + [1674] = {.lex_state = 71, .external_lex_state = 2}, + [1675] = {.lex_state = 5, .external_lex_state = 10}, + [1676] = {.lex_state = 71}, + [1677] = {.lex_state = 71}, + [1678] = {.lex_state = 71}, + [1679] = {.lex_state = 13}, + [1680] = {.lex_state = 13}, + [1681] = {.lex_state = 71, .external_lex_state = 2}, + [1682] = {.lex_state = 71}, + [1683] = {.lex_state = 71}, + [1684] = {.lex_state = 71}, + [1685] = {.lex_state = 5, .external_lex_state = 10}, + [1686] = {.lex_state = 71, .external_lex_state = 2}, + [1687] = {.lex_state = 71, .external_lex_state = 2}, + [1688] = {.lex_state = 71, .external_lex_state = 2}, + [1689] = {.lex_state = 71, .external_lex_state = 2}, + [1690] = {.lex_state = 71}, + [1691] = {.lex_state = 71, .external_lex_state = 2}, + [1692] = {.lex_state = 71, .external_lex_state = 2}, + [1693] = {.lex_state = 71}, + [1694] = {.lex_state = 13}, + [1695] = {.lex_state = 71}, + [1696] = {.lex_state = 71}, + [1697] = {.lex_state = 71, .external_lex_state = 2}, + [1698] = {.lex_state = 71, .external_lex_state = 2}, + [1699] = {.lex_state = 71}, + [1700] = {.lex_state = 71}, + [1701] = {.lex_state = 71, .external_lex_state = 2}, + [1702] = {.lex_state = 71}, + [1703] = {.lex_state = 71}, + [1704] = {.lex_state = 71, .external_lex_state = 2}, + [1705] = {.lex_state = 71}, + [1706] = {.lex_state = 71}, + [1707] = {.lex_state = 71}, + [1708] = {.lex_state = 71}, + [1709] = {.lex_state = 71, .external_lex_state = 2}, + [1710] = {.lex_state = 71}, + [1711] = {.lex_state = 71}, + [1712] = {.lex_state = 71}, + [1713] = {.lex_state = 71}, + [1714] = {.lex_state = 71}, + [1715] = {.lex_state = 71}, + [1716] = {.lex_state = 71}, + [1717] = {.lex_state = 71}, + [1718] = {.lex_state = 71, .external_lex_state = 2}, + [1719] = {.lex_state = 71}, + [1720] = {.lex_state = 71}, + [1721] = {.lex_state = 5, .external_lex_state = 10}, + [1722] = {.lex_state = 71}, + [1723] = {.lex_state = 71}, + [1724] = {.lex_state = 71}, + [1725] = {.lex_state = 71, .external_lex_state = 2}, + [1726] = {.lex_state = 71, .external_lex_state = 2}, + [1727] = {.lex_state = 71}, + [1728] = {.lex_state = 71, .external_lex_state = 2}, + [1729] = {.lex_state = 71, .external_lex_state = 2}, + [1730] = {.lex_state = 71}, + [1731] = {.lex_state = 71, .external_lex_state = 2}, + [1732] = {.lex_state = 71, .external_lex_state = 2}, + [1733] = {.lex_state = 71}, + [1734] = {.lex_state = 71, .external_lex_state = 2}, + [1735] = {.lex_state = 71}, + [1736] = {.lex_state = 71, .external_lex_state = 2}, + [1737] = {.lex_state = 13}, + [1738] = {.lex_state = 71}, + [1739] = {.lex_state = 71}, + [1740] = {.lex_state = 71, .external_lex_state = 2}, + [1741] = {.lex_state = 71, .external_lex_state = 2}, + [1742] = {.lex_state = 71, .external_lex_state = 2}, + [1743] = {.lex_state = 71, .external_lex_state = 2}, + [1744] = {.lex_state = 71, .external_lex_state = 2}, + [1745] = {.lex_state = 71, .external_lex_state = 2}, + [1746] = {.lex_state = 71}, + [1747] = {.lex_state = 71, .external_lex_state = 2}, + [1748] = {.lex_state = 71}, + [1749] = {.lex_state = 71}, + [1750] = {.lex_state = 71}, + [1751] = {.lex_state = 13}, + [1752] = {.lex_state = 71}, + [1753] = {.lex_state = 71, .external_lex_state = 2}, + [1754] = {.lex_state = 5, .external_lex_state = 10}, + [1755] = {.lex_state = 71}, + [1756] = {.lex_state = 71}, + [1757] = {.lex_state = 71}, + [1758] = {.lex_state = 71}, + [1759] = {.lex_state = 71}, + [1760] = {.lex_state = 71}, + [1761] = {.lex_state = 71}, + [1762] = {.lex_state = 13}, + [1763] = {.lex_state = 71, .external_lex_state = 2}, + [1764] = {.lex_state = 71}, + [1765] = {.lex_state = 71}, + [1766] = {.lex_state = 71, .external_lex_state = 2}, + [1767] = {.lex_state = 71, .external_lex_state = 2}, + [1768] = {.lex_state = 71}, + [1769] = {.lex_state = 71, .external_lex_state = 2}, + [1770] = {.lex_state = 71, .external_lex_state = 2}, + [1771] = {.lex_state = 71, .external_lex_state = 2}, + [1772] = {.lex_state = 71, .external_lex_state = 2}, + [1773] = {.lex_state = 71, .external_lex_state = 2}, + [1774] = {.lex_state = 71}, + [1775] = {.lex_state = 71, .external_lex_state = 2}, + [1776] = {.lex_state = 71, .external_lex_state = 2}, + [1777] = {.lex_state = 71, .external_lex_state = 2}, + [1778] = {.lex_state = 71, .external_lex_state = 2}, + [1779] = {.lex_state = 71, .external_lex_state = 2}, + [1780] = {.lex_state = 71, .external_lex_state = 2}, + [1781] = {.lex_state = 71}, + [1782] = {.lex_state = 16}, + [1783] = {.lex_state = 71}, + [1784] = {.lex_state = 71, .external_lex_state = 2}, + [1785] = {.lex_state = 71}, + [1786] = {.lex_state = 71, .external_lex_state = 2}, + [1787] = {.lex_state = 71, .external_lex_state = 2}, + [1788] = {.lex_state = 71}, + [1789] = {.lex_state = 71}, + [1790] = {.lex_state = 71}, + [1791] = {.lex_state = 71}, + [1792] = {.lex_state = 71}, + [1793] = {.lex_state = 71}, + [1794] = {.lex_state = 5, .external_lex_state = 10}, + [1795] = {.lex_state = 5, .external_lex_state = 10}, + [1796] = {.lex_state = 71}, + [1797] = {.lex_state = 71, .external_lex_state = 2}, + [1798] = {.lex_state = 71}, + [1799] = {.lex_state = 71}, + [1800] = {.lex_state = 71}, + [1801] = {.lex_state = 71}, + [1802] = {.lex_state = 71}, + [1803] = {.lex_state = 71}, + [1804] = {.lex_state = 71, .external_lex_state = 2}, + [1805] = {.lex_state = 71, .external_lex_state = 2}, + [1806] = {.lex_state = 71}, + [1807] = {.lex_state = 71}, + [1808] = {.lex_state = 71}, + [1809] = {.lex_state = 13}, + [1810] = {.lex_state = 71}, + [1811] = {.lex_state = 5, .external_lex_state = 10}, + [1812] = {.lex_state = 71}, + [1813] = {.lex_state = 71, .external_lex_state = 2}, + [1814] = {.lex_state = 16}, + [1815] = {.lex_state = 71}, + [1816] = {.lex_state = 71, .external_lex_state = 2}, + [1817] = {.lex_state = 71}, + [1818] = {.lex_state = 71, .external_lex_state = 2}, + [1819] = {.lex_state = 71, .external_lex_state = 2}, + [1820] = {.lex_state = 71, .external_lex_state = 2}, + [1821] = {.lex_state = 71}, + [1822] = {.lex_state = 71, .external_lex_state = 2}, + [1823] = {.lex_state = 71}, + [1824] = {.lex_state = 71}, + [1825] = {.lex_state = 71}, + [1826] = {.lex_state = 71}, + [1827] = {.lex_state = 71}, + [1828] = {.lex_state = 71}, + [1829] = {.lex_state = 71}, + [1830] = {.lex_state = 71, .external_lex_state = 12}, + [1831] = {.lex_state = 71}, + [1832] = {.lex_state = 71}, + [1833] = {.lex_state = 71}, + [1834] = {.lex_state = 71}, + [1835] = {.lex_state = 71}, + [1836] = {.lex_state = 71}, + [1837] = {.lex_state = 71}, + [1838] = {.lex_state = 71}, + [1839] = {.lex_state = 71}, + [1840] = {.lex_state = 71, .external_lex_state = 2}, + [1841] = {.lex_state = 71}, + [1842] = {.lex_state = 71}, + [1843] = {.lex_state = 71}, + [1844] = {.lex_state = 71}, + [1845] = {.lex_state = 71}, + [1846] = {.lex_state = 71}, + [1847] = {.lex_state = 71}, + [1848] = {.lex_state = 71}, + [1849] = {.lex_state = 71}, + [1850] = {.lex_state = 71}, + [1851] = {.lex_state = 71}, + [1852] = {.lex_state = 71}, + [1853] = {.lex_state = 71}, + [1854] = {.lex_state = 71}, + [1855] = {.lex_state = 71}, + [1856] = {.lex_state = 71}, + [1857] = {.lex_state = 71}, + [1858] = {.lex_state = 71}, + [1859] = {.lex_state = 71}, + [1860] = {.lex_state = 71}, + [1861] = {.lex_state = 71}, + [1862] = {.lex_state = 71}, + [1863] = {.lex_state = 71}, + [1864] = {.lex_state = 71}, + [1865] = {.lex_state = 71}, + [1866] = {.lex_state = 71}, + [1867] = {.lex_state = 71}, + [1868] = {.lex_state = 71}, + [1869] = {.lex_state = 71}, + [1870] = {.lex_state = 71}, + [1871] = {.lex_state = 71}, + [1872] = {.lex_state = 71}, + [1873] = {.lex_state = 71}, + [1874] = {.lex_state = 71}, + [1875] = {.lex_state = 71}, + [1876] = {.lex_state = 71}, + [1877] = {.lex_state = 71}, + [1878] = {.lex_state = 71}, + [1879] = {.lex_state = 71}, + [1880] = {.lex_state = 71}, + [1881] = {.lex_state = 71}, + [1882] = {.lex_state = 71}, + [1883] = {.lex_state = 71}, + [1884] = {.lex_state = 71}, + [1885] = {.lex_state = 71}, + [1886] = {.lex_state = 71}, + [1887] = {.lex_state = 71, .external_lex_state = 2}, + [1888] = {.lex_state = 71}, + [1889] = {.lex_state = 71}, + [1890] = {.lex_state = 71}, + [1891] = {.lex_state = 71}, + [1892] = {.lex_state = 13}, + [1893] = {.lex_state = 71}, + [1894] = {.lex_state = 71}, + [1895] = {.lex_state = 71}, + [1896] = {.lex_state = 71}, + [1897] = {.lex_state = 71}, + [1898] = {.lex_state = 71}, + [1899] = {.lex_state = 71}, + [1900] = {.lex_state = 71}, + [1901] = {.lex_state = 71}, + [1902] = {.lex_state = 71}, + [1903] = {.lex_state = 71}, + [1904] = {.lex_state = 71}, + [1905] = {.lex_state = 71}, + [1906] = {.lex_state = 71}, + [1907] = {.lex_state = 71}, + [1908] = {.lex_state = 71}, + [1909] = {.lex_state = 71}, + [1910] = {.lex_state = 71}, + [1911] = {.lex_state = 71}, + [1912] = {.lex_state = 71}, + [1913] = {.lex_state = 71}, + [1914] = {.lex_state = 71}, + [1915] = {.lex_state = 71}, + [1916] = {.lex_state = 71}, + [1917] = {.lex_state = 71}, + [1918] = {.lex_state = 71}, + [1919] = {.lex_state = 71}, + [1920] = {.lex_state = 71}, + [1921] = {.lex_state = 71}, + [1922] = {.lex_state = 71}, + [1923] = {.lex_state = 71}, + [1924] = {.lex_state = 71}, + [1925] = {.lex_state = 71, .external_lex_state = 2}, + [1926] = {.lex_state = 71, .external_lex_state = 2}, + [1927] = {.lex_state = 71}, + [1928] = {.lex_state = 71, .external_lex_state = 2}, + [1929] = {.lex_state = 71}, + [1930] = {.lex_state = 71}, + [1931] = {.lex_state = 71}, + [1932] = {.lex_state = 71}, + [1933] = {.lex_state = 71}, + [1934] = {.lex_state = 71, .external_lex_state = 2}, + [1935] = {.lex_state = 71, .external_lex_state = 2}, + [1936] = {.lex_state = 71}, + [1937] = {.lex_state = 71}, + [1938] = {.lex_state = 71}, + [1939] = {.lex_state = 5, .external_lex_state = 10}, + [1940] = {.lex_state = 71}, + [1941] = {.lex_state = 71}, + [1942] = {.lex_state = 71}, + [1943] = {.lex_state = 71}, + [1944] = {.lex_state = 71}, + [1945] = {.lex_state = 13}, + [1946] = {.lex_state = 71}, + [1947] = {.lex_state = 71}, + [1948] = {.lex_state = 71}, + [1949] = {.lex_state = 71}, + [1950] = {.lex_state = 13}, + [1951] = {.lex_state = 71}, + [1952] = {.lex_state = 71}, + [1953] = {.lex_state = 71}, + [1954] = {.lex_state = 71}, + [1955] = {.lex_state = 71}, + [1956] = {.lex_state = 71}, + [1957] = {.lex_state = 71, .external_lex_state = 2}, + [1958] = {.lex_state = 71, .external_lex_state = 2}, + [1959] = {.lex_state = 71}, + [1960] = {.lex_state = 71}, + [1961] = {.lex_state = 71}, + [1962] = {.lex_state = 71, .external_lex_state = 2}, + [1963] = {.lex_state = 71, .external_lex_state = 2}, + [1964] = {.lex_state = 71, .external_lex_state = 2}, + [1965] = {.lex_state = 71}, + [1966] = {.lex_state = 71}, + [1967] = {.lex_state = 71}, + [1968] = {.lex_state = 71}, + [1969] = {.lex_state = 71}, + [1970] = {.lex_state = 71}, + [1971] = {.lex_state = 71}, + [1972] = {.lex_state = 71}, + [1973] = {.lex_state = 71}, + [1974] = {.lex_state = 71}, + [1975] = {.lex_state = 71, .external_lex_state = 2}, + [1976] = {.lex_state = 71}, + [1977] = {.lex_state = 71}, + [1978] = {.lex_state = 71}, + [1979] = {.lex_state = 71}, + [1980] = {.lex_state = 71}, + [1981] = {.lex_state = 71}, + [1982] = {.lex_state = 71}, + [1983] = {.lex_state = 71}, + [1984] = {.lex_state = 71}, + [1985] = {.lex_state = 71}, + [1986] = {.lex_state = 71}, + [1987] = {.lex_state = 71}, + [1988] = {.lex_state = 71}, + [1989] = {.lex_state = 71}, + [1990] = {.lex_state = 71}, + [1991] = {.lex_state = 71}, + [1992] = {.lex_state = 71}, + [1993] = {.lex_state = 71}, + [1994] = {.lex_state = 71}, + [1995] = {.lex_state = 71}, + [1996] = {.lex_state = 71}, + [1997] = {.lex_state = 71}, + [1998] = {.lex_state = 71}, + [1999] = {.lex_state = 71}, + [2000] = {.lex_state = 181, .external_lex_state = 13}, + [2001] = {.lex_state = 71}, + [2002] = {.lex_state = 71}, + [2003] = {.lex_state = 71}, + [2004] = {.lex_state = 71}, + [2005] = {.lex_state = 71}, + [2006] = {.lex_state = 71}, + [2007] = {.lex_state = 71}, + [2008] = {.lex_state = 71}, + [2009] = {.lex_state = 71}, + [2010] = {.lex_state = 71}, + [2011] = {.lex_state = 71}, + [2012] = {.lex_state = 71}, + [2013] = {.lex_state = 71, .external_lex_state = 2}, + [2014] = {.lex_state = 71}, + [2015] = {.lex_state = 71}, + [2016] = {.lex_state = 71}, + [2017] = {.lex_state = 71}, + [2018] = {.lex_state = 71}, + [2019] = {.lex_state = 71, .external_lex_state = 12}, + [2020] = {.lex_state = 71}, + [2021] = {.lex_state = 71}, + [2022] = {.lex_state = 71}, + [2023] = {.lex_state = 71}, + [2024] = {.lex_state = 71}, + [2025] = {.lex_state = 71}, + [2026] = {.lex_state = 71, .external_lex_state = 2}, + [2027] = {.lex_state = 71}, + [2028] = {.lex_state = 71}, + [2029] = {.lex_state = 71}, + [2030] = {.lex_state = 71}, + [2031] = {.lex_state = 71}, + [2032] = {.lex_state = 71}, + [2033] = {.lex_state = 71}, + [2034] = {.lex_state = 71}, + [2035] = {.lex_state = 71}, + [2036] = {.lex_state = 71}, + [2037] = {.lex_state = 71}, + [2038] = {.lex_state = 71}, + [2039] = {.lex_state = 71}, + [2040] = {.lex_state = 71}, + [2041] = {.lex_state = 71}, + [2042] = {.lex_state = 71}, + [2043] = {.lex_state = 71}, + [2044] = {.lex_state = 71}, + [2045] = {.lex_state = 71}, + [2046] = {.lex_state = 71}, + [2047] = {.lex_state = 71}, + [2048] = {.lex_state = 71}, + [2049] = {.lex_state = 71}, + [2050] = {.lex_state = 71}, + [2051] = {.lex_state = 13}, + [2052] = {.lex_state = 71}, + [2053] = {.lex_state = 71}, + [2054] = {.lex_state = 71}, + [2055] = {.lex_state = 71, .external_lex_state = 2}, + [2056] = {.lex_state = 71}, + [2057] = {.lex_state = 71}, + [2058] = {.lex_state = 71}, + [2059] = {.lex_state = 71}, + [2060] = {.lex_state = 71}, + [2061] = {.lex_state = 71}, + [2062] = {.lex_state = 71}, + [2063] = {.lex_state = 71}, + [2064] = {.lex_state = 71}, + [2065] = {.lex_state = 71}, + [2066] = {.lex_state = 71}, + [2067] = {.lex_state = 71}, + [2068] = {.lex_state = 71}, + [2069] = {.lex_state = 71}, + [2070] = {.lex_state = 71}, + [2071] = {.lex_state = 71, .external_lex_state = 2}, + [2072] = {.lex_state = 71}, + [2073] = {.lex_state = 71}, + [2074] = {.lex_state = 71}, + [2075] = {.lex_state = 71, .external_lex_state = 2}, + [2076] = {.lex_state = 71}, + [2077] = {.lex_state = 71}, + [2078] = {.lex_state = 71}, + [2079] = {.lex_state = 71}, + [2080] = {.lex_state = 71, .external_lex_state = 2}, + [2081] = {.lex_state = 71, .external_lex_state = 2}, + [2082] = {.lex_state = 71}, + [2083] = {.lex_state = 71}, + [2084] = {.lex_state = 71}, + [2085] = {.lex_state = 71}, + [2086] = {.lex_state = 71}, + [2087] = {.lex_state = 71}, + [2088] = {.lex_state = 71}, + [2089] = {.lex_state = 71}, + [2090] = {.lex_state = 71}, + [2091] = {.lex_state = 71, .external_lex_state = 2}, + [2092] = {.lex_state = 71}, + [2093] = {.lex_state = 71}, + [2094] = {.lex_state = 71, .external_lex_state = 2}, + [2095] = {.lex_state = 71}, + [2096] = {.lex_state = 71}, + [2097] = {.lex_state = 71, .external_lex_state = 2}, + [2098] = {.lex_state = 71}, + [2099] = {.lex_state = 71}, + [2100] = {.lex_state = 71}, + [2101] = {.lex_state = 71}, + [2102] = {.lex_state = 71, .external_lex_state = 2}, + [2103] = {.lex_state = 71}, + [2104] = {.lex_state = 71}, + [2105] = {.lex_state = 71, .external_lex_state = 2}, + [2106] = {.lex_state = 71, .external_lex_state = 2}, + [2107] = {.lex_state = 71}, + [2108] = {.lex_state = 71}, + [2109] = {.lex_state = 71}, + [2110] = {.lex_state = 71}, + [2111] = {.lex_state = 71}, + [2112] = {.lex_state = 71}, + [2113] = {.lex_state = 71}, + [2114] = {.lex_state = 71}, + [2115] = {.lex_state = 71}, + [2116] = {.lex_state = 71}, + [2117] = {.lex_state = 71}, + [2118] = {.lex_state = 71}, + [2119] = {.lex_state = 71, .external_lex_state = 2}, + [2120] = {.lex_state = 71}, + [2121] = {.lex_state = 71}, + [2122] = {.lex_state = 71, .external_lex_state = 2}, + [2123] = {.lex_state = 71}, + [2124] = {.lex_state = 71, .external_lex_state = 2}, + [2125] = {.lex_state = 71, .external_lex_state = 2}, + [2126] = {.lex_state = 71}, + [2127] = {.lex_state = 71}, + [2128] = {.lex_state = 71}, + [2129] = {.lex_state = 71}, + [2130] = {.lex_state = 71, .external_lex_state = 2}, + [2131] = {.lex_state = 71}, + [2132] = {.lex_state = 71}, + [2133] = {.lex_state = 71}, + [2134] = {.lex_state = 71, .external_lex_state = 2}, + [2135] = {.lex_state = 71}, + [2136] = {.lex_state = 71}, + [2137] = {.lex_state = 71, .external_lex_state = 2}, + [2138] = {.lex_state = 71}, + [2139] = {.lex_state = 71}, + [2140] = {.lex_state = 71}, + [2141] = {.lex_state = 71}, + [2142] = {.lex_state = 71}, + [2143] = {.lex_state = 71}, + [2144] = {.lex_state = 71}, + [2145] = {.lex_state = 71}, + [2146] = {.lex_state = 71}, + [2147] = {.lex_state = 71}, + [2148] = {.lex_state = 71}, + [2149] = {.lex_state = 71}, + [2150] = {.lex_state = 71}, + [2151] = {.lex_state = 71}, + [2152] = {.lex_state = 71}, + [2153] = {.lex_state = 71}, + [2154] = {.lex_state = 71}, + [2155] = {.lex_state = 71}, + [2156] = {.lex_state = 71}, + [2157] = {.lex_state = 71}, + [2158] = {.lex_state = 71}, + [2159] = {.lex_state = 71}, + [2160] = {.lex_state = 71, .external_lex_state = 2}, + [2161] = {.lex_state = 71, .external_lex_state = 2}, + [2162] = {.lex_state = 71}, + [2163] = {.lex_state = 71}, + [2164] = {.lex_state = 71}, + [2165] = {.lex_state = 71}, + [2166] = {.lex_state = 71, .external_lex_state = 2}, + [2167] = {.lex_state = 71}, + [2168] = {.lex_state = 71}, + [2169] = {.lex_state = 71}, + [2170] = {.lex_state = 71}, + [2171] = {.lex_state = 71}, + [2172] = {.lex_state = 71}, + [2173] = {.lex_state = 71}, + [2174] = {.lex_state = 71, .external_lex_state = 2}, + [2175] = {.lex_state = 71}, + [2176] = {.lex_state = 71}, + [2177] = {.lex_state = 71}, + [2178] = {.lex_state = 71}, + [2179] = {.lex_state = 71}, + [2180] = {.lex_state = 71}, + [2181] = {.lex_state = 71}, + [2182] = {.lex_state = 71}, + [2183] = {.lex_state = 71}, + [2184] = {.lex_state = 71}, + [2185] = {.lex_state = 71}, + [2186] = {.lex_state = 71}, + [2187] = {.lex_state = 71}, + [2188] = {.lex_state = 71}, + [2189] = {.lex_state = 71, .external_lex_state = 2}, + [2190] = {.lex_state = 71}, + [2191] = {.lex_state = 71, .external_lex_state = 2}, + [2192] = {.lex_state = 71, .external_lex_state = 2}, + [2193] = {.lex_state = 71}, + [2194] = {.lex_state = 71}, + [2195] = {.lex_state = 71}, + [2196] = {.lex_state = 71}, + [2197] = {.lex_state = 71}, + [2198] = {.lex_state = 71}, + [2199] = {.lex_state = 71}, + [2200] = {.lex_state = 71}, + [2201] = {.lex_state = 71, .external_lex_state = 2}, + [2202] = {.lex_state = 71, .external_lex_state = 2}, + [2203] = {.lex_state = 71}, + [2204] = {.lex_state = 71}, + [2205] = {.lex_state = 71}, + [2206] = {.lex_state = 71}, + [2207] = {.lex_state = 71, .external_lex_state = 2}, + [2208] = {.lex_state = 71}, + [2209] = {.lex_state = 71}, + [2210] = {.lex_state = 71}, + [2211] = {.lex_state = 71}, + [2212] = {.lex_state = 71}, + [2213] = {.lex_state = 71, .external_lex_state = 2}, + [2214] = {.lex_state = 71, .external_lex_state = 2}, + [2215] = {.lex_state = 71}, + [2216] = {.lex_state = 71}, + [2217] = {.lex_state = 71}, + [2218] = {.lex_state = 71, .external_lex_state = 2}, + [2219] = {.lex_state = 71}, + [2220] = {.lex_state = 71, .external_lex_state = 2}, + [2221] = {.lex_state = 71}, + [2222] = {.lex_state = 71}, + [2223] = {.lex_state = 71, .external_lex_state = 2}, + [2224] = {.lex_state = 71, .external_lex_state = 2}, + [2225] = {.lex_state = 71}, + [2226] = {.lex_state = 71, .external_lex_state = 2}, + [2227] = {.lex_state = 71}, + [2228] = {.lex_state = 71}, + [2229] = {.lex_state = 71}, + [2230] = {.lex_state = 71}, + [2231] = {.lex_state = 71}, + [2232] = {.lex_state = 71, .external_lex_state = 2}, + [2233] = {.lex_state = 71}, + [2234] = {.lex_state = 71}, + [2235] = {.lex_state = 71, .external_lex_state = 2}, + [2236] = {.lex_state = 71, .external_lex_state = 2}, + [2237] = {.lex_state = 71}, + [2238] = {.lex_state = 71, .external_lex_state = 2}, + [2239] = {.lex_state = 71, .external_lex_state = 2}, + [2240] = {.lex_state = 71, .external_lex_state = 2}, + [2241] = {.lex_state = 71}, + [2242] = {.lex_state = 71}, + [2243] = {.lex_state = 71}, + [2244] = {.lex_state = 71}, + [2245] = {.lex_state = 71}, + [2246] = {.lex_state = 71}, + [2247] = {.lex_state = 71}, + [2248] = {.lex_state = 71}, + [2249] = {.lex_state = 71}, + [2250] = {.lex_state = 71, .external_lex_state = 2}, + [2251] = {.lex_state = 71}, + [2252] = {.lex_state = 71}, + [2253] = {.lex_state = 71}, + [2254] = {.lex_state = 71}, + [2255] = {.lex_state = 71, .external_lex_state = 2}, + [2256] = {.lex_state = 71, .external_lex_state = 2}, + [2257] = {.lex_state = 71}, + [2258] = {.lex_state = 71}, + [2259] = {.lex_state = 71}, + [2260] = {.lex_state = 71}, + [2261] = {.lex_state = 71}, + [2262] = {.lex_state = 71}, + [2263] = {.lex_state = 71}, + [2264] = {.lex_state = 71, .external_lex_state = 2}, + [2265] = {.lex_state = 71}, + [2266] = {.lex_state = 71}, + [2267] = {.lex_state = 71}, + [2268] = {.lex_state = 71}, + [2269] = {.lex_state = 71}, + [2270] = {.lex_state = 71}, + [2271] = {.lex_state = 71}, + [2272] = {.lex_state = 71, .external_lex_state = 2}, + [2273] = {.lex_state = 71}, + [2274] = {.lex_state = 71}, + [2275] = {.lex_state = 71}, + [2276] = {.lex_state = 71, .external_lex_state = 2}, + [2277] = {.lex_state = 71}, + [2278] = {.lex_state = 71, .external_lex_state = 2}, + [2279] = {.lex_state = 71, .external_lex_state = 2}, + [2280] = {.lex_state = 71, .external_lex_state = 2}, + [2281] = {.lex_state = 71}, + [2282] = {.lex_state = 71, .external_lex_state = 2}, + [2283] = {.lex_state = 71}, + [2284] = {.lex_state = 71}, + [2285] = {.lex_state = 71}, + [2286] = {.lex_state = 71, .external_lex_state = 2}, + [2287] = {.lex_state = 71}, + [2288] = {.lex_state = 71, .external_lex_state = 2}, + [2289] = {.lex_state = 71}, + [2290] = {.lex_state = 71}, + [2291] = {.lex_state = 71}, + [2292] = {.lex_state = 71}, + [2293] = {.lex_state = 71}, + [2294] = {.lex_state = 71}, + [2295] = {.lex_state = 71}, + [2296] = {.lex_state = 71}, + [2297] = {.lex_state = 71}, + [2298] = {.lex_state = 71}, + [2299] = {.lex_state = 71}, + [2300] = {.lex_state = 71}, + [2301] = {.lex_state = 71}, + [2302] = {.lex_state = 71}, + [2303] = {.lex_state = 71}, + [2304] = {.lex_state = 71}, + [2305] = {.lex_state = 71}, + [2306] = {.lex_state = 71}, + [2307] = {.lex_state = 71}, + [2308] = {.lex_state = 71}, + [2309] = {.lex_state = 71}, + [2310] = {.lex_state = 71}, + [2311] = {.lex_state = 71}, + [2312] = {.lex_state = 71, .external_lex_state = 2}, + [2313] = {.lex_state = 71}, + [2314] = {.lex_state = 71}, + [2315] = {.lex_state = 71, .external_lex_state = 2}, + [2316] = {.lex_state = 71, .external_lex_state = 2}, + [2317] = {.lex_state = 71}, + [2318] = {.lex_state = 71}, + [2319] = {.lex_state = 71}, + [2320] = {.lex_state = 71, .external_lex_state = 10}, + [2321] = {.lex_state = 71}, + [2322] = {.lex_state = 71}, + [2323] = {.lex_state = 71}, + [2324] = {.lex_state = 71}, + [2325] = {.lex_state = 71}, + [2326] = {.lex_state = 13}, + [2327] = {.lex_state = 71}, + [2328] = {.lex_state = 71}, + [2329] = {.lex_state = 71, .external_lex_state = 10}, + [2330] = {.lex_state = 71}, + [2331] = {.lex_state = 71, .external_lex_state = 10}, + [2332] = {.lex_state = 71, .external_lex_state = 10}, + [2333] = {.lex_state = 71}, + [2334] = {.lex_state = 71}, + [2335] = {.lex_state = 71}, + [2336] = {.lex_state = 71}, + [2337] = {.lex_state = 71}, + [2338] = {.lex_state = 71}, + [2339] = {.lex_state = 71}, + [2340] = {.lex_state = 71}, + [2341] = {.lex_state = 71}, + [2342] = {.lex_state = 71}, + [2343] = {.lex_state = 71}, + [2344] = {.lex_state = 71}, + [2345] = {.lex_state = 71}, + [2346] = {.lex_state = 71}, + [2347] = {.lex_state = 71}, + [2348] = {.lex_state = 71}, + [2349] = {.lex_state = 71}, + [2350] = {.lex_state = 71}, + [2351] = {.lex_state = 71}, + [2352] = {.lex_state = 71}, + [2353] = {.lex_state = 71}, + [2354] = {.lex_state = 71}, + [2355] = {.lex_state = 71}, + [2356] = {.lex_state = 71}, + [2357] = {.lex_state = 71, .external_lex_state = 10}, + [2358] = {.lex_state = 71}, + [2359] = {.lex_state = 71}, + [2360] = {.lex_state = 71}, + [2361] = {.lex_state = 71}, + [2362] = {.lex_state = 71}, + [2363] = {.lex_state = 71}, + [2364] = {.lex_state = 71}, + [2365] = {.lex_state = 71}, + [2366] = {.lex_state = 71}, + [2367] = {.lex_state = 71}, + [2368] = {.lex_state = 71}, + [2369] = {.lex_state = 71}, + [2370] = {.lex_state = 71}, + [2371] = {.lex_state = 71}, + [2372] = {.lex_state = 71}, + [2373] = {.lex_state = 71}, + [2374] = {.lex_state = 71}, + [2375] = {.lex_state = 71}, + [2376] = {.lex_state = 71}, + [2377] = {.lex_state = 71}, + [2378] = {.lex_state = 71}, + [2379] = {.lex_state = 71}, + [2380] = {.lex_state = 71}, + [2381] = {.lex_state = 71}, + [2382] = {.lex_state = 71}, + [2383] = {.lex_state = 71}, + [2384] = {.lex_state = 71}, + [2385] = {.lex_state = 71}, + [2386] = {.lex_state = 71}, + [2387] = {.lex_state = 71}, + [2388] = {.lex_state = 71}, + [2389] = {.lex_state = 71}, + [2390] = {.lex_state = 71}, + [2391] = {.lex_state = 71}, + [2392] = {.lex_state = 71}, + [2393] = {.lex_state = 71}, + [2394] = {.lex_state = 71}, + [2395] = {.lex_state = 71}, + [2396] = {.lex_state = 71}, + [2397] = {.lex_state = 71}, + [2398] = {.lex_state = 71}, + [2399] = {.lex_state = 71}, + [2400] = {.lex_state = 71}, + [2401] = {.lex_state = 71}, + [2402] = {.lex_state = 71}, + [2403] = {.lex_state = 71}, + [2404] = {.lex_state = 71}, + [2405] = {.lex_state = 71}, + [2406] = {.lex_state = 71}, + [2407] = {.lex_state = 71}, + [2408] = {.lex_state = 71}, + [2409] = {.lex_state = 71, .external_lex_state = 12}, + [2410] = {.lex_state = 71}, + [2411] = {.lex_state = 71, .external_lex_state = 12}, + [2412] = {.lex_state = 71}, + [2413] = {.lex_state = 71}, + [2414] = {.lex_state = 71}, + [2415] = {.lex_state = 71}, + [2416] = {.lex_state = 71}, + [2417] = {.lex_state = 71, .external_lex_state = 10}, + [2418] = {.lex_state = 13}, + [2419] = {.lex_state = 13}, + [2420] = {.lex_state = 71}, + [2421] = {.lex_state = 71}, + [2422] = {.lex_state = 71}, + [2423] = {.lex_state = 71}, + [2424] = {.lex_state = 71}, + [2425] = {.lex_state = 71}, + [2426] = {.lex_state = 71}, + [2427] = {.lex_state = 71}, + [2428] = {.lex_state = 71}, + [2429] = {.lex_state = 71}, + [2430] = {.lex_state = 71}, + [2431] = {.lex_state = 13}, + [2432] = {.lex_state = 71}, + [2433] = {.lex_state = 71}, + [2434] = {.lex_state = 71}, + [2435] = {.lex_state = 71}, + [2436] = {.lex_state = 71}, + [2437] = {.lex_state = 71}, + [2438] = {.lex_state = 71}, + [2439] = {.lex_state = 71}, + [2440] = {.lex_state = 71}, + [2441] = {.lex_state = 71}, + [2442] = {.lex_state = 71}, + [2443] = {.lex_state = 71}, + [2444] = {.lex_state = 71, .external_lex_state = 12}, + [2445] = {.lex_state = 71, .external_lex_state = 12}, + [2446] = {.lex_state = 71}, + [2447] = {.lex_state = 71}, + [2448] = {.lex_state = 71}, + [2449] = {.lex_state = 71}, + [2450] = {.lex_state = 71}, + [2451] = {.lex_state = 71}, + [2452] = {.lex_state = 71}, + [2453] = {.lex_state = 71}, + [2454] = {.lex_state = 71}, + [2455] = {.lex_state = 71}, + [2456] = {.lex_state = 71}, + [2457] = {.lex_state = 71}, + [2458] = {.lex_state = 168}, + [2459] = {.lex_state = 71}, + [2460] = {.lex_state = 71}, + [2461] = {.lex_state = 71}, + [2462] = {.lex_state = 71}, + [2463] = {.lex_state = 71}, + [2464] = {.lex_state = 71}, + [2465] = {.lex_state = 71}, + [2466] = {.lex_state = 71}, + [2467] = {.lex_state = 71}, + [2468] = {.lex_state = 71}, + [2469] = {.lex_state = 71}, + [2470] = {.lex_state = 71}, + [2471] = {.lex_state = 71}, + [2472] = {.lex_state = 71}, + [2473] = {.lex_state = 71}, + [2474] = {.lex_state = 71}, + [2475] = {.lex_state = 71}, + [2476] = {.lex_state = 71}, + [2477] = {.lex_state = 71}, + [2478] = {.lex_state = 71}, + [2479] = {.lex_state = 71}, + [2480] = {.lex_state = 71}, + [2481] = {.lex_state = 71}, + [2482] = {.lex_state = 71}, + [2483] = {.lex_state = 71}, + [2484] = {.lex_state = 71}, + [2485] = {.lex_state = 71}, + [2486] = {.lex_state = 71}, + [2487] = {.lex_state = 71}, + [2488] = {.lex_state = 71}, + [2489] = {.lex_state = 71}, + [2490] = {.lex_state = 71}, + [2491] = {.lex_state = 71}, + [2492] = {.lex_state = 71}, + [2493] = {.lex_state = 71}, + [2494] = {.lex_state = 71}, + [2495] = {.lex_state = 71}, + [2496] = {.lex_state = 71}, + [2497] = {.lex_state = 71}, + [2498] = {.lex_state = 71}, + [2499] = {.lex_state = 71}, + [2500] = {.lex_state = 71}, + [2501] = {.lex_state = 71}, + [2502] = {.lex_state = 168}, + [2503] = {.lex_state = 71}, + [2504] = {.lex_state = 71}, + [2505] = {.lex_state = 71}, + [2506] = {.lex_state = 71}, + [2507] = {.lex_state = 71}, + [2508] = {.lex_state = 71}, + [2509] = {.lex_state = 71}, + [2510] = {.lex_state = 71}, + [2511] = {.lex_state = 71}, + [2512] = {.lex_state = 71}, + [2513] = {.lex_state = 71}, + [2514] = {.lex_state = 71}, + [2515] = {.lex_state = 71}, + [2516] = {.lex_state = 71}, + [2517] = {.lex_state = 71}, + [2518] = {.lex_state = 71}, + [2519] = {.lex_state = 71}, + [2520] = {.lex_state = 71}, + [2521] = {.lex_state = 71}, + [2522] = {.lex_state = 71}, + [2523] = {.lex_state = 71}, + [2524] = {.lex_state = 71}, + [2525] = {.lex_state = 71}, + [2526] = {.lex_state = 71}, + [2527] = {.lex_state = 71}, + [2528] = {.lex_state = 71}, + [2529] = {.lex_state = 71}, + [2530] = {.lex_state = 71}, + [2531] = {.lex_state = 71}, + [2532] = {.lex_state = 71}, + [2533] = {.lex_state = 71}, + [2534] = {.lex_state = 71}, + [2535] = {.lex_state = 71}, + [2536] = {.lex_state = 71}, + [2537] = {.lex_state = 71}, + [2538] = {.lex_state = 71}, + [2539] = {.lex_state = 71}, + [2540] = {.lex_state = 71}, + [2541] = {.lex_state = 71}, +}; + +enum { + ts_external_token__automatic_semicolon = 0, + ts_external_token_encapsed_string_chars = 1, + ts_external_token_encapsed_string_chars_after_variable = 2, + ts_external_token_execution_string_chars = 3, + ts_external_token_execution_string_chars_after_variable = 4, + ts_external_token_encapsed_string_chars_heredoc = 5, + ts_external_token_encapsed_string_chars_after_variable_heredoc = 6, + ts_external_token_heredoc_start = 7, + ts_external_token_heredoc_end = 8, + ts_external_token_nowdoc_string = 9, + ts_external_token_sentinel_error = 10, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, + [ts_external_token_encapsed_string_chars] = sym_encapsed_string_chars, + [ts_external_token_encapsed_string_chars_after_variable] = sym_encapsed_string_chars_after_variable, + [ts_external_token_execution_string_chars] = sym_execution_string_chars, + [ts_external_token_execution_string_chars_after_variable] = sym_execution_string_chars_after_variable, + [ts_external_token_encapsed_string_chars_heredoc] = sym_encapsed_string_chars_heredoc, + [ts_external_token_encapsed_string_chars_after_variable_heredoc] = sym_encapsed_string_chars_after_variable_heredoc, + [ts_external_token_heredoc_start] = sym_heredoc_start, + [ts_external_token_heredoc_end] = sym_heredoc_end, + [ts_external_token_nowdoc_string] = sym_nowdoc_string, + [ts_external_token_sentinel_error] = sym_sentinel_error, +}; + +static const bool ts_external_scanner_states[14][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_encapsed_string_chars] = true, + [ts_external_token_encapsed_string_chars_after_variable] = true, + [ts_external_token_execution_string_chars] = true, + [ts_external_token_execution_string_chars_after_variable] = true, + [ts_external_token_encapsed_string_chars_heredoc] = true, + [ts_external_token_encapsed_string_chars_after_variable_heredoc] = true, + [ts_external_token_heredoc_start] = true, + [ts_external_token_heredoc_end] = true, + [ts_external_token_nowdoc_string] = true, + [ts_external_token_sentinel_error] = true, + }, + [2] = { + [ts_external_token__automatic_semicolon] = true, + }, + [3] = { + [ts_external_token_encapsed_string_chars_heredoc] = true, + [ts_external_token_heredoc_end] = true, + }, + [4] = { + [ts_external_token_encapsed_string_chars_heredoc] = true, + }, + [5] = { + [ts_external_token_encapsed_string_chars] = true, + }, + [6] = { + [ts_external_token_encapsed_string_chars_heredoc] = true, + [ts_external_token_encapsed_string_chars_after_variable_heredoc] = true, + [ts_external_token_heredoc_end] = true, + }, + [7] = { + [ts_external_token_execution_string_chars] = true, + }, + [8] = { + [ts_external_token_encapsed_string_chars] = true, + [ts_external_token_encapsed_string_chars_after_variable] = true, + }, + [9] = { + [ts_external_token_execution_string_chars] = true, + [ts_external_token_execution_string_chars_after_variable] = true, + }, + [10] = { + [ts_external_token_heredoc_end] = true, + }, + [11] = { + [ts_external_token_heredoc_end] = true, + [ts_external_token_nowdoc_string] = true, + }, + [12] = { + [ts_external_token_heredoc_start] = true, + }, + [13] = { + [ts_external_token_nowdoc_string] = true, + }, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_name] = ACTIONS(1), + [anon_sym_QMARK_GT] = ACTIONS(1), + [sym_php_tag] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [aux_sym_function_static_declaration_token1] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [aux_sym_global_declaration_token1] = ACTIONS(1), + [aux_sym_namespace_definition_token1] = ACTIONS(1), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1), + [anon_sym_BSLASH] = ACTIONS(1), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [aux_sym_trait_declaration_token1] = ACTIONS(1), + [aux_sym_interface_declaration_token1] = ACTIONS(1), + [aux_sym_base_clause_token1] = ACTIONS(1), + [aux_sym_enum_declaration_token1] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_string] = ACTIONS(1), + [anon_sym_int] = ACTIONS(1), + [aux_sym_enum_case_token1] = ACTIONS(1), + [aux_sym_class_declaration_token1] = ACTIONS(1), + [aux_sym_final_modifier_token1] = ACTIONS(1), + [aux_sym_abstract_modifier_token1] = ACTIONS(1), + [aux_sym_readonly_modifier_token1] = ACTIONS(1), + [aux_sym_class_interface_clause_token1] = ACTIONS(1), + [sym_var_modifier] = ACTIONS(1), + [aux_sym_use_instead_of_clause_token1] = ACTIONS(1), + [aux_sym_visibility_modifier_token1] = ACTIONS(1), + [aux_sym_visibility_modifier_token2] = ACTIONS(1), + [aux_sym_visibility_modifier_token3] = ACTIONS(1), + [aux_sym__arrow_function_header_token1] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [sym_bottom_type] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_array] = ACTIONS(1), + [aux_sym_primitive_type_token1] = ACTIONS(1), + [anon_sym_iterable] = ACTIONS(1), + [anon_sym_bool] = ACTIONS(1), + [anon_sym_float] = ACTIONS(1), + [anon_sym_void] = ACTIONS(1), + [anon_sym_mixed] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), + [anon_sym_null] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [aux_sym_cast_type_token1] = ACTIONS(1), + [aux_sym_cast_type_token2] = ACTIONS(1), + [aux_sym_cast_type_token3] = ACTIONS(1), + [aux_sym_cast_type_token4] = ACTIONS(1), + [aux_sym_cast_type_token5] = ACTIONS(1), + [aux_sym_cast_type_token6] = ACTIONS(1), + [aux_sym_cast_type_token7] = ACTIONS(1), + [aux_sym_cast_type_token8] = ACTIONS(1), + [aux_sym_cast_type_token9] = ACTIONS(1), + [aux_sym_cast_type_token10] = ACTIONS(1), + [aux_sym_cast_type_token11] = ACTIONS(1), + [aux_sym_cast_type_token12] = ACTIONS(1), + [aux_sym_echo_statement_token1] = ACTIONS(1), + [anon_sym_unset] = ACTIONS(1), + [aux_sym_declare_statement_token1] = ACTIONS(1), + [aux_sym_declare_statement_token2] = ACTIONS(1), + [anon_sym_ticks] = ACTIONS(1), + [anon_sym_encoding] = ACTIONS(1), + [anon_sym_strict_types] = ACTIONS(1), + [sym_float] = ACTIONS(1), + [aux_sym_try_statement_token1] = ACTIONS(1), + [aux_sym_catch_clause_token1] = ACTIONS(1), + [aux_sym_finally_clause_token1] = ACTIONS(1), + [aux_sym_goto_statement_token1] = ACTIONS(1), + [aux_sym_continue_statement_token1] = ACTIONS(1), + [aux_sym_break_statement_token1] = ACTIONS(1), + [sym_integer] = ACTIONS(1), + [aux_sym_return_statement_token1] = ACTIONS(1), + [aux_sym_throw_expression_token1] = ACTIONS(1), + [aux_sym_while_statement_token1] = ACTIONS(1), + [aux_sym_while_statement_token2] = ACTIONS(1), + [aux_sym_do_statement_token1] = ACTIONS(1), + [aux_sym_for_statement_token1] = ACTIONS(1), + [aux_sym_for_statement_token2] = ACTIONS(1), + [aux_sym_foreach_statement_token1] = ACTIONS(1), + [aux_sym_foreach_statement_token2] = ACTIONS(1), + [aux_sym_if_statement_token1] = ACTIONS(1), + [aux_sym_if_statement_token2] = ACTIONS(1), + [aux_sym_else_if_clause_token1] = ACTIONS(1), + [aux_sym_else_clause_token1] = ACTIONS(1), + [aux_sym_match_expression_token1] = ACTIONS(1), + [aux_sym_match_default_expression_token1] = ACTIONS(1), + [aux_sym_switch_statement_token1] = ACTIONS(1), + [aux_sym_switch_block_token1] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), + [aux_sym_clone_expression_token1] = ACTIONS(1), + [anon_sym_COLON_COLON] = ACTIONS(1), + [aux_sym_print_intrinsic_token1] = ACTIONS(1), + [aux_sym_object_creation_expression_token1] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1), + [aux_sym__list_destructing_token1] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_self] = ACTIONS(1), + [anon_sym_parent] = ACTIONS(1), + [anon_sym_POUND_LBRACK] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_LT_QMARK] = ACTIONS(1), + [anon_sym_QMARK_GT2] = ACTIONS(1), + [aux_sym_encapsed_string_token1] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [aux_sym_string_token1] = ACTIONS(1), + [anon_sym_LT_LT_LT] = ACTIONS(1), + [anon_sym_DQUOTE2] = ACTIONS(1), + [anon_sym_SQUOTE2] = ACTIONS(1), + [anon_sym_BQUOTE] = ACTIONS(1), + [sym_boolean] = ACTIONS(1), + [sym_null] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [aux_sym_yield_expression_token1] = ACTIONS(1), + [aux_sym_yield_expression_token2] = ACTIONS(1), + [aux_sym_binary_expression_token1] = ACTIONS(1), + [anon_sym_QMARK_QMARK] = ACTIONS(1), + [aux_sym_binary_expression_token2] = ACTIONS(1), + [aux_sym_binary_expression_token3] = ACTIONS(1), + [aux_sym_binary_expression_token4] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_LT_GT] = ACTIONS(1), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_EQ_GT] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [aux_sym_include_expression_token1] = ACTIONS(1), + [aux_sym_include_once_expression_token1] = ACTIONS(1), + [aux_sym_require_expression_token1] = ACTIONS(1), + [aux_sym_require_once_expression_token1] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1), + [sym_encapsed_string_chars] = ACTIONS(1), + [sym_encapsed_string_chars_after_variable] = ACTIONS(1), + [sym_execution_string_chars] = ACTIONS(1), + [sym_execution_string_chars_after_variable] = ACTIONS(1), + [sym_encapsed_string_chars_heredoc] = ACTIONS(1), + [sym_encapsed_string_chars_after_variable_heredoc] = ACTIONS(1), + [sym_heredoc_start] = ACTIONS(1), + [sym_heredoc_end] = ACTIONS(1), + [sym_nowdoc_string] = ACTIONS(1), + [sym_sentinel_error] = ACTIONS(1), + }, + [1] = { + [sym_php] = STATE(2499), + [sym_empty_statement] = STATE(18), + [sym_function_static_declaration] = STATE(18), + [sym_global_declaration] = STATE(18), + [sym_namespace_definition] = STATE(18), + [sym_namespace_use_declaration] = STATE(18), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(18), + [sym_interface_declaration] = STATE(18), + [sym_enum_declaration] = STATE(18), + [sym_class_declaration] = STATE(18), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(18), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(18), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(18), + [sym_unset_statement] = STATE(18), + [sym_declare_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_foreach_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(18), + [sym_compound_statement] = STATE(18), + [sym_named_label_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(18), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_name] = ACTIONS(7), + [anon_sym_QMARK_GT] = ACTIONS(9), + [sym_php_tag] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [2] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [ts_builtin_sym_end] = ACTIONS(129), + [sym_name] = ACTIONS(131), + [anon_sym_QMARK_GT] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(134), + [aux_sym_function_static_declaration_token1] = ACTIONS(137), + [aux_sym_global_declaration_token1] = ACTIONS(140), + [aux_sym_namespace_definition_token1] = ACTIONS(143), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(146), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(149), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(129), + [aux_sym_trait_declaration_token1] = ACTIONS(161), + [aux_sym_interface_declaration_token1] = ACTIONS(164), + [aux_sym_enum_declaration_token1] = ACTIONS(167), + [aux_sym_enum_case_token1] = ACTIONS(170), + [aux_sym_class_declaration_token1] = ACTIONS(172), + [aux_sym_final_modifier_token1] = ACTIONS(175), + [aux_sym_abstract_modifier_token1] = ACTIONS(178), + [aux_sym_readonly_modifier_token1] = ACTIONS(181), + [aux_sym_visibility_modifier_token1] = ACTIONS(184), + [aux_sym_visibility_modifier_token2] = ACTIONS(184), + [aux_sym_visibility_modifier_token3] = ACTIONS(184), + [aux_sym__arrow_function_header_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(190), + [aux_sym_cast_type_token1] = ACTIONS(193), + [aux_sym_echo_statement_token1] = ACTIONS(196), + [anon_sym_unset] = ACTIONS(199), + [aux_sym_declare_statement_token1] = ACTIONS(202), + [aux_sym_declare_statement_token2] = ACTIONS(170), + [sym_float] = ACTIONS(205), + [aux_sym_try_statement_token1] = ACTIONS(208), + [aux_sym_goto_statement_token1] = ACTIONS(211), + [aux_sym_continue_statement_token1] = ACTIONS(214), + [aux_sym_break_statement_token1] = ACTIONS(217), + [sym_integer] = ACTIONS(205), + [aux_sym_return_statement_token1] = ACTIONS(220), + [aux_sym_throw_expression_token1] = ACTIONS(223), + [aux_sym_while_statement_token1] = ACTIONS(226), + [aux_sym_while_statement_token2] = ACTIONS(170), + [aux_sym_do_statement_token1] = ACTIONS(229), + [aux_sym_for_statement_token1] = ACTIONS(232), + [aux_sym_for_statement_token2] = ACTIONS(170), + [aux_sym_foreach_statement_token1] = ACTIONS(235), + [aux_sym_foreach_statement_token2] = ACTIONS(170), + [aux_sym_if_statement_token1] = ACTIONS(238), + [aux_sym_if_statement_token2] = ACTIONS(170), + [aux_sym_match_expression_token1] = ACTIONS(241), + [aux_sym_match_default_expression_token1] = ACTIONS(170), + [aux_sym_switch_statement_token1] = ACTIONS(244), + [aux_sym_switch_block_token1] = ACTIONS(170), + [anon_sym_AT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_BANG] = ACTIONS(253), + [aux_sym_clone_expression_token1] = ACTIONS(256), + [aux_sym_print_intrinsic_token1] = ACTIONS(259), + [aux_sym_object_creation_expression_token1] = ACTIONS(262), + [anon_sym_PLUS_PLUS] = ACTIONS(265), + [anon_sym_DASH_DASH] = ACTIONS(265), + [aux_sym__list_destructing_token1] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_self] = ACTIONS(274), + [anon_sym_parent] = ACTIONS(274), + [anon_sym_POUND_LBRACK] = ACTIONS(277), + [anon_sym_SQUOTE] = ACTIONS(280), + [aux_sym_encapsed_string_token1] = ACTIONS(283), + [anon_sym_DQUOTE] = ACTIONS(283), + [aux_sym_string_token1] = ACTIONS(280), + [anon_sym_LT_LT_LT] = ACTIONS(286), + [anon_sym_BQUOTE] = ACTIONS(289), + [sym_boolean] = ACTIONS(205), + [sym_null] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(292), + [aux_sym_yield_expression_token1] = ACTIONS(295), + [aux_sym_include_expression_token1] = ACTIONS(298), + [aux_sym_include_once_expression_token1] = ACTIONS(301), + [aux_sym_require_expression_token1] = ACTIONS(304), + [aux_sym_require_once_expression_token1] = ACTIONS(307), + [sym_comment] = ACTIONS(3), + }, + [3] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(310), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_enum_case_token1] = ACTIONS(312), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_match_default_expression_token1] = ACTIONS(312), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [aux_sym_switch_block_token1] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [4] = { + [sym_empty_statement] = STATE(6), + [sym_function_static_declaration] = STATE(6), + [sym_global_declaration] = STATE(6), + [sym_namespace_definition] = STATE(6), + [sym_namespace_use_declaration] = STATE(6), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(6), + [sym_interface_declaration] = STATE(6), + [sym_enum_declaration] = STATE(6), + [sym_class_declaration] = STATE(6), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(6), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(6), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(6), + [sym_unset_statement] = STATE(6), + [sym_declare_statement] = STATE(6), + [sym_try_statement] = STATE(6), + [sym_goto_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_foreach_statement] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(6), + [sym_compound_statement] = STATE(6), + [sym_named_label_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(6), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(314), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_enum_case_token1] = ACTIONS(316), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_match_default_expression_token1] = ACTIONS(316), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [aux_sym_switch_block_token1] = ACTIONS(316), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [5] = { + [sym_empty_statement] = STATE(3), + [sym_function_static_declaration] = STATE(3), + [sym_global_declaration] = STATE(3), + [sym_namespace_definition] = STATE(3), + [sym_namespace_use_declaration] = STATE(3), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(3), + [sym_interface_declaration] = STATE(3), + [sym_enum_declaration] = STATE(3), + [sym_class_declaration] = STATE(3), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(3), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(3), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(3), + [sym_unset_statement] = STATE(3), + [sym_declare_statement] = STATE(3), + [sym_try_statement] = STATE(3), + [sym_goto_statement] = STATE(3), + [sym_continue_statement] = STATE(3), + [sym_break_statement] = STATE(3), + [sym_return_statement] = STATE(3), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(3), + [sym_do_statement] = STATE(3), + [sym_for_statement] = STATE(3), + [sym_foreach_statement] = STATE(3), + [sym_if_statement] = STATE(3), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(3), + [sym_compound_statement] = STATE(3), + [sym_named_label_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(3), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(318), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_enum_case_token1] = ACTIONS(320), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_match_default_expression_token1] = ACTIONS(320), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [aux_sym_switch_block_token1] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [6] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(322), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_enum_case_token1] = ACTIONS(324), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_match_default_expression_token1] = ACTIONS(324), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [aux_sym_switch_block_token1] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [7] = { + [sym_empty_statement] = STATE(11), + [sym_function_static_declaration] = STATE(11), + [sym_global_declaration] = STATE(11), + [sym_namespace_definition] = STATE(11), + [sym_namespace_use_declaration] = STATE(11), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(11), + [sym_interface_declaration] = STATE(11), + [sym_enum_declaration] = STATE(11), + [sym_class_declaration] = STATE(11), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(11), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(11), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(11), + [sym_unset_statement] = STATE(11), + [sym_declare_statement] = STATE(11), + [sym_try_statement] = STATE(11), + [sym_goto_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_foreach_statement] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(11), + [sym_compound_statement] = STATE(11), + [sym_named_label_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(11), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_token2] = ACTIONS(336), + [aux_sym_else_if_clause_token1] = ACTIONS(336), + [aux_sym_else_clause_token1] = ACTIONS(336), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [8] = { + [sym_empty_statement] = STATE(10), + [sym_function_static_declaration] = STATE(10), + [sym_global_declaration] = STATE(10), + [sym_namespace_definition] = STATE(10), + [sym_namespace_use_declaration] = STATE(10), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(10), + [sym_interface_declaration] = STATE(10), + [sym_enum_declaration] = STATE(10), + [sym_class_declaration] = STATE(10), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(10), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(10), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(10), + [sym_unset_statement] = STATE(10), + [sym_declare_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_goto_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_foreach_statement] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(10), + [sym_compound_statement] = STATE(10), + [sym_named_label_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(10), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_while_statement_token2] = ACTIONS(338), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_foreach_statement_token2] = ACTIONS(338), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_if_statement_token2] = ACTIONS(338), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [9] = { + [sym_empty_statement] = STATE(7), + [sym_function_static_declaration] = STATE(7), + [sym_global_declaration] = STATE(7), + [sym_namespace_definition] = STATE(7), + [sym_namespace_use_declaration] = STATE(7), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(7), + [sym_interface_declaration] = STATE(7), + [sym_enum_declaration] = STATE(7), + [sym_class_declaration] = STATE(7), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(7), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(7), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(7), + [sym_unset_statement] = STATE(7), + [sym_declare_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_goto_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_foreach_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(7), + [sym_compound_statement] = STATE(7), + [sym_named_label_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(7), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_if_statement_token2] = ACTIONS(338), + [aux_sym_else_if_clause_token1] = ACTIONS(338), + [aux_sym_else_clause_token1] = ACTIONS(338), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [10] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_while_statement_token2] = ACTIONS(336), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_foreach_statement_token2] = ACTIONS(336), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_if_statement_token2] = ACTIONS(336), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [11] = { + [sym_empty_statement] = STATE(11), + [sym_function_static_declaration] = STATE(11), + [sym_global_declaration] = STATE(11), + [sym_namespace_definition] = STATE(11), + [sym_namespace_use_declaration] = STATE(11), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(11), + [sym_interface_declaration] = STATE(11), + [sym_enum_declaration] = STATE(11), + [sym_class_declaration] = STATE(11), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(11), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(11), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(11), + [sym_unset_statement] = STATE(11), + [sym_declare_statement] = STATE(11), + [sym_try_statement] = STATE(11), + [sym_goto_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_foreach_statement] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(11), + [sym_compound_statement] = STATE(11), + [sym_named_label_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(11), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(134), + [aux_sym_function_static_declaration_token1] = ACTIONS(137), + [aux_sym_global_declaration_token1] = ACTIONS(140), + [aux_sym_namespace_definition_token1] = ACTIONS(143), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(146), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(149), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(158), + [aux_sym_trait_declaration_token1] = ACTIONS(161), + [aux_sym_interface_declaration_token1] = ACTIONS(164), + [aux_sym_enum_declaration_token1] = ACTIONS(167), + [aux_sym_class_declaration_token1] = ACTIONS(172), + [aux_sym_final_modifier_token1] = ACTIONS(175), + [aux_sym_abstract_modifier_token1] = ACTIONS(178), + [aux_sym_readonly_modifier_token1] = ACTIONS(181), + [aux_sym_visibility_modifier_token1] = ACTIONS(184), + [aux_sym_visibility_modifier_token2] = ACTIONS(184), + [aux_sym_visibility_modifier_token3] = ACTIONS(184), + [aux_sym__arrow_function_header_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(190), + [aux_sym_cast_type_token1] = ACTIONS(193), + [aux_sym_echo_statement_token1] = ACTIONS(196), + [anon_sym_unset] = ACTIONS(199), + [aux_sym_declare_statement_token1] = ACTIONS(340), + [sym_float] = ACTIONS(205), + [aux_sym_try_statement_token1] = ACTIONS(208), + [aux_sym_goto_statement_token1] = ACTIONS(211), + [aux_sym_continue_statement_token1] = ACTIONS(214), + [aux_sym_break_statement_token1] = ACTIONS(217), + [sym_integer] = ACTIONS(205), + [aux_sym_return_statement_token1] = ACTIONS(220), + [aux_sym_throw_expression_token1] = ACTIONS(223), + [aux_sym_while_statement_token1] = ACTIONS(343), + [aux_sym_do_statement_token1] = ACTIONS(229), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(349), + [aux_sym_if_statement_token1] = ACTIONS(352), + [aux_sym_if_statement_token2] = ACTIONS(170), + [aux_sym_else_if_clause_token1] = ACTIONS(170), + [aux_sym_else_clause_token1] = ACTIONS(170), + [aux_sym_match_expression_token1] = ACTIONS(241), + [aux_sym_switch_statement_token1] = ACTIONS(244), + [anon_sym_AT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_BANG] = ACTIONS(253), + [aux_sym_clone_expression_token1] = ACTIONS(256), + [aux_sym_print_intrinsic_token1] = ACTIONS(259), + [aux_sym_object_creation_expression_token1] = ACTIONS(262), + [anon_sym_PLUS_PLUS] = ACTIONS(265), + [anon_sym_DASH_DASH] = ACTIONS(265), + [aux_sym__list_destructing_token1] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_self] = ACTIONS(274), + [anon_sym_parent] = ACTIONS(274), + [anon_sym_POUND_LBRACK] = ACTIONS(277), + [anon_sym_SQUOTE] = ACTIONS(280), + [aux_sym_encapsed_string_token1] = ACTIONS(283), + [anon_sym_DQUOTE] = ACTIONS(283), + [aux_sym_string_token1] = ACTIONS(280), + [anon_sym_LT_LT_LT] = ACTIONS(286), + [anon_sym_BQUOTE] = ACTIONS(289), + [sym_boolean] = ACTIONS(205), + [sym_null] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(292), + [aux_sym_yield_expression_token1] = ACTIONS(295), + [aux_sym_include_expression_token1] = ACTIONS(298), + [aux_sym_include_once_expression_token1] = ACTIONS(301), + [aux_sym_require_expression_token1] = ACTIONS(304), + [aux_sym_require_once_expression_token1] = ACTIONS(307), + [sym_comment] = ACTIONS(3), + }, + [12] = { + [sym_empty_statement] = STATE(463), + [sym_function_static_declaration] = STATE(463), + [sym_global_declaration] = STATE(463), + [sym_namespace_definition] = STATE(463), + [sym_namespace_use_declaration] = STATE(463), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(463), + [sym_interface_declaration] = STATE(463), + [sym_enum_declaration] = STATE(463), + [sym_class_declaration] = STATE(463), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(463), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(463), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(463), + [sym_unset_statement] = STATE(463), + [sym_declare_statement] = STATE(463), + [sym_try_statement] = STATE(463), + [sym_goto_statement] = STATE(463), + [sym_continue_statement] = STATE(463), + [sym_break_statement] = STATE(463), + [sym_return_statement] = STATE(463), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(463), + [sym_do_statement] = STATE(463), + [sym_for_statement] = STATE(463), + [sym_foreach_statement] = STATE(463), + [sym_if_statement] = STATE(463), + [sym_colon_block] = STATE(2412), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(463), + [sym_compound_statement] = STATE(463), + [sym_named_label_statement] = STATE(463), + [sym_expression_statement] = STATE(463), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(355), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(359), + }, + [13] = { + [sym_empty_statement] = STATE(15), + [sym_function_static_declaration] = STATE(15), + [sym_global_declaration] = STATE(15), + [sym_namespace_definition] = STATE(15), + [sym_namespace_use_declaration] = STATE(15), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(15), + [sym_interface_declaration] = STATE(15), + [sym_enum_declaration] = STATE(15), + [sym_class_declaration] = STATE(15), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(15), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(15), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(15), + [sym_unset_statement] = STATE(15), + [sym_declare_statement] = STATE(15), + [sym_try_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_foreach_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(15), + [sym_compound_statement] = STATE(15), + [sym_named_label_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(15), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [ts_builtin_sym_end] = ACTIONS(361), + [sym_name] = ACTIONS(7), + [anon_sym_QMARK_GT] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [14] = { + [sym_empty_statement] = STATE(1851), + [sym_function_static_declaration] = STATE(1851), + [sym_global_declaration] = STATE(1851), + [sym_namespace_definition] = STATE(1851), + [sym_namespace_use_declaration] = STATE(1851), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1851), + [sym_interface_declaration] = STATE(1851), + [sym_enum_declaration] = STATE(1851), + [sym_class_declaration] = STATE(1851), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1851), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1851), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1851), + [sym_unset_statement] = STATE(1851), + [sym_declare_statement] = STATE(1851), + [sym_try_statement] = STATE(1851), + [sym_goto_statement] = STATE(1851), + [sym_continue_statement] = STATE(1851), + [sym_break_statement] = STATE(1851), + [sym_return_statement] = STATE(1851), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1851), + [sym_do_statement] = STATE(1851), + [sym_for_statement] = STATE(1851), + [sym_foreach_statement] = STATE(1851), + [sym_if_statement] = STATE(1851), + [sym_colon_block] = STATE(2374), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1851), + [sym_compound_statement] = STATE(1851), + [sym_named_label_statement] = STATE(1851), + [sym_expression_statement] = STATE(1851), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(367), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(417), + }, + [15] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_name] = ACTIONS(7), + [anon_sym_QMARK_GT] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [16] = { + [sym_empty_statement] = STATE(463), + [sym_function_static_declaration] = STATE(463), + [sym_global_declaration] = STATE(463), + [sym_namespace_definition] = STATE(463), + [sym_namespace_use_declaration] = STATE(463), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(463), + [sym_interface_declaration] = STATE(463), + [sym_enum_declaration] = STATE(463), + [sym_class_declaration] = STATE(463), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(463), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(463), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(463), + [sym_unset_statement] = STATE(463), + [sym_declare_statement] = STATE(463), + [sym_try_statement] = STATE(463), + [sym_goto_statement] = STATE(463), + [sym_continue_statement] = STATE(463), + [sym_break_statement] = STATE(463), + [sym_return_statement] = STATE(463), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(463), + [sym_do_statement] = STATE(463), + [sym_for_statement] = STATE(463), + [sym_foreach_statement] = STATE(463), + [sym_if_statement] = STATE(463), + [sym_colon_block] = STATE(2412), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(463), + [sym_compound_statement] = STATE(463), + [sym_named_label_statement] = STATE(463), + [sym_expression_statement] = STATE(463), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(355), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(359), + }, + [17] = { + [sym_empty_statement] = STATE(1851), + [sym_function_static_declaration] = STATE(1851), + [sym_global_declaration] = STATE(1851), + [sym_namespace_definition] = STATE(1851), + [sym_namespace_use_declaration] = STATE(1851), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1851), + [sym_interface_declaration] = STATE(1851), + [sym_enum_declaration] = STATE(1851), + [sym_class_declaration] = STATE(1851), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1851), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1851), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1851), + [sym_unset_statement] = STATE(1851), + [sym_declare_statement] = STATE(1851), + [sym_try_statement] = STATE(1851), + [sym_goto_statement] = STATE(1851), + [sym_continue_statement] = STATE(1851), + [sym_break_statement] = STATE(1851), + [sym_return_statement] = STATE(1851), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1851), + [sym_do_statement] = STATE(1851), + [sym_for_statement] = STATE(1851), + [sym_foreach_statement] = STATE(1851), + [sym_if_statement] = STATE(1851), + [sym_colon_block] = STATE(2374), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1851), + [sym_compound_statement] = STATE(1851), + [sym_named_label_statement] = STATE(1851), + [sym_expression_statement] = STATE(1851), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(367), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(417), + }, + [18] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [ts_builtin_sym_end] = ACTIONS(361), + [sym_name] = ACTIONS(7), + [anon_sym_QMARK_GT] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [19] = { + [sym_empty_statement] = STATE(527), + [sym_function_static_declaration] = STATE(527), + [sym_global_declaration] = STATE(527), + [sym_namespace_definition] = STATE(527), + [sym_namespace_use_declaration] = STATE(527), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(527), + [sym_interface_declaration] = STATE(527), + [sym_enum_declaration] = STATE(527), + [sym_class_declaration] = STATE(527), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(527), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(527), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(527), + [sym_unset_statement] = STATE(527), + [sym_declare_statement] = STATE(527), + [sym_try_statement] = STATE(527), + [sym_goto_statement] = STATE(527), + [sym_continue_statement] = STATE(527), + [sym_break_statement] = STATE(527), + [sym_return_statement] = STATE(527), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(527), + [sym_do_statement] = STATE(527), + [sym_for_statement] = STATE(527), + [sym_foreach_statement] = STATE(527), + [sym_if_statement] = STATE(527), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(527), + [sym_compound_statement] = STATE(527), + [sym_named_label_statement] = STATE(527), + [sym_expression_statement] = STATE(527), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(433), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(435), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(437), + }, + [20] = { + [sym_empty_statement] = STATE(476), + [sym_function_static_declaration] = STATE(476), + [sym_global_declaration] = STATE(476), + [sym_namespace_definition] = STATE(476), + [sym_namespace_use_declaration] = STATE(476), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(476), + [sym_interface_declaration] = STATE(476), + [sym_enum_declaration] = STATE(476), + [sym_class_declaration] = STATE(476), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(476), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(476), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(476), + [sym_unset_statement] = STATE(476), + [sym_declare_statement] = STATE(476), + [sym_try_statement] = STATE(476), + [sym_goto_statement] = STATE(476), + [sym_continue_statement] = STATE(476), + [sym_break_statement] = STATE(476), + [sym_return_statement] = STATE(476), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(476), + [sym_do_statement] = STATE(476), + [sym_for_statement] = STATE(476), + [sym_foreach_statement] = STATE(476), + [sym_if_statement] = STATE(476), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(476), + [sym_compound_statement] = STATE(476), + [sym_named_label_statement] = STATE(476), + [sym_expression_statement] = STATE(476), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(439), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(441), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(443), + }, + [21] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(445), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [22] = { + [sym_empty_statement] = STATE(469), + [sym_function_static_declaration] = STATE(469), + [sym_global_declaration] = STATE(469), + [sym_namespace_definition] = STATE(469), + [sym_namespace_use_declaration] = STATE(469), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(469), + [sym_interface_declaration] = STATE(469), + [sym_enum_declaration] = STATE(469), + [sym_class_declaration] = STATE(469), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(469), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(469), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(469), + [sym_unset_statement] = STATE(469), + [sym_declare_statement] = STATE(469), + [sym_try_statement] = STATE(469), + [sym_goto_statement] = STATE(469), + [sym_continue_statement] = STATE(469), + [sym_break_statement] = STATE(469), + [sym_return_statement] = STATE(469), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(469), + [sym_do_statement] = STATE(469), + [sym_for_statement] = STATE(469), + [sym_foreach_statement] = STATE(469), + [sym_if_statement] = STATE(469), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(469), + [sym_compound_statement] = STATE(469), + [sym_named_label_statement] = STATE(469), + [sym_expression_statement] = STATE(469), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(447), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(449), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(451), + }, + [23] = { + [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(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(504), + [sym_interface_declaration] = STATE(504), + [sym_enum_declaration] = STATE(504), + [sym_class_declaration] = STATE(504), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(504), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(504), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [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(1053), + [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(1079), + [sym_switch_statement] = STATE(504), + [sym_compound_statement] = STATE(504), + [sym_named_label_statement] = STATE(504), + [sym_expression_statement] = STATE(504), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(453), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(455), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(457), + }, + [24] = { + [sym_empty_statement] = STATE(21), + [sym_function_static_declaration] = STATE(21), + [sym_global_declaration] = STATE(21), + [sym_namespace_definition] = STATE(21), + [sym_namespace_use_declaration] = STATE(21), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(21), + [sym_interface_declaration] = STATE(21), + [sym_enum_declaration] = STATE(21), + [sym_class_declaration] = STATE(21), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(21), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(21), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(21), + [sym_unset_statement] = STATE(21), + [sym_declare_statement] = STATE(21), + [sym_try_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_foreach_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(21), + [sym_compound_statement] = STATE(21), + [sym_named_label_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(21), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(459), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [25] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(459), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [26] = { + [sym_empty_statement] = STATE(1918), + [sym_function_static_declaration] = STATE(1918), + [sym_global_declaration] = STATE(1918), + [sym_namespace_definition] = STATE(1918), + [sym_namespace_use_declaration] = STATE(1918), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1918), + [sym_interface_declaration] = STATE(1918), + [sym_enum_declaration] = STATE(1918), + [sym_class_declaration] = STATE(1918), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1918), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1918), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1918), + [sym_unset_statement] = STATE(1918), + [sym_declare_statement] = STATE(1918), + [sym_try_statement] = STATE(1918), + [sym_goto_statement] = STATE(1918), + [sym_continue_statement] = STATE(1918), + [sym_break_statement] = STATE(1918), + [sym_return_statement] = STATE(1918), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1918), + [sym_do_statement] = STATE(1918), + [sym_for_statement] = STATE(1918), + [sym_foreach_statement] = STATE(1918), + [sym_if_statement] = STATE(1918), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1918), + [sym_compound_statement] = STATE(1918), + [sym_named_label_statement] = STATE(1918), + [sym_expression_statement] = STATE(1918), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(461), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(463), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(465), + }, + [27] = { + [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(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(417), + [sym_interface_declaration] = STATE(417), + [sym_enum_declaration] = STATE(417), + [sym_class_declaration] = STATE(417), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(417), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(417), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [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(1053), + [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_colon_block] = STATE(1586), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(417), + [sym_compound_statement] = STATE(417), + [sym_named_label_statement] = STATE(417), + [sym_expression_statement] = STATE(417), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(467), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [28] = { + [sym_empty_statement] = STATE(71), + [sym_function_static_declaration] = STATE(71), + [sym_global_declaration] = STATE(71), + [sym_namespace_definition] = STATE(71), + [sym_namespace_use_declaration] = STATE(71), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(71), + [sym_interface_declaration] = STATE(71), + [sym_enum_declaration] = STATE(71), + [sym_class_declaration] = STATE(71), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(71), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(71), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(71), + [sym_unset_statement] = STATE(71), + [sym_declare_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_goto_statement] = STATE(71), + [sym_continue_statement] = STATE(71), + [sym_break_statement] = STATE(71), + [sym_return_statement] = STATE(71), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(71), + [sym_do_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_foreach_statement] = STATE(71), + [sym_if_statement] = STATE(71), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(71), + [sym_compound_statement] = STATE(71), + [sym_named_label_statement] = STATE(71), + [sym_expression_statement] = STATE(71), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(71), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(469), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [29] = { + [sym_empty_statement] = STATE(56), + [sym_function_static_declaration] = STATE(56), + [sym_global_declaration] = STATE(56), + [sym_namespace_definition] = STATE(56), + [sym_namespace_use_declaration] = STATE(56), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(56), + [sym_interface_declaration] = STATE(56), + [sym_enum_declaration] = STATE(56), + [sym_class_declaration] = STATE(56), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(56), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(56), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(56), + [sym_unset_statement] = STATE(56), + [sym_declare_statement] = STATE(56), + [sym_try_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_foreach_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(56), + [sym_compound_statement] = STATE(56), + [sym_named_label_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(56), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(471), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [30] = { + [sym_empty_statement] = STATE(478), + [sym_function_static_declaration] = STATE(478), + [sym_global_declaration] = STATE(478), + [sym_namespace_definition] = STATE(478), + [sym_namespace_use_declaration] = STATE(478), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(478), + [sym_interface_declaration] = STATE(478), + [sym_enum_declaration] = STATE(478), + [sym_class_declaration] = STATE(478), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(478), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(478), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(478), + [sym_unset_statement] = STATE(478), + [sym_declare_statement] = STATE(478), + [sym_try_statement] = STATE(478), + [sym_goto_statement] = STATE(478), + [sym_continue_statement] = STATE(478), + [sym_break_statement] = STATE(478), + [sym_return_statement] = STATE(478), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(478), + [sym_do_statement] = STATE(478), + [sym_for_statement] = STATE(478), + [sym_foreach_statement] = STATE(478), + [sym_if_statement] = STATE(478), + [sym_colon_block] = STATE(2343), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(478), + [sym_compound_statement] = STATE(478), + [sym_named_label_statement] = STATE(478), + [sym_expression_statement] = STATE(478), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [31] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(471), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [32] = { + [sym_empty_statement] = STATE(1883), + [sym_function_static_declaration] = STATE(1883), + [sym_global_declaration] = STATE(1883), + [sym_namespace_definition] = STATE(1883), + [sym_namespace_use_declaration] = STATE(1883), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1883), + [sym_interface_declaration] = STATE(1883), + [sym_enum_declaration] = STATE(1883), + [sym_class_declaration] = STATE(1883), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1883), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1883), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1883), + [sym_unset_statement] = STATE(1883), + [sym_declare_statement] = STATE(1883), + [sym_try_statement] = STATE(1883), + [sym_goto_statement] = STATE(1883), + [sym_continue_statement] = STATE(1883), + [sym_break_statement] = STATE(1883), + [sym_return_statement] = STATE(1883), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1883), + [sym_do_statement] = STATE(1883), + [sym_for_statement] = STATE(1883), + [sym_foreach_statement] = STATE(1883), + [sym_if_statement] = STATE(1883), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1883), + [sym_compound_statement] = STATE(1883), + [sym_named_label_statement] = STATE(1883), + [sym_expression_statement] = STATE(1883), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(473), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(475), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(477), + }, + [33] = { + [sym_empty_statement] = STATE(1857), + [sym_function_static_declaration] = STATE(1857), + [sym_global_declaration] = STATE(1857), + [sym_namespace_definition] = STATE(1857), + [sym_namespace_use_declaration] = STATE(1857), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1857), + [sym_interface_declaration] = STATE(1857), + [sym_enum_declaration] = STATE(1857), + [sym_class_declaration] = STATE(1857), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1857), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1857), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1857), + [sym_unset_statement] = STATE(1857), + [sym_declare_statement] = STATE(1857), + [sym_try_statement] = STATE(1857), + [sym_goto_statement] = STATE(1857), + [sym_continue_statement] = STATE(1857), + [sym_break_statement] = STATE(1857), + [sym_return_statement] = STATE(1857), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1857), + [sym_do_statement] = STATE(1857), + [sym_for_statement] = STATE(1857), + [sym_foreach_statement] = STATE(1857), + [sym_if_statement] = STATE(1857), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1857), + [sym_compound_statement] = STATE(1857), + [sym_named_label_statement] = STATE(1857), + [sym_expression_statement] = STATE(1857), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(479), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(481), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(483), + }, + [34] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(485), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [35] = { + [sym_empty_statement] = STATE(525), + [sym_function_static_declaration] = STATE(525), + [sym_global_declaration] = STATE(525), + [sym_namespace_definition] = STATE(525), + [sym_namespace_use_declaration] = STATE(525), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(525), + [sym_interface_declaration] = STATE(525), + [sym_enum_declaration] = STATE(525), + [sym_class_declaration] = STATE(525), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(525), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(525), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(525), + [sym_unset_statement] = STATE(525), + [sym_declare_statement] = STATE(525), + [sym_try_statement] = STATE(525), + [sym_goto_statement] = STATE(525), + [sym_continue_statement] = STATE(525), + [sym_break_statement] = STATE(525), + [sym_return_statement] = STATE(525), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(525), + [sym_do_statement] = STATE(525), + [sym_for_statement] = STATE(525), + [sym_foreach_statement] = STATE(525), + [sym_if_statement] = STATE(525), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(525), + [sym_compound_statement] = STATE(525), + [sym_named_label_statement] = STATE(525), + [sym_expression_statement] = STATE(525), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(487), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(489), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(491), + }, + [36] = { + [sym_empty_statement] = STATE(70), + [sym_function_static_declaration] = STATE(70), + [sym_global_declaration] = STATE(70), + [sym_namespace_definition] = STATE(70), + [sym_namespace_use_declaration] = STATE(70), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(70), + [sym_interface_declaration] = STATE(70), + [sym_enum_declaration] = STATE(70), + [sym_class_declaration] = STATE(70), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(70), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(70), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(70), + [sym_unset_statement] = STATE(70), + [sym_declare_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_foreach_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(70), + [sym_compound_statement] = STATE(70), + [sym_named_label_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(70), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(493), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [37] = { + [sym_empty_statement] = STATE(1837), + [sym_function_static_declaration] = STATE(1837), + [sym_global_declaration] = STATE(1837), + [sym_namespace_definition] = STATE(1837), + [sym_namespace_use_declaration] = STATE(1837), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1837), + [sym_interface_declaration] = STATE(1837), + [sym_enum_declaration] = STATE(1837), + [sym_class_declaration] = STATE(1837), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1837), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1837), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1837), + [sym_unset_statement] = STATE(1837), + [sym_declare_statement] = STATE(1837), + [sym_try_statement] = STATE(1837), + [sym_goto_statement] = STATE(1837), + [sym_continue_statement] = STATE(1837), + [sym_break_statement] = STATE(1837), + [sym_return_statement] = STATE(1837), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1837), + [sym_do_statement] = STATE(1837), + [sym_for_statement] = STATE(1837), + [sym_foreach_statement] = STATE(1837), + [sym_if_statement] = STATE(1837), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1837), + [sym_compound_statement] = STATE(1837), + [sym_named_label_statement] = STATE(1837), + [sym_expression_statement] = STATE(1837), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(495), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(497), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(499), + }, + [38] = { + [sym_empty_statement] = STATE(1833), + [sym_function_static_declaration] = STATE(1833), + [sym_global_declaration] = STATE(1833), + [sym_namespace_definition] = STATE(1833), + [sym_namespace_use_declaration] = STATE(1833), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1833), + [sym_interface_declaration] = STATE(1833), + [sym_enum_declaration] = STATE(1833), + [sym_class_declaration] = STATE(1833), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1833), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1833), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1833), + [sym_unset_statement] = STATE(1833), + [sym_declare_statement] = STATE(1833), + [sym_try_statement] = STATE(1833), + [sym_goto_statement] = STATE(1833), + [sym_continue_statement] = STATE(1833), + [sym_break_statement] = STATE(1833), + [sym_return_statement] = STATE(1833), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1833), + [sym_do_statement] = STATE(1833), + [sym_for_statement] = STATE(1833), + [sym_foreach_statement] = STATE(1833), + [sym_if_statement] = STATE(1833), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1833), + [sym_compound_statement] = STATE(1833), + [sym_named_label_statement] = STATE(1833), + [sym_expression_statement] = STATE(1833), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(503), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(505), + }, + [39] = { + [sym_empty_statement] = STATE(1578), + [sym_function_static_declaration] = STATE(1578), + [sym_global_declaration] = STATE(1578), + [sym_namespace_definition] = STATE(1578), + [sym_namespace_use_declaration] = STATE(1578), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1578), + [sym_interface_declaration] = STATE(1578), + [sym_enum_declaration] = STATE(1578), + [sym_class_declaration] = STATE(1578), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1578), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1578), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1578), + [sym_unset_statement] = STATE(1578), + [sym_declare_statement] = STATE(1578), + [sym_try_statement] = STATE(1578), + [sym_goto_statement] = STATE(1578), + [sym_continue_statement] = STATE(1578), + [sym_break_statement] = STATE(1578), + [sym_return_statement] = STATE(1578), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1578), + [sym_do_statement] = STATE(1578), + [sym_for_statement] = STATE(1578), + [sym_foreach_statement] = STATE(1578), + [sym_if_statement] = STATE(1578), + [sym_colon_block] = STATE(1525), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1578), + [sym_compound_statement] = STATE(1578), + [sym_named_label_statement] = STATE(1578), + [sym_expression_statement] = STATE(1578), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(467), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [40] = { + [sym_empty_statement] = STATE(525), + [sym_function_static_declaration] = STATE(525), + [sym_global_declaration] = STATE(525), + [sym_namespace_definition] = STATE(525), + [sym_namespace_use_declaration] = STATE(525), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(525), + [sym_interface_declaration] = STATE(525), + [sym_enum_declaration] = STATE(525), + [sym_class_declaration] = STATE(525), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(525), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(525), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(525), + [sym_unset_statement] = STATE(525), + [sym_declare_statement] = STATE(525), + [sym_try_statement] = STATE(525), + [sym_goto_statement] = STATE(525), + [sym_continue_statement] = STATE(525), + [sym_break_statement] = STATE(525), + [sym_return_statement] = STATE(525), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(525), + [sym_do_statement] = STATE(525), + [sym_for_statement] = STATE(525), + [sym_foreach_statement] = STATE(525), + [sym_if_statement] = STATE(525), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(525), + [sym_compound_statement] = STATE(525), + [sym_named_label_statement] = STATE(525), + [sym_expression_statement] = STATE(525), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(487), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(489), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(491), + }, + [41] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(509), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [42] = { + [sym_empty_statement] = STATE(52), + [sym_function_static_declaration] = STATE(52), + [sym_global_declaration] = STATE(52), + [sym_namespace_definition] = STATE(52), + [sym_namespace_use_declaration] = STATE(52), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(52), + [sym_interface_declaration] = STATE(52), + [sym_enum_declaration] = STATE(52), + [sym_class_declaration] = STATE(52), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(52), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(52), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(52), + [sym_unset_statement] = STATE(52), + [sym_declare_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_foreach_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(52), + [sym_compound_statement] = STATE(52), + [sym_named_label_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(52), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(509), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [43] = { + [sym_empty_statement] = STATE(478), + [sym_function_static_declaration] = STATE(478), + [sym_global_declaration] = STATE(478), + [sym_namespace_definition] = STATE(478), + [sym_namespace_use_declaration] = STATE(478), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(478), + [sym_interface_declaration] = STATE(478), + [sym_enum_declaration] = STATE(478), + [sym_class_declaration] = STATE(478), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(478), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(478), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(478), + [sym_unset_statement] = STATE(478), + [sym_declare_statement] = STATE(478), + [sym_try_statement] = STATE(478), + [sym_goto_statement] = STATE(478), + [sym_continue_statement] = STATE(478), + [sym_break_statement] = STATE(478), + [sym_return_statement] = STATE(478), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(478), + [sym_do_statement] = STATE(478), + [sym_for_statement] = STATE(478), + [sym_foreach_statement] = STATE(478), + [sym_if_statement] = STATE(478), + [sym_colon_block] = STATE(2343), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(478), + [sym_compound_statement] = STATE(478), + [sym_named_label_statement] = STATE(478), + [sym_expression_statement] = STATE(478), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [44] = { + [sym_empty_statement] = STATE(34), + [sym_function_static_declaration] = STATE(34), + [sym_global_declaration] = STATE(34), + [sym_namespace_definition] = STATE(34), + [sym_namespace_use_declaration] = STATE(34), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(34), + [sym_interface_declaration] = STATE(34), + [sym_enum_declaration] = STATE(34), + [sym_class_declaration] = STATE(34), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(34), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(34), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(34), + [sym_unset_statement] = STATE(34), + [sym_declare_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_foreach_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(34), + [sym_compound_statement] = STATE(34), + [sym_named_label_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(34), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(511), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [45] = { + [sym_empty_statement] = STATE(48), + [sym_function_static_declaration] = STATE(48), + [sym_global_declaration] = STATE(48), + [sym_namespace_definition] = STATE(48), + [sym_namespace_use_declaration] = STATE(48), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(48), + [sym_interface_declaration] = STATE(48), + [sym_enum_declaration] = STATE(48), + [sym_class_declaration] = STATE(48), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(48), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(48), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(48), + [sym_unset_statement] = STATE(48), + [sym_declare_statement] = STATE(48), + [sym_try_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_foreach_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(48), + [sym_compound_statement] = STATE(48), + [sym_named_label_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(48), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [aux_sym_declare_statement_token2] = ACTIONS(513), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [46] = { + [sym_empty_statement] = STATE(469), + [sym_function_static_declaration] = STATE(469), + [sym_global_declaration] = STATE(469), + [sym_namespace_definition] = STATE(469), + [sym_namespace_use_declaration] = STATE(469), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(469), + [sym_interface_declaration] = STATE(469), + [sym_enum_declaration] = STATE(469), + [sym_class_declaration] = STATE(469), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(469), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(469), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(469), + [sym_unset_statement] = STATE(469), + [sym_declare_statement] = STATE(469), + [sym_try_statement] = STATE(469), + [sym_goto_statement] = STATE(469), + [sym_continue_statement] = STATE(469), + [sym_break_statement] = STATE(469), + [sym_return_statement] = STATE(469), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(469), + [sym_do_statement] = STATE(469), + [sym_for_statement] = STATE(469), + [sym_foreach_statement] = STATE(469), + [sym_if_statement] = STATE(469), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(469), + [sym_compound_statement] = STATE(469), + [sym_named_label_statement] = STATE(469), + [sym_expression_statement] = STATE(469), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(447), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(449), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(451), + }, + [47] = { + [sym_empty_statement] = STATE(25), + [sym_function_static_declaration] = STATE(25), + [sym_global_declaration] = STATE(25), + [sym_namespace_definition] = STATE(25), + [sym_namespace_use_declaration] = STATE(25), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(25), + [sym_interface_declaration] = STATE(25), + [sym_enum_declaration] = STATE(25), + [sym_class_declaration] = STATE(25), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(25), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(25), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(25), + [sym_unset_statement] = STATE(25), + [sym_declare_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_foreach_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(25), + [sym_compound_statement] = STATE(25), + [sym_named_label_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(25), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(515), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [48] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [aux_sym_declare_statement_token2] = ACTIONS(517), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [49] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(519), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [50] = { + [sym_empty_statement] = STATE(1990), + [sym_function_static_declaration] = STATE(1990), + [sym_global_declaration] = STATE(1990), + [sym_namespace_definition] = STATE(1990), + [sym_namespace_use_declaration] = STATE(1990), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1990), + [sym_interface_declaration] = STATE(1990), + [sym_enum_declaration] = STATE(1990), + [sym_class_declaration] = STATE(1990), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1990), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1990), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1990), + [sym_unset_statement] = STATE(1990), + [sym_declare_statement] = STATE(1990), + [sym_try_statement] = STATE(1990), + [sym_goto_statement] = STATE(1990), + [sym_continue_statement] = STATE(1990), + [sym_break_statement] = STATE(1990), + [sym_return_statement] = STATE(1990), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1990), + [sym_do_statement] = STATE(1990), + [sym_for_statement] = STATE(1990), + [sym_foreach_statement] = STATE(1990), + [sym_if_statement] = STATE(1990), + [sym_colon_block] = STATE(2422), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1990), + [sym_compound_statement] = STATE(1990), + [sym_named_label_statement] = STATE(1990), + [sym_expression_statement] = STATE(1990), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [51] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [aux_sym_declare_statement_token2] = ACTIONS(521), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [52] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(523), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [53] = { + [sym_empty_statement] = STATE(41), + [sym_function_static_declaration] = STATE(41), + [sym_global_declaration] = STATE(41), + [sym_namespace_definition] = STATE(41), + [sym_namespace_use_declaration] = STATE(41), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(41), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(41), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_declare_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_named_label_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(41), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(445), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [54] = { + [sym_empty_statement] = STATE(49), + [sym_function_static_declaration] = STATE(49), + [sym_global_declaration] = STATE(49), + [sym_namespace_definition] = STATE(49), + [sym_namespace_use_declaration] = STATE(49), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(49), + [sym_interface_declaration] = STATE(49), + [sym_enum_declaration] = STATE(49), + [sym_class_declaration] = STATE(49), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(49), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(49), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(49), + [sym_unset_statement] = STATE(49), + [sym_declare_statement] = STATE(49), + [sym_try_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_foreach_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(49), + [sym_compound_statement] = STATE(49), + [sym_named_label_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(49), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(525), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [55] = { + [sym_empty_statement] = STATE(31), + [sym_function_static_declaration] = STATE(31), + [sym_global_declaration] = STATE(31), + [sym_namespace_definition] = STATE(31), + [sym_namespace_use_declaration] = STATE(31), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(31), + [sym_interface_declaration] = STATE(31), + [sym_enum_declaration] = STATE(31), + [sym_class_declaration] = STATE(31), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(31), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(31), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(31), + [sym_unset_statement] = STATE(31), + [sym_declare_statement] = STATE(31), + [sym_try_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_foreach_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(31), + [sym_compound_statement] = STATE(31), + [sym_named_label_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(31), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(527), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [56] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(529), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [57] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(531), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [58] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(533), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [59] = { + [sym_empty_statement] = STATE(420), + [sym_function_static_declaration] = STATE(420), + [sym_global_declaration] = STATE(420), + [sym_namespace_definition] = STATE(420), + [sym_namespace_use_declaration] = STATE(420), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(420), + [sym_interface_declaration] = STATE(420), + [sym_enum_declaration] = STATE(420), + [sym_class_declaration] = STATE(420), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(420), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(420), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(420), + [sym_unset_statement] = STATE(420), + [sym_declare_statement] = STATE(420), + [sym_try_statement] = STATE(420), + [sym_goto_statement] = STATE(420), + [sym_continue_statement] = STATE(420), + [sym_break_statement] = STATE(420), + [sym_return_statement] = STATE(420), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(420), + [sym_do_statement] = STATE(420), + [sym_for_statement] = STATE(420), + [sym_foreach_statement] = STATE(420), + [sym_if_statement] = STATE(420), + [sym_colon_block] = STATE(1586), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(420), + [sym_compound_statement] = STATE(420), + [sym_named_label_statement] = STATE(420), + [sym_expression_statement] = STATE(420), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(467), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [60] = { + [sym_empty_statement] = STATE(57), + [sym_function_static_declaration] = STATE(57), + [sym_global_declaration] = STATE(57), + [sym_namespace_definition] = STATE(57), + [sym_namespace_use_declaration] = STATE(57), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(57), + [sym_interface_declaration] = STATE(57), + [sym_enum_declaration] = STATE(57), + [sym_class_declaration] = STATE(57), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(57), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(57), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(57), + [sym_unset_statement] = STATE(57), + [sym_declare_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_foreach_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(57), + [sym_compound_statement] = STATE(57), + [sym_named_label_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(57), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(535), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [61] = { + [sym_empty_statement] = STATE(1833), + [sym_function_static_declaration] = STATE(1833), + [sym_global_declaration] = STATE(1833), + [sym_namespace_definition] = STATE(1833), + [sym_namespace_use_declaration] = STATE(1833), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1833), + [sym_interface_declaration] = STATE(1833), + [sym_enum_declaration] = STATE(1833), + [sym_class_declaration] = STATE(1833), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1833), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1833), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1833), + [sym_unset_statement] = STATE(1833), + [sym_declare_statement] = STATE(1833), + [sym_try_statement] = STATE(1833), + [sym_goto_statement] = STATE(1833), + [sym_continue_statement] = STATE(1833), + [sym_break_statement] = STATE(1833), + [sym_return_statement] = STATE(1833), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1833), + [sym_do_statement] = STATE(1833), + [sym_for_statement] = STATE(1833), + [sym_foreach_statement] = STATE(1833), + [sym_if_statement] = STATE(1833), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1833), + [sym_compound_statement] = STATE(1833), + [sym_named_label_statement] = STATE(1833), + [sym_expression_statement] = STATE(1833), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(503), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(505), + }, + [62] = { + [sym_empty_statement] = STATE(1837), + [sym_function_static_declaration] = STATE(1837), + [sym_global_declaration] = STATE(1837), + [sym_namespace_definition] = STATE(1837), + [sym_namespace_use_declaration] = STATE(1837), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1837), + [sym_interface_declaration] = STATE(1837), + [sym_enum_declaration] = STATE(1837), + [sym_class_declaration] = STATE(1837), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1837), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1837), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1837), + [sym_unset_statement] = STATE(1837), + [sym_declare_statement] = STATE(1837), + [sym_try_statement] = STATE(1837), + [sym_goto_statement] = STATE(1837), + [sym_continue_statement] = STATE(1837), + [sym_break_statement] = STATE(1837), + [sym_return_statement] = STATE(1837), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1837), + [sym_do_statement] = STATE(1837), + [sym_for_statement] = STATE(1837), + [sym_foreach_statement] = STATE(1837), + [sym_if_statement] = STATE(1837), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1837), + [sym_compound_statement] = STATE(1837), + [sym_named_label_statement] = STATE(1837), + [sym_expression_statement] = STATE(1837), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(495), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(497), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(499), + }, + [63] = { + [sym_empty_statement] = STATE(1990), + [sym_function_static_declaration] = STATE(1990), + [sym_global_declaration] = STATE(1990), + [sym_namespace_definition] = STATE(1990), + [sym_namespace_use_declaration] = STATE(1990), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1990), + [sym_interface_declaration] = STATE(1990), + [sym_enum_declaration] = STATE(1990), + [sym_class_declaration] = STATE(1990), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1990), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1990), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1990), + [sym_unset_statement] = STATE(1990), + [sym_declare_statement] = STATE(1990), + [sym_try_statement] = STATE(1990), + [sym_goto_statement] = STATE(1990), + [sym_continue_statement] = STATE(1990), + [sym_break_statement] = STATE(1990), + [sym_return_statement] = STATE(1990), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1990), + [sym_do_statement] = STATE(1990), + [sym_for_statement] = STATE(1990), + [sym_foreach_statement] = STATE(1990), + [sym_if_statement] = STATE(1990), + [sym_colon_block] = STATE(2422), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1990), + [sym_compound_statement] = STATE(1990), + [sym_named_label_statement] = STATE(1990), + [sym_expression_statement] = STATE(1990), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [64] = { + [sym_empty_statement] = STATE(1857), + [sym_function_static_declaration] = STATE(1857), + [sym_global_declaration] = STATE(1857), + [sym_namespace_definition] = STATE(1857), + [sym_namespace_use_declaration] = STATE(1857), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1857), + [sym_interface_declaration] = STATE(1857), + [sym_enum_declaration] = STATE(1857), + [sym_class_declaration] = STATE(1857), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1857), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1857), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1857), + [sym_unset_statement] = STATE(1857), + [sym_declare_statement] = STATE(1857), + [sym_try_statement] = STATE(1857), + [sym_goto_statement] = STATE(1857), + [sym_continue_statement] = STATE(1857), + [sym_break_statement] = STATE(1857), + [sym_return_statement] = STATE(1857), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1857), + [sym_do_statement] = STATE(1857), + [sym_for_statement] = STATE(1857), + [sym_foreach_statement] = STATE(1857), + [sym_if_statement] = STATE(1857), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1857), + [sym_compound_statement] = STATE(1857), + [sym_named_label_statement] = STATE(1857), + [sym_expression_statement] = STATE(1857), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(479), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(481), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(483), + }, + [65] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(527), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [66] = { + [sym_empty_statement] = STATE(1883), + [sym_function_static_declaration] = STATE(1883), + [sym_global_declaration] = STATE(1883), + [sym_namespace_definition] = STATE(1883), + [sym_namespace_use_declaration] = STATE(1883), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1883), + [sym_interface_declaration] = STATE(1883), + [sym_enum_declaration] = STATE(1883), + [sym_class_declaration] = STATE(1883), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1883), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1883), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1883), + [sym_unset_statement] = STATE(1883), + [sym_declare_statement] = STATE(1883), + [sym_try_statement] = STATE(1883), + [sym_goto_statement] = STATE(1883), + [sym_continue_statement] = STATE(1883), + [sym_break_statement] = STATE(1883), + [sym_return_statement] = STATE(1883), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1883), + [sym_do_statement] = STATE(1883), + [sym_for_statement] = STATE(1883), + [sym_foreach_statement] = STATE(1883), + [sym_if_statement] = STATE(1883), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1883), + [sym_compound_statement] = STATE(1883), + [sym_named_label_statement] = STATE(1883), + [sym_expression_statement] = STATE(1883), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(473), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(475), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(477), + }, + [67] = { + [sym_empty_statement] = STATE(476), + [sym_function_static_declaration] = STATE(476), + [sym_global_declaration] = STATE(476), + [sym_namespace_definition] = STATE(476), + [sym_namespace_use_declaration] = STATE(476), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(476), + [sym_interface_declaration] = STATE(476), + [sym_enum_declaration] = STATE(476), + [sym_class_declaration] = STATE(476), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(476), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(476), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(476), + [sym_unset_statement] = STATE(476), + [sym_declare_statement] = STATE(476), + [sym_try_statement] = STATE(476), + [sym_goto_statement] = STATE(476), + [sym_continue_statement] = STATE(476), + [sym_break_statement] = STATE(476), + [sym_return_statement] = STATE(476), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(476), + [sym_do_statement] = STATE(476), + [sym_for_statement] = STATE(476), + [sym_foreach_statement] = STATE(476), + [sym_if_statement] = STATE(476), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(476), + [sym_compound_statement] = STATE(476), + [sym_named_label_statement] = STATE(476), + [sym_expression_statement] = STATE(476), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(439), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(441), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(443), + }, + [68] = { + [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(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(504), + [sym_interface_declaration] = STATE(504), + [sym_enum_declaration] = STATE(504), + [sym_class_declaration] = STATE(504), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(504), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(504), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [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(1053), + [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(1079), + [sym_switch_statement] = STATE(504), + [sym_compound_statement] = STATE(504), + [sym_named_label_statement] = STATE(504), + [sym_expression_statement] = STATE(504), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(453), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(455), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(457), + }, + [69] = { + [sym_empty_statement] = STATE(1533), + [sym_function_static_declaration] = STATE(1533), + [sym_global_declaration] = STATE(1533), + [sym_namespace_definition] = STATE(1533), + [sym_namespace_use_declaration] = STATE(1533), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1533), + [sym_interface_declaration] = STATE(1533), + [sym_enum_declaration] = STATE(1533), + [sym_class_declaration] = STATE(1533), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1533), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1533), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1533), + [sym_unset_statement] = STATE(1533), + [sym_declare_statement] = STATE(1533), + [sym_try_statement] = STATE(1533), + [sym_goto_statement] = STATE(1533), + [sym_continue_statement] = STATE(1533), + [sym_break_statement] = STATE(1533), + [sym_return_statement] = STATE(1533), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1533), + [sym_do_statement] = STATE(1533), + [sym_for_statement] = STATE(1533), + [sym_foreach_statement] = STATE(1533), + [sym_if_statement] = STATE(1533), + [sym_colon_block] = STATE(1525), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1533), + [sym_compound_statement] = STATE(1533), + [sym_named_label_statement] = STATE(1533), + [sym_expression_statement] = STATE(1533), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(467), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [70] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(537), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [71] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(539), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [72] = { + [sym_empty_statement] = STATE(58), + [sym_function_static_declaration] = STATE(58), + [sym_global_declaration] = STATE(58), + [sym_namespace_definition] = STATE(58), + [sym_namespace_use_declaration] = STATE(58), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(58), + [sym_interface_declaration] = STATE(58), + [sym_enum_declaration] = STATE(58), + [sym_class_declaration] = STATE(58), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(58), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(58), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(58), + [sym_unset_statement] = STATE(58), + [sym_declare_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_foreach_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(58), + [sym_compound_statement] = STATE(58), + [sym_named_label_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(58), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(541), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [73] = { + [sym_empty_statement] = STATE(65), + [sym_function_static_declaration] = STATE(65), + [sym_global_declaration] = STATE(65), + [sym_namespace_definition] = STATE(65), + [sym_namespace_use_declaration] = STATE(65), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(65), + [sym_interface_declaration] = STATE(65), + [sym_enum_declaration] = STATE(65), + [sym_class_declaration] = STATE(65), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(65), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(65), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(65), + [sym_unset_statement] = STATE(65), + [sym_declare_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_foreach_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(65), + [sym_compound_statement] = STATE(65), + [sym_named_label_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(65), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(539), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [74] = { + [sym_empty_statement] = STATE(527), + [sym_function_static_declaration] = STATE(527), + [sym_global_declaration] = STATE(527), + [sym_namespace_definition] = STATE(527), + [sym_namespace_use_declaration] = STATE(527), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(527), + [sym_interface_declaration] = STATE(527), + [sym_enum_declaration] = STATE(527), + [sym_class_declaration] = STATE(527), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(527), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(527), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(527), + [sym_unset_statement] = STATE(527), + [sym_declare_statement] = STATE(527), + [sym_try_statement] = STATE(527), + [sym_goto_statement] = STATE(527), + [sym_continue_statement] = STATE(527), + [sym_break_statement] = STATE(527), + [sym_return_statement] = STATE(527), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(527), + [sym_do_statement] = STATE(527), + [sym_for_statement] = STATE(527), + [sym_foreach_statement] = STATE(527), + [sym_if_statement] = STATE(527), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(527), + [sym_compound_statement] = STATE(527), + [sym_named_label_statement] = STATE(527), + [sym_expression_statement] = STATE(527), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(433), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(435), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(437), + }, + [75] = { + [sym_empty_statement] = STATE(1918), + [sym_function_static_declaration] = STATE(1918), + [sym_global_declaration] = STATE(1918), + [sym_namespace_definition] = STATE(1918), + [sym_namespace_use_declaration] = STATE(1918), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1918), + [sym_interface_declaration] = STATE(1918), + [sym_enum_declaration] = STATE(1918), + [sym_class_declaration] = STATE(1918), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1918), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1918), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1918), + [sym_unset_statement] = STATE(1918), + [sym_declare_statement] = STATE(1918), + [sym_try_statement] = STATE(1918), + [sym_goto_statement] = STATE(1918), + [sym_continue_statement] = STATE(1918), + [sym_break_statement] = STATE(1918), + [sym_return_statement] = STATE(1918), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1918), + [sym_do_statement] = STATE(1918), + [sym_for_statement] = STATE(1918), + [sym_foreach_statement] = STATE(1918), + [sym_if_statement] = STATE(1918), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1918), + [sym_compound_statement] = STATE(1918), + [sym_named_label_statement] = STATE(1918), + [sym_expression_statement] = STATE(1918), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(461), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(463), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(465), + }, + [76] = { + [sym_empty_statement] = STATE(51), + [sym_function_static_declaration] = STATE(51), + [sym_global_declaration] = STATE(51), + [sym_namespace_definition] = STATE(51), + [sym_namespace_use_declaration] = STATE(51), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(51), + [sym_interface_declaration] = STATE(51), + [sym_enum_declaration] = STATE(51), + [sym_class_declaration] = STATE(51), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(51), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(51), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(51), + [sym_unset_statement] = STATE(51), + [sym_declare_statement] = STATE(51), + [sym_try_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_foreach_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(51), + [sym_compound_statement] = STATE(51), + [sym_named_label_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_php_repeat1] = STATE(51), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [aux_sym_declare_statement_token2] = ACTIONS(543), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [77] = { + [sym_empty_statement] = STATE(500), + [sym_function_static_declaration] = STATE(500), + [sym_global_declaration] = STATE(500), + [sym_namespace_definition] = STATE(500), + [sym_namespace_use_declaration] = STATE(500), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(500), + [sym_interface_declaration] = STATE(500), + [sym_enum_declaration] = STATE(500), + [sym_class_declaration] = STATE(500), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(500), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(500), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(500), + [sym_unset_statement] = STATE(500), + [sym_declare_statement] = STATE(500), + [sym_try_statement] = STATE(500), + [sym_goto_statement] = STATE(500), + [sym_continue_statement] = STATE(500), + [sym_break_statement] = STATE(500), + [sym_return_statement] = STATE(500), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(500), + [sym_do_statement] = STATE(500), + [sym_for_statement] = STATE(500), + [sym_foreach_statement] = STATE(500), + [sym_if_statement] = STATE(500), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(500), + [sym_compound_statement] = STATE(500), + [sym_named_label_statement] = STATE(500), + [sym_expression_statement] = STATE(500), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [78] = { + [sym_empty_statement] = STATE(500), + [sym_function_static_declaration] = STATE(500), + [sym_global_declaration] = STATE(500), + [sym_namespace_definition] = STATE(500), + [sym_namespace_use_declaration] = STATE(500), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(500), + [sym_interface_declaration] = STATE(500), + [sym_enum_declaration] = STATE(500), + [sym_class_declaration] = STATE(500), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(500), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(500), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(500), + [sym_unset_statement] = STATE(500), + [sym_declare_statement] = STATE(500), + [sym_try_statement] = STATE(500), + [sym_goto_statement] = STATE(500), + [sym_continue_statement] = STATE(500), + [sym_break_statement] = STATE(500), + [sym_return_statement] = STATE(500), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(500), + [sym_do_statement] = STATE(500), + [sym_for_statement] = STATE(500), + [sym_foreach_statement] = STATE(500), + [sym_if_statement] = STATE(500), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(500), + [sym_compound_statement] = STATE(500), + [sym_named_label_statement] = STATE(500), + [sym_expression_statement] = STATE(500), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [79] = { + [sym_empty_statement] = STATE(1880), + [sym_function_static_declaration] = STATE(1880), + [sym_global_declaration] = STATE(1880), + [sym_namespace_definition] = STATE(1880), + [sym_namespace_use_declaration] = STATE(1880), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1880), + [sym_interface_declaration] = STATE(1880), + [sym_enum_declaration] = STATE(1880), + [sym_class_declaration] = STATE(1880), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1880), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1880), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1880), + [sym_unset_statement] = STATE(1880), + [sym_declare_statement] = STATE(1880), + [sym_try_statement] = STATE(1880), + [sym_goto_statement] = STATE(1880), + [sym_continue_statement] = STATE(1880), + [sym_break_statement] = STATE(1880), + [sym_return_statement] = STATE(1880), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1880), + [sym_do_statement] = STATE(1880), + [sym_for_statement] = STATE(1880), + [sym_foreach_statement] = STATE(1880), + [sym_if_statement] = STATE(1880), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1880), + [sym_compound_statement] = STATE(1880), + [sym_named_label_statement] = STATE(1880), + [sym_expression_statement] = STATE(1880), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [80] = { + [sym_empty_statement] = STATE(2428), + [sym_function_static_declaration] = STATE(2428), + [sym_global_declaration] = STATE(2428), + [sym_namespace_definition] = STATE(2428), + [sym_namespace_use_declaration] = STATE(2428), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2428), + [sym_interface_declaration] = STATE(2428), + [sym_enum_declaration] = STATE(2428), + [sym_class_declaration] = STATE(2428), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(2428), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(2428), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2428), + [sym_unset_statement] = STATE(2428), + [sym_declare_statement] = STATE(2428), + [sym_try_statement] = STATE(2428), + [sym_goto_statement] = STATE(2428), + [sym_continue_statement] = STATE(2428), + [sym_break_statement] = STATE(2428), + [sym_return_statement] = STATE(2428), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2428), + [sym_do_statement] = STATE(2428), + [sym_for_statement] = STATE(2428), + [sym_foreach_statement] = STATE(2428), + [sym_if_statement] = STATE(2428), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2428), + [sym_compound_statement] = STATE(2428), + [sym_named_label_statement] = STATE(2428), + [sym_expression_statement] = STATE(2428), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [81] = { + [sym_empty_statement] = STATE(1907), + [sym_function_static_declaration] = STATE(1907), + [sym_global_declaration] = STATE(1907), + [sym_namespace_definition] = STATE(1907), + [sym_namespace_use_declaration] = STATE(1907), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1907), + [sym_interface_declaration] = STATE(1907), + [sym_enum_declaration] = STATE(1907), + [sym_class_declaration] = STATE(1907), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1907), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1907), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1907), + [sym_unset_statement] = STATE(1907), + [sym_declare_statement] = STATE(1907), + [sym_try_statement] = STATE(1907), + [sym_goto_statement] = STATE(1907), + [sym_continue_statement] = STATE(1907), + [sym_break_statement] = STATE(1907), + [sym_return_statement] = STATE(1907), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1907), + [sym_do_statement] = STATE(1907), + [sym_for_statement] = STATE(1907), + [sym_foreach_statement] = STATE(1907), + [sym_if_statement] = STATE(1907), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1907), + [sym_compound_statement] = STATE(1907), + [sym_named_label_statement] = STATE(1907), + [sym_expression_statement] = STATE(1907), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [82] = { + [sym_empty_statement] = STATE(543), + [sym_function_static_declaration] = STATE(543), + [sym_global_declaration] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_namespace_use_declaration] = STATE(543), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(543), + [sym_interface_declaration] = STATE(543), + [sym_enum_declaration] = STATE(543), + [sym_class_declaration] = STATE(543), + [sym_final_modifier] = STATE(2496), + [sym_abstract_modifier] = STATE(2496), + [sym_readonly_modifier] = STATE(2496), + [sym_const_declaration] = STATE(543), + [sym__const_declaration] = STATE(512), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2494), + [sym_function_definition] = STATE(543), + [sym__function_definition_header] = STATE(2098), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(543), + [sym_unset_statement] = STATE(543), + [sym_declare_statement] = STATE(543), + [sym_try_statement] = STATE(543), + [sym_goto_statement] = STATE(543), + [sym_continue_statement] = STATE(543), + [sym_break_statement] = STATE(543), + [sym_return_statement] = STATE(543), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_foreach_statement] = STATE(543), + [sym_if_statement] = STATE(543), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(543), + [sym_compound_statement] = STATE(543), + [sym_named_label_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1365), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(326), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(330), + [aux_sym_foreach_statement_token1] = ACTIONS(332), + [aux_sym_if_statement_token1] = ACTIONS(334), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [83] = { + [sym_empty_statement] = STATE(2443), + [sym_function_static_declaration] = STATE(2443), + [sym_global_declaration] = STATE(2443), + [sym_namespace_definition] = STATE(2443), + [sym_namespace_use_declaration] = STATE(2443), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(2443), + [sym_interface_declaration] = STATE(2443), + [sym_enum_declaration] = STATE(2443), + [sym_class_declaration] = STATE(2443), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(2443), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(2443), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(2443), + [sym_unset_statement] = STATE(2443), + [sym_declare_statement] = STATE(2443), + [sym_try_statement] = STATE(2443), + [sym_goto_statement] = STATE(2443), + [sym_continue_statement] = STATE(2443), + [sym_break_statement] = STATE(2443), + [sym_return_statement] = STATE(2443), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(2443), + [sym_do_statement] = STATE(2443), + [sym_for_statement] = STATE(2443), + [sym_foreach_statement] = STATE(2443), + [sym_if_statement] = STATE(2443), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(2443), + [sym_compound_statement] = STATE(2443), + [sym_named_label_statement] = STATE(2443), + [sym_expression_statement] = STATE(2443), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [84] = { + [sym_empty_statement] = STATE(1907), + [sym_function_static_declaration] = STATE(1907), + [sym_global_declaration] = STATE(1907), + [sym_namespace_definition] = STATE(1907), + [sym_namespace_use_declaration] = STATE(1907), + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_trait_declaration] = STATE(1907), + [sym_interface_declaration] = STATE(1907), + [sym_enum_declaration] = STATE(1907), + [sym_class_declaration] = STATE(1907), + [sym_final_modifier] = STATE(2437), + [sym_abstract_modifier] = STATE(2437), + [sym_readonly_modifier] = STATE(2437), + [sym_const_declaration] = STATE(1907), + [sym__const_declaration] = STATE(2015), + [sym_static_modifier] = STATE(2495), + [sym_visibility_modifier] = STATE(2438), + [sym_function_definition] = STATE(1907), + [sym__function_definition_header] = STATE(2145), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_echo_statement] = STATE(1907), + [sym_unset_statement] = STATE(1907), + [sym_declare_statement] = STATE(1907), + [sym_try_statement] = STATE(1907), + [sym_goto_statement] = STATE(1907), + [sym_continue_statement] = STATE(1907), + [sym_break_statement] = STATE(1907), + [sym_return_statement] = STATE(1907), + [sym_throw_expression] = STATE(1053), + [sym_while_statement] = STATE(1907), + [sym_do_statement] = STATE(1907), + [sym_for_statement] = STATE(1907), + [sym_foreach_statement] = STATE(1907), + [sym_if_statement] = STATE(1907), + [sym_match_expression] = STATE(1079), + [sym_switch_statement] = STATE(1907), + [sym_compound_statement] = STATE(1907), + [sym_named_label_statement] = STATE(1907), + [sym_expression_statement] = STATE(1907), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1368), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [85] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(953), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(917), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(557), + [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_COLON] = ACTIONS(547), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_EQ_GT] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(557), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_STAR_STAR] = ACTIONS(547), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_yield_expression_token2] = ACTIONS(599), + [aux_sym_binary_expression_token1] = ACTIONS(557), + [anon_sym_QMARK_QMARK] = ACTIONS(547), + [aux_sym_binary_expression_token2] = ACTIONS(557), + [aux_sym_binary_expression_token3] = ACTIONS(557), + [aux_sym_binary_expression_token4] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_GT] = ACTIONS(547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_EQ_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(547), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [86] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(917), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(547), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(547), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_EQ_GT] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(557), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_STAR_STAR] = ACTIONS(547), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(547), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_yield_expression_token2] = ACTIONS(629), + [aux_sym_binary_expression_token1] = ACTIONS(557), + [anon_sym_QMARK_QMARK] = ACTIONS(547), + [aux_sym_binary_expression_token2] = ACTIONS(557), + [aux_sym_binary_expression_token3] = ACTIONS(557), + [aux_sym_binary_expression_token4] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_GT] = ACTIONS(547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_EQ_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(547), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [87] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_variadic_unpacking] = STATE(1026), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_by_ref] = STATE(1026), + [sym_yield_expression] = STATE(1070), + [sym_array_element_initializer] = STATE(1072), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(641), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(547), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_EQ_GT] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(49), + [anon_sym_DOT_DOT_DOT] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(557), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(547), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_yield_expression_token2] = ACTIONS(649), + [aux_sym_binary_expression_token1] = ACTIONS(557), + [anon_sym_QMARK_QMARK] = ACTIONS(547), + [aux_sym_binary_expression_token2] = ACTIONS(557), + [aux_sym_binary_expression_token3] = ACTIONS(557), + [aux_sym_binary_expression_token4] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_GT] = ACTIONS(547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_EQ_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(547), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(547), + }, + [88] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1123), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(917), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(549), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(547), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_EQ_GT] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(557), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(547), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_yield_expression_token2] = ACTIONS(671), + [aux_sym_binary_expression_token1] = ACTIONS(557), + [anon_sym_QMARK_QMARK] = ACTIONS(547), + [aux_sym_binary_expression_token2] = ACTIONS(557), + [aux_sym_binary_expression_token3] = ACTIONS(557), + [aux_sym_binary_expression_token4] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_GT] = ACTIONS(547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_EQ_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(547), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [89] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_cast_type] = STATE(2335), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [90] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_cast_type] = STATE(2413), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [91] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_cast_type] = STATE(2506), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [92] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_cast_type] = STATE(2397), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [93] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_cast_type] = STATE(2405), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [94] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_cast_type] = STATE(2434), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1206), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [95] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_cast_type] = STATE(2340), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1206), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [96] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_cast_type] = STATE(2420), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [97] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_cast_type] = STATE(2379), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [98] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_cast_type] = STATE(2322), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [99] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_cast_type] = STATE(2340), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [100] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1161), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(622), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(622), + [sym_nullsafe_member_access_expression] = STATE(622), + [sym_scoped_property_access_expression] = STATE(622), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(1866), + [sym__array_destructing_element] = STATE(1868), + [sym_function_call_expression] = STATE(608), + [sym_scoped_call_expression] = STATE(608), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(608), + [sym_nullsafe_member_call_expression] = STATE(608), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(608), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(608), + [sym_variable_name] = STATE(608), + [sym_by_ref] = STATE(2175), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(2009), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym__array_destructing_repeat1] = STATE(1871), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(687), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [101] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1161), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(622), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(622), + [sym_nullsafe_member_access_expression] = STATE(622), + [sym_scoped_property_access_expression] = STATE(622), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(1866), + [sym__array_destructing_element] = STATE(1868), + [sym_function_call_expression] = STATE(608), + [sym_scoped_call_expression] = STATE(608), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(608), + [sym_nullsafe_member_call_expression] = STATE(608), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(608), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(608), + [sym_variable_name] = STATE(608), + [sym_by_ref] = STATE(2175), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(2009), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym__array_destructing_repeat1] = STATE(1871), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(687), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(691), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [102] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1161), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(622), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(622), + [sym_nullsafe_member_access_expression] = STATE(622), + [sym_scoped_property_access_expression] = STATE(622), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(1866), + [sym__array_destructing_element] = STATE(1868), + [sym_function_call_expression] = STATE(608), + [sym_scoped_call_expression] = STATE(608), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(608), + [sym_nullsafe_member_call_expression] = STATE(608), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(608), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(608), + [sym_variable_name] = STATE(608), + [sym_by_ref] = STATE(2175), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1870), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym__array_destructing_repeat1] = STATE(1871), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(693), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(695), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [103] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1161), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(622), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(622), + [sym_nullsafe_member_access_expression] = STATE(622), + [sym_scoped_property_access_expression] = STATE(622), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(1866), + [sym__array_destructing_element] = STATE(1868), + [sym_function_call_expression] = STATE(608), + [sym_scoped_call_expression] = STATE(608), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(608), + [sym_nullsafe_member_call_expression] = STATE(608), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(608), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(608), + [sym_variable_name] = STATE(608), + [sym_by_ref] = STATE(2175), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(2009), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym__array_destructing_repeat1] = STATE(1871), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(687), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(697), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [104] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1161), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(622), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(622), + [sym_nullsafe_member_access_expression] = STATE(622), + [sym_scoped_property_access_expression] = STATE(622), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(1866), + [sym__array_destructing_element] = STATE(1868), + [sym_function_call_expression] = STATE(608), + [sym_scoped_call_expression] = STATE(608), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(608), + [sym_nullsafe_member_call_expression] = STATE(608), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(608), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(608), + [sym_variable_name] = STATE(608), + [sym_by_ref] = STATE(2175), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(2009), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym__array_destructing_repeat1] = STATE(1871), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(687), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(699), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [105] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_variadic_placeholder] = STATE(2393), + [sym_argument] = STATE(1986), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(705), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [106] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_variadic_placeholder] = STATE(2327), + [sym_argument] = STATE(1916), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [107] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_variadic_placeholder] = STATE(2423), + [sym_argument] = STATE(2054), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(715), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [108] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_variadic_placeholder] = STATE(2485), + [sym_argument] = STATE(2040), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(719), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [109] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_variadic_placeholder] = STATE(2509), + [sym_argument] = STATE(2064), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(723), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [110] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_variadic_placeholder] = STATE(2501), + [sym_argument] = STATE(2050), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(727), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [111] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_variadic_placeholder] = STATE(2455), + [sym_argument] = STATE(2005), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(731), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [112] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_variadic_placeholder] = STATE(2476), + [sym_argument] = STATE(2027), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(735), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [113] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1162), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(2009), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(739), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [114] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1904), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(743), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [115] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1849), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(747), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [116] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1162), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1870), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(751), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(753), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [117] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1162), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1993), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(755), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [118] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym_match_condition_list] = STATE(2373), + [sym_match_conditional_expression] = STATE(1970), + [sym_match_default_expression] = STATE(1970), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(757), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(759), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [119] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [120] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [121] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [122] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [123] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [124] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [125] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [126] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [127] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym_match_condition_list] = STATE(2373), + [sym_match_conditional_expression] = STATE(1848), + [sym_match_default_expression] = STATE(1848), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(779), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(781), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [128] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1993), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [129] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [130] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [131] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1993), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [132] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [133] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1162), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1993), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(793), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [134] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [135] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [136] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1993), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [137] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [138] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1993), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [139] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [140] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1162), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1993), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(807), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [141] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1162), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1993), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(809), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [143] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1236), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(626), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(626), + [sym_nullsafe_member_access_expression] = STATE(626), + [sym_scoped_property_access_expression] = STATE(626), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(1866), + [sym__array_destructing_element] = STATE(2306), + [sym_function_call_expression] = STATE(597), + [sym_scoped_call_expression] = STATE(597), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(597), + [sym_nullsafe_member_call_expression] = STATE(597), + [sym_subscript_expression] = STATE(597), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(597), + [sym_variable_name] = STATE(597), + [sym_by_ref] = STATE(2306), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(813), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(813), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [144] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1236), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(626), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(626), + [sym_nullsafe_member_access_expression] = STATE(626), + [sym_scoped_property_access_expression] = STATE(626), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(1866), + [sym__array_destructing_element] = STATE(2306), + [sym_function_call_expression] = STATE(597), + [sym_scoped_call_expression] = STATE(597), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(597), + [sym_nullsafe_member_call_expression] = STATE(597), + [sym_subscript_expression] = STATE(597), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(597), + [sym_variable_name] = STATE(597), + [sym_by_ref] = STATE(2306), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(813), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(819), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [145] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1236), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(626), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(626), + [sym_nullsafe_member_access_expression] = STATE(626), + [sym_scoped_property_access_expression] = STATE(626), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(1866), + [sym__array_destructing_element] = STATE(2306), + [sym_function_call_expression] = STATE(597), + [sym_scoped_call_expression] = STATE(597), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(597), + [sym_nullsafe_member_call_expression] = STATE(597), + [sym_subscript_expression] = STATE(597), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(597), + [sym_variable_name] = STATE(597), + [sym_by_ref] = STATE(2306), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(813), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(822), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [146] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym_match_condition_list] = STATE(2373), + [sym_match_conditional_expression] = STATE(2266), + [sym_match_default_expression] = STATE(2266), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(825), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [147] = { + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_argument] = STATE(2135), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2311), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1446), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [148] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym_match_condition_list] = STATE(2373), + [sym_match_conditional_expression] = STATE(2266), + [sym_match_default_expression] = STATE(2266), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(827), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1162), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1993), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [150] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1225), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(621), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(621), + [sym_nullsafe_member_access_expression] = STATE(621), + [sym_scoped_property_access_expression] = STATE(621), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(1722), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_by_ref] = STATE(1908), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym__list_destructing_repeat1] = STATE(1909), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(829), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(831), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [151] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym_match_condition_list] = STATE(2373), + [sym_match_conditional_expression] = STATE(2266), + [sym_match_default_expression] = STATE(2266), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(833), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [152] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym_match_condition_list] = STATE(2373), + [sym_match_conditional_expression] = STATE(2266), + [sym_match_default_expression] = STATE(2266), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(835), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [153] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(933), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(892), + [sym_array_element_initializer] = STATE(1993), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [154] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym_match_condition_list] = STATE(2373), + [sym_match_conditional_expression] = STATE(2266), + [sym_match_default_expression] = STATE(2266), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [155] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1241), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(1977), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_by_ref] = STATE(2212), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(837), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(837), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [156] = { + [sym_reference_modifier] = STATE(191), + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1195), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2126), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1427), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [157] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2516), + [sym_sequence_expression] = STATE(2516), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(839), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [158] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2536), + [sym_sequence_expression] = STATE(2536), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(841), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [159] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2375), + [sym_sequence_expression] = STATE(2375), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(843), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [160] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2355), + [sym_sequence_expression] = STATE(2355), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(845), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [161] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2380), + [sym_sequence_expression] = STATE(2380), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(847), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [162] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2368), + [sym_sequence_expression] = STATE(2368), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(849), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [163] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_foreach_pair] = STATE(2534), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1168), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2089), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_by_ref] = STATE(2534), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [164] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2341), + [sym_sequence_expression] = STATE(2341), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(851), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [165] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2470), + [sym_sequence_expression] = STATE(2470), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(853), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [166] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2523), + [sym_sequence_expression] = STATE(2523), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(855), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [167] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2524), + [sym_sequence_expression] = STATE(2524), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(857), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [168] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2519), + [sym_sequence_expression] = STATE(2519), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(859), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [169] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2468), + [sym_sequence_expression] = STATE(2468), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(861), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [170] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2489), + [sym_sequence_expression] = STATE(2489), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(863), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [171] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2457), + [sym_sequence_expression] = STATE(2457), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(865), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [172] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2386), + [sym_sequence_expression] = STATE(2386), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(867), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [173] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_foreach_pair] = STATE(2385), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1205), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2210), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_by_ref] = STATE(2385), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [174] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2328), + [sym_sequence_expression] = STATE(2328), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(869), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [175] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2464), + [sym_sequence_expression] = STATE(2464), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(871), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [176] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2521), + [sym_sequence_expression] = STATE(2521), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(873), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2330), + [sym_sequence_expression] = STATE(2330), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(875), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [178] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2493), + [sym_sequence_expression] = STATE(2493), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(877), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [179] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2462), + [sym_sequence_expression] = STATE(2462), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(879), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [180] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_foreach_pair] = STATE(2465), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1187), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2131), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_by_ref] = STATE(2465), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [181] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2527), + [sym_sequence_expression] = STATE(2527), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(881), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [182] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_foreach_pair] = STATE(2325), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1173), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2313), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_by_ref] = STATE(2325), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [183] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2533), + [sym_sequence_expression] = STATE(2533), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(883), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [184] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__expressions] = STATE(2323), + [sym_sequence_expression] = STATE(2323), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(885), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [185] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1127), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(918), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [186] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1127), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(918), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(887), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [187] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(889), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(889), + }, + [188] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1183), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(891), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(891), + }, + [189] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(627), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(627), + [sym_nullsafe_member_access_expression] = STATE(627), + [sym_scoped_property_access_expression] = STATE(627), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(1989), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_by_ref] = STATE(2195), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [190] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1036), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_by_ref] = STATE(1043), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(893), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [191] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1190), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2314), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1428), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [192] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(974), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_by_ref] = STATE(918), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(887), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [193] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1181), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(895), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(895), + }, + [194] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1185), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(2173), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1439), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [195] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1261), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2147), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_by_ref] = STATE(2427), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [196] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_by_ref] = STATE(918), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [197] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(897), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(897), + }, + [198] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1180), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(899), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(899), + }, + [199] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_by_ref] = STATE(918), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(887), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [200] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1204), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(901), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(901), + }, + [201] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym__expressions] = STATE(2160), + [sym_sequence_expression] = STATE(2160), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1165), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [202] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym__expressions] = STATE(2081), + [sym_sequence_expression] = STATE(2081), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1165), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [203] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1140), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(903), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [204] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1211), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(905), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [205] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(907), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [206] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(909), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [207] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_sequence_expression] = STATE(2277), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1189), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [208] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(911), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [209] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_sequence_expression] = STATE(2277), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1179), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [210] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1242), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(913), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [211] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1263), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(915), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [212] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_sequence_expression] = STATE(2239), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1151), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [213] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1003), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(917), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [214] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1246), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(919), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [215] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1273), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(921), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [216] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1271), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(923), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [217] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1251), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(925), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [218] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1268), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(927), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [219] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1116), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(929), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [220] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1081), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(931), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [221] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(984), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [222] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1277), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [223] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [224] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1248), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [225] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1267), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [226] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1219), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [227] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1250), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [228] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1175), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [229] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [230] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [231] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1069), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [232] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1256), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [233] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1275), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [234] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1078), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [235] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1102), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [236] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1113), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [237] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1112), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [238] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1111), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [239] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1016), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [240] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1109), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [241] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1103), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [242] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1099), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [243] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1098), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [244] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1096), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [245] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1095), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [246] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1093), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [247] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1092), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [248] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1087), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [249] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1240), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [250] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1276), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [251] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1080), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [252] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1174), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [253] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1249), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [254] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1040), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [255] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1170), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [256] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1135), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [257] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1193), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [258] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1140), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [259] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [260] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1044), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [261] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1003), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [262] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [263] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [264] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1239), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [265] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1136), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [266] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1198), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [267] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1157), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [268] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1177), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [269] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(981), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [270] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1058), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [271] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1196), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [272] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1032), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [273] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(983), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [274] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(952), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1047), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [277] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(922), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [278] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(954), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [279] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(956), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [280] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(958), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [281] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(978), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [282] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(963), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [283] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(967), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [284] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(969), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [285] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1138), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [286] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(972), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [287] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(973), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [288] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1262), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [289] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(975), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [290] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(976), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [291] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1260), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [292] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(977), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [293] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(979), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [294] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(966), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [295] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(970), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [296] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1065), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [297] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1042), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [298] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1215), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [299] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(950), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [300] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [301] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1081), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [302] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1247), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [303] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1118), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [304] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(965), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [305] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1041), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [306] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1012), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [307] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(922), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [308] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1155), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [309] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1073), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [310] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1100), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [311] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1142), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [312] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1114), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [313] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1105), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [314] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1008), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [315] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [316] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1143), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [317] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [318] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [319] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1147), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [320] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1188), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [321] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1169), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [322] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1139), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [323] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1141), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [324] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [325] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1144), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [326] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1145), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [327] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1137), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [328] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1120), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1212), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [330] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1082), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [331] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1115), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [332] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1126), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [333] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1186), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [334] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1134), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [335] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1184), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [336] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [337] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1252), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [338] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1182), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1131), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [340] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1129), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [341] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [342] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1124), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [343] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(962), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [344] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1209), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [345] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1079), + [sym__expression] = STATE(1159), + [sym__unary_expression] = STATE(1059), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1059), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1059), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(1070), + [sym_reference_assignment_expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_augmented_assignment_expression] = STATE(1070), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2490), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(582), + [sym_scoped_call_expression] = STATE(582), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(582), + [sym_nullsafe_member_call_expression] = STATE(582), + [sym_subscript_expression] = STATE(582), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(582), + [sym_variable_name] = STATE(582), + [sym_yield_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_include_expression] = STATE(1070), + [sym_include_once_expression] = STATE(1070), + [sym_require_expression] = STATE(1070), + [sym_require_once_expression] = STATE(1070), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [346] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1200), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [347] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1004), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [348] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1005), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [349] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [350] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(943), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [351] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1119), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [352] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(980), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [353] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1121), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [354] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(941), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [355] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1116), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [356] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [357] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(922), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [358] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [359] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [360] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1230), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [361] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [362] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1146), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [363] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1133), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [364] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1206), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [365] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1128), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [366] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [367] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1014), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [368] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(986), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [369] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(982), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [370] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1245), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [371] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1244), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [372] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1117), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [373] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1002), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [374] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1172), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [375] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(987), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [376] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(989), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [377] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(941), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [378] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(943), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [379] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(990), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [380] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1207), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [381] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(991), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [382] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(960), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [383] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1132), + [sym__expression] = STATE(1122), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(625), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(625), + [sym_nullsafe_member_access_expression] = STATE(625), + [sym_scoped_property_access_expression] = STATE(625), + [sym_list_literal] = STATE(2395), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [384] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(959), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [385] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [386] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [387] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1237), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [388] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(957), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [389] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1238), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [390] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(992), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [391] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(951), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [392] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [393] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [394] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(971), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [395] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [396] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1233), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [397] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(941), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [398] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(943), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [399] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(955), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [400] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1243), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [401] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1269), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [402] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1254), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [403] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(994), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [404] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(995), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [405] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(996), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [406] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [407] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(998), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [408] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [409] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(999), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [410] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1221), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [411] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1220), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [412] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1000), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [413] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(988), + [sym__expression] = STATE(1001), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(600), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(600), + [sym_nullsafe_member_access_expression] = STATE(600), + [sym_scoped_property_access_expression] = STATE(600), + [sym_list_literal] = STATE(2337), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(578), + [sym_scoped_call_expression] = STATE(578), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(578), + [sym_nullsafe_member_call_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(578), + [sym_variable_name] = STATE(578), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [414] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(964), + [sym__expression] = STATE(1257), + [sym__unary_expression] = STATE(898), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(898), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(898), + [sym_cast_variable] = STATE(581), + [sym_assignment_expression] = STATE(892), + [sym_reference_assignment_expression] = STATE(892), + [sym_conditional_expression] = STATE(892), + [sym_augmented_assignment_expression] = STATE(892), + [sym_member_access_expression] = STATE(581), + [sym_nullsafe_member_access_expression] = STATE(581), + [sym_scoped_property_access_expression] = STATE(581), + [sym_list_literal] = STATE(2478), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(577), + [sym_scoped_call_expression] = STATE(577), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(577), + [sym_nullsafe_member_call_expression] = STATE(577), + [sym_subscript_expression] = STATE(577), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(577), + [sym_variable_name] = STATE(577), + [sym_yield_expression] = STATE(892), + [sym_binary_expression] = STATE(892), + [sym_include_expression] = STATE(892), + [sym_include_once_expression] = STATE(892), + [sym_require_expression] = STATE(892), + [sym_require_once_expression] = STATE(892), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [415] = { + [sym_catch_clause] = STATE(415), + [sym_finally_clause] = STATE(415), + [aux_sym_try_statement_repeat1] = STATE(415), + [ts_builtin_sym_end] = ACTIONS(933), + [sym_name] = ACTIONS(935), + [anon_sym_QMARK_GT] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [aux_sym_function_static_declaration_token1] = ACTIONS(935), + [aux_sym_global_declaration_token1] = ACTIONS(935), + [aux_sym_namespace_definition_token1] = ACTIONS(935), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(935), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(935), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(935), + [anon_sym_BSLASH] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [aux_sym_trait_declaration_token1] = ACTIONS(935), + [aux_sym_interface_declaration_token1] = ACTIONS(935), + [aux_sym_enum_declaration_token1] = ACTIONS(935), + [aux_sym_enum_case_token1] = ACTIONS(935), + [aux_sym_class_declaration_token1] = ACTIONS(935), + [aux_sym_final_modifier_token1] = ACTIONS(935), + [aux_sym_abstract_modifier_token1] = ACTIONS(935), + [aux_sym_readonly_modifier_token1] = ACTIONS(935), + [aux_sym_visibility_modifier_token1] = ACTIONS(935), + [aux_sym_visibility_modifier_token2] = ACTIONS(935), + [aux_sym_visibility_modifier_token3] = ACTIONS(935), + [aux_sym__arrow_function_header_token1] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(933), + [aux_sym_cast_type_token1] = ACTIONS(935), + [aux_sym_echo_statement_token1] = ACTIONS(935), + [anon_sym_unset] = ACTIONS(935), + [aux_sym_declare_statement_token1] = ACTIONS(935), + [aux_sym_declare_statement_token2] = ACTIONS(935), + [sym_float] = ACTIONS(935), + [aux_sym_try_statement_token1] = ACTIONS(935), + [aux_sym_catch_clause_token1] = ACTIONS(937), + [aux_sym_finally_clause_token1] = ACTIONS(940), + [aux_sym_goto_statement_token1] = ACTIONS(935), + [aux_sym_continue_statement_token1] = ACTIONS(935), + [aux_sym_break_statement_token1] = ACTIONS(935), + [sym_integer] = ACTIONS(935), + [aux_sym_return_statement_token1] = ACTIONS(935), + [aux_sym_throw_expression_token1] = ACTIONS(935), + [aux_sym_while_statement_token1] = ACTIONS(935), + [aux_sym_while_statement_token2] = ACTIONS(935), + [aux_sym_do_statement_token1] = ACTIONS(935), + [aux_sym_for_statement_token1] = ACTIONS(935), + [aux_sym_for_statement_token2] = ACTIONS(935), + [aux_sym_foreach_statement_token1] = ACTIONS(935), + [aux_sym_foreach_statement_token2] = ACTIONS(935), + [aux_sym_if_statement_token1] = ACTIONS(935), + [aux_sym_if_statement_token2] = ACTIONS(935), + [aux_sym_else_if_clause_token1] = ACTIONS(935), + [aux_sym_else_clause_token1] = ACTIONS(935), + [aux_sym_match_expression_token1] = ACTIONS(935), + [aux_sym_match_default_expression_token1] = ACTIONS(935), + [aux_sym_switch_statement_token1] = ACTIONS(935), + [aux_sym_switch_block_token1] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [aux_sym_clone_expression_token1] = ACTIONS(935), + [aux_sym_print_intrinsic_token1] = ACTIONS(935), + [aux_sym_object_creation_expression_token1] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [aux_sym__list_destructing_token1] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_self] = ACTIONS(935), + [anon_sym_parent] = ACTIONS(935), + [anon_sym_POUND_LBRACK] = ACTIONS(933), + [anon_sym_SQUOTE] = ACTIONS(933), + [aux_sym_encapsed_string_token1] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [aux_sym_string_token1] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_boolean] = ACTIONS(935), + [sym_null] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(933), + [aux_sym_yield_expression_token1] = ACTIONS(935), + [aux_sym_include_expression_token1] = ACTIONS(935), + [aux_sym_include_once_expression_token1] = ACTIONS(935), + [aux_sym_require_expression_token1] = ACTIONS(935), + [aux_sym_require_once_expression_token1] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + }, + [416] = { + [sym_catch_clause] = STATE(415), + [sym_finally_clause] = STATE(415), + [aux_sym_try_statement_repeat1] = STATE(415), + [ts_builtin_sym_end] = ACTIONS(943), + [sym_name] = ACTIONS(945), + [anon_sym_QMARK_GT] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [aux_sym_function_static_declaration_token1] = ACTIONS(945), + [aux_sym_global_declaration_token1] = ACTIONS(945), + [aux_sym_namespace_definition_token1] = ACTIONS(945), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(945), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(945), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(945), + [anon_sym_BSLASH] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [aux_sym_trait_declaration_token1] = ACTIONS(945), + [aux_sym_interface_declaration_token1] = ACTIONS(945), + [aux_sym_enum_declaration_token1] = ACTIONS(945), + [aux_sym_enum_case_token1] = ACTIONS(945), + [aux_sym_class_declaration_token1] = ACTIONS(945), + [aux_sym_final_modifier_token1] = ACTIONS(945), + [aux_sym_abstract_modifier_token1] = ACTIONS(945), + [aux_sym_readonly_modifier_token1] = ACTIONS(945), + [aux_sym_visibility_modifier_token1] = ACTIONS(945), + [aux_sym_visibility_modifier_token2] = ACTIONS(945), + [aux_sym_visibility_modifier_token3] = ACTIONS(945), + [aux_sym__arrow_function_header_token1] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(943), + [aux_sym_cast_type_token1] = ACTIONS(945), + [aux_sym_echo_statement_token1] = ACTIONS(945), + [anon_sym_unset] = ACTIONS(945), + [aux_sym_declare_statement_token1] = ACTIONS(945), + [aux_sym_declare_statement_token2] = ACTIONS(945), + [sym_float] = ACTIONS(945), + [aux_sym_try_statement_token1] = ACTIONS(945), + [aux_sym_catch_clause_token1] = ACTIONS(947), + [aux_sym_finally_clause_token1] = ACTIONS(949), + [aux_sym_goto_statement_token1] = ACTIONS(945), + [aux_sym_continue_statement_token1] = ACTIONS(945), + [aux_sym_break_statement_token1] = ACTIONS(945), + [sym_integer] = ACTIONS(945), + [aux_sym_return_statement_token1] = ACTIONS(945), + [aux_sym_throw_expression_token1] = ACTIONS(945), + [aux_sym_while_statement_token1] = ACTIONS(945), + [aux_sym_while_statement_token2] = ACTIONS(945), + [aux_sym_do_statement_token1] = ACTIONS(945), + [aux_sym_for_statement_token1] = ACTIONS(945), + [aux_sym_for_statement_token2] = ACTIONS(945), + [aux_sym_foreach_statement_token1] = ACTIONS(945), + [aux_sym_foreach_statement_token2] = ACTIONS(945), + [aux_sym_if_statement_token1] = ACTIONS(945), + [aux_sym_if_statement_token2] = ACTIONS(945), + [aux_sym_else_if_clause_token1] = ACTIONS(945), + [aux_sym_else_clause_token1] = ACTIONS(945), + [aux_sym_match_expression_token1] = ACTIONS(945), + [aux_sym_match_default_expression_token1] = ACTIONS(945), + [aux_sym_switch_statement_token1] = ACTIONS(945), + [aux_sym_switch_block_token1] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [aux_sym_clone_expression_token1] = ACTIONS(945), + [aux_sym_print_intrinsic_token1] = ACTIONS(945), + [aux_sym_object_creation_expression_token1] = ACTIONS(945), + [anon_sym_PLUS_PLUS] = ACTIONS(943), + [anon_sym_DASH_DASH] = ACTIONS(943), + [aux_sym__list_destructing_token1] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_self] = ACTIONS(945), + [anon_sym_parent] = ACTIONS(945), + [anon_sym_POUND_LBRACK] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(943), + [aux_sym_encapsed_string_token1] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [aux_sym_string_token1] = ACTIONS(943), + [anon_sym_LT_LT_LT] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [sym_boolean] = ACTIONS(945), + [sym_null] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(943), + [aux_sym_yield_expression_token1] = ACTIONS(945), + [aux_sym_include_expression_token1] = ACTIONS(945), + [aux_sym_include_once_expression_token1] = ACTIONS(945), + [aux_sym_require_expression_token1] = ACTIONS(945), + [aux_sym_require_once_expression_token1] = ACTIONS(945), + [sym_comment] = ACTIONS(3), + }, + [417] = { + [sym_else_if_clause] = STATE(521), + [sym_else_clause] = STATE(483), + [aux_sym_if_statement_repeat1] = STATE(418), + [ts_builtin_sym_end] = ACTIONS(951), + [sym_name] = ACTIONS(953), + [anon_sym_QMARK_GT] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(951), + [aux_sym_function_static_declaration_token1] = ACTIONS(953), + [aux_sym_global_declaration_token1] = ACTIONS(953), + [aux_sym_namespace_definition_token1] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(953), + [anon_sym_BSLASH] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [aux_sym_trait_declaration_token1] = ACTIONS(953), + [aux_sym_interface_declaration_token1] = ACTIONS(953), + [aux_sym_enum_declaration_token1] = ACTIONS(953), + [aux_sym_enum_case_token1] = ACTIONS(953), + [aux_sym_class_declaration_token1] = ACTIONS(953), + [aux_sym_final_modifier_token1] = ACTIONS(953), + [aux_sym_abstract_modifier_token1] = ACTIONS(953), + [aux_sym_readonly_modifier_token1] = ACTIONS(953), + [aux_sym_visibility_modifier_token1] = ACTIONS(953), + [aux_sym_visibility_modifier_token2] = ACTIONS(953), + [aux_sym_visibility_modifier_token3] = ACTIONS(953), + [aux_sym__arrow_function_header_token1] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(951), + [aux_sym_cast_type_token1] = ACTIONS(953), + [aux_sym_echo_statement_token1] = ACTIONS(953), + [anon_sym_unset] = ACTIONS(953), + [aux_sym_declare_statement_token1] = ACTIONS(953), + [aux_sym_declare_statement_token2] = ACTIONS(953), + [sym_float] = ACTIONS(953), + [aux_sym_try_statement_token1] = ACTIONS(953), + [aux_sym_goto_statement_token1] = ACTIONS(953), + [aux_sym_continue_statement_token1] = ACTIONS(953), + [aux_sym_break_statement_token1] = ACTIONS(953), + [sym_integer] = ACTIONS(953), + [aux_sym_return_statement_token1] = ACTIONS(953), + [aux_sym_throw_expression_token1] = ACTIONS(953), + [aux_sym_while_statement_token1] = ACTIONS(953), + [aux_sym_while_statement_token2] = ACTIONS(953), + [aux_sym_do_statement_token1] = ACTIONS(953), + [aux_sym_for_statement_token1] = ACTIONS(953), + [aux_sym_for_statement_token2] = ACTIONS(953), + [aux_sym_foreach_statement_token1] = ACTIONS(953), + [aux_sym_foreach_statement_token2] = ACTIONS(953), + [aux_sym_if_statement_token1] = ACTIONS(953), + [aux_sym_if_statement_token2] = ACTIONS(953), + [aux_sym_else_if_clause_token1] = ACTIONS(955), + [aux_sym_else_clause_token1] = ACTIONS(957), + [aux_sym_match_expression_token1] = ACTIONS(953), + [aux_sym_match_default_expression_token1] = ACTIONS(953), + [aux_sym_switch_statement_token1] = ACTIONS(953), + [aux_sym_switch_block_token1] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [aux_sym_clone_expression_token1] = ACTIONS(953), + [aux_sym_print_intrinsic_token1] = ACTIONS(953), + [aux_sym_object_creation_expression_token1] = ACTIONS(953), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [aux_sym__list_destructing_token1] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_self] = ACTIONS(953), + [anon_sym_parent] = ACTIONS(953), + [anon_sym_POUND_LBRACK] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(951), + [aux_sym_encapsed_string_token1] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [aux_sym_string_token1] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [sym_boolean] = ACTIONS(953), + [sym_null] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(951), + [aux_sym_yield_expression_token1] = ACTIONS(953), + [aux_sym_include_expression_token1] = ACTIONS(953), + [aux_sym_include_once_expression_token1] = ACTIONS(953), + [aux_sym_require_expression_token1] = ACTIONS(953), + [aux_sym_require_once_expression_token1] = ACTIONS(953), + [sym_comment] = ACTIONS(3), + }, + [418] = { + [sym_else_if_clause] = STATE(521), + [sym_else_clause] = STATE(502), + [aux_sym_if_statement_repeat1] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(959), + [sym_name] = ACTIONS(961), + [anon_sym_QMARK_GT] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [aux_sym_function_static_declaration_token1] = ACTIONS(961), + [aux_sym_global_declaration_token1] = ACTIONS(961), + [aux_sym_namespace_definition_token1] = ACTIONS(961), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(961), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(961), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [aux_sym_trait_declaration_token1] = ACTIONS(961), + [aux_sym_interface_declaration_token1] = ACTIONS(961), + [aux_sym_enum_declaration_token1] = ACTIONS(961), + [aux_sym_enum_case_token1] = ACTIONS(961), + [aux_sym_class_declaration_token1] = ACTIONS(961), + [aux_sym_final_modifier_token1] = ACTIONS(961), + [aux_sym_abstract_modifier_token1] = ACTIONS(961), + [aux_sym_readonly_modifier_token1] = ACTIONS(961), + [aux_sym_visibility_modifier_token1] = ACTIONS(961), + [aux_sym_visibility_modifier_token2] = ACTIONS(961), + [aux_sym_visibility_modifier_token3] = ACTIONS(961), + [aux_sym__arrow_function_header_token1] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(959), + [aux_sym_cast_type_token1] = ACTIONS(961), + [aux_sym_echo_statement_token1] = ACTIONS(961), + [anon_sym_unset] = ACTIONS(961), + [aux_sym_declare_statement_token1] = ACTIONS(961), + [aux_sym_declare_statement_token2] = ACTIONS(961), + [sym_float] = ACTIONS(961), + [aux_sym_try_statement_token1] = ACTIONS(961), + [aux_sym_goto_statement_token1] = ACTIONS(961), + [aux_sym_continue_statement_token1] = ACTIONS(961), + [aux_sym_break_statement_token1] = ACTIONS(961), + [sym_integer] = ACTIONS(961), + [aux_sym_return_statement_token1] = ACTIONS(961), + [aux_sym_throw_expression_token1] = ACTIONS(961), + [aux_sym_while_statement_token1] = ACTIONS(961), + [aux_sym_while_statement_token2] = ACTIONS(961), + [aux_sym_do_statement_token1] = ACTIONS(961), + [aux_sym_for_statement_token1] = ACTIONS(961), + [aux_sym_for_statement_token2] = ACTIONS(961), + [aux_sym_foreach_statement_token1] = ACTIONS(961), + [aux_sym_foreach_statement_token2] = ACTIONS(961), + [aux_sym_if_statement_token1] = ACTIONS(961), + [aux_sym_if_statement_token2] = ACTIONS(961), + [aux_sym_else_if_clause_token1] = ACTIONS(955), + [aux_sym_else_clause_token1] = ACTIONS(957), + [aux_sym_match_expression_token1] = ACTIONS(961), + [aux_sym_match_default_expression_token1] = ACTIONS(961), + [aux_sym_switch_statement_token1] = ACTIONS(961), + [aux_sym_switch_block_token1] = ACTIONS(961), + [anon_sym_AT] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [aux_sym_clone_expression_token1] = ACTIONS(961), + [aux_sym_print_intrinsic_token1] = ACTIONS(961), + [aux_sym_object_creation_expression_token1] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [aux_sym__list_destructing_token1] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_self] = ACTIONS(961), + [anon_sym_parent] = ACTIONS(961), + [anon_sym_POUND_LBRACK] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(959), + [aux_sym_encapsed_string_token1] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [aux_sym_string_token1] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [sym_boolean] = ACTIONS(961), + [sym_null] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(959), + [aux_sym_yield_expression_token1] = ACTIONS(961), + [aux_sym_include_expression_token1] = ACTIONS(961), + [aux_sym_include_once_expression_token1] = ACTIONS(961), + [aux_sym_require_expression_token1] = ACTIONS(961), + [aux_sym_require_once_expression_token1] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [419] = { + [sym_else_if_clause] = STATE(521), + [sym_else_clause] = STATE(502), + [aux_sym_if_statement_repeat1] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(959), + [sym_name] = ACTIONS(961), + [anon_sym_QMARK_GT] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [aux_sym_function_static_declaration_token1] = ACTIONS(961), + [aux_sym_global_declaration_token1] = ACTIONS(961), + [aux_sym_namespace_definition_token1] = ACTIONS(961), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(961), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(961), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(961), + [anon_sym_BSLASH] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [aux_sym_trait_declaration_token1] = ACTIONS(961), + [aux_sym_interface_declaration_token1] = ACTIONS(961), + [aux_sym_enum_declaration_token1] = ACTIONS(961), + [aux_sym_enum_case_token1] = ACTIONS(961), + [aux_sym_class_declaration_token1] = ACTIONS(961), + [aux_sym_final_modifier_token1] = ACTIONS(961), + [aux_sym_abstract_modifier_token1] = ACTIONS(961), + [aux_sym_readonly_modifier_token1] = ACTIONS(961), + [aux_sym_visibility_modifier_token1] = ACTIONS(961), + [aux_sym_visibility_modifier_token2] = ACTIONS(961), + [aux_sym_visibility_modifier_token3] = ACTIONS(961), + [aux_sym__arrow_function_header_token1] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(959), + [aux_sym_cast_type_token1] = ACTIONS(961), + [aux_sym_echo_statement_token1] = ACTIONS(961), + [anon_sym_unset] = ACTIONS(961), + [aux_sym_declare_statement_token1] = ACTIONS(961), + [aux_sym_declare_statement_token2] = ACTIONS(961), + [sym_float] = ACTIONS(961), + [aux_sym_try_statement_token1] = ACTIONS(961), + [aux_sym_goto_statement_token1] = ACTIONS(961), + [aux_sym_continue_statement_token1] = ACTIONS(961), + [aux_sym_break_statement_token1] = ACTIONS(961), + [sym_integer] = ACTIONS(961), + [aux_sym_return_statement_token1] = ACTIONS(961), + [aux_sym_throw_expression_token1] = ACTIONS(961), + [aux_sym_while_statement_token1] = ACTIONS(961), + [aux_sym_while_statement_token2] = ACTIONS(961), + [aux_sym_do_statement_token1] = ACTIONS(961), + [aux_sym_for_statement_token1] = ACTIONS(961), + [aux_sym_for_statement_token2] = ACTIONS(961), + [aux_sym_foreach_statement_token1] = ACTIONS(961), + [aux_sym_foreach_statement_token2] = ACTIONS(961), + [aux_sym_if_statement_token1] = ACTIONS(961), + [aux_sym_if_statement_token2] = ACTIONS(961), + [aux_sym_else_if_clause_token1] = ACTIONS(963), + [aux_sym_else_clause_token1] = ACTIONS(966), + [aux_sym_match_expression_token1] = ACTIONS(961), + [aux_sym_match_default_expression_token1] = ACTIONS(961), + [aux_sym_switch_statement_token1] = ACTIONS(961), + [aux_sym_switch_block_token1] = ACTIONS(961), + [anon_sym_AT] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [aux_sym_clone_expression_token1] = ACTIONS(961), + [aux_sym_print_intrinsic_token1] = ACTIONS(961), + [aux_sym_object_creation_expression_token1] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [aux_sym__list_destructing_token1] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_self] = ACTIONS(961), + [anon_sym_parent] = ACTIONS(961), + [anon_sym_POUND_LBRACK] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(959), + [aux_sym_encapsed_string_token1] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [aux_sym_string_token1] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [sym_boolean] = ACTIONS(961), + [sym_null] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(959), + [aux_sym_yield_expression_token1] = ACTIONS(961), + [aux_sym_include_expression_token1] = ACTIONS(961), + [aux_sym_include_once_expression_token1] = ACTIONS(961), + [aux_sym_require_expression_token1] = ACTIONS(961), + [aux_sym_require_once_expression_token1] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + }, + [420] = { + [sym_else_if_clause] = STATE(521), + [sym_else_clause] = STATE(483), + [aux_sym_if_statement_repeat1] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(951), + [sym_name] = ACTIONS(953), + [anon_sym_QMARK_GT] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(951), + [aux_sym_function_static_declaration_token1] = ACTIONS(953), + [aux_sym_global_declaration_token1] = ACTIONS(953), + [aux_sym_namespace_definition_token1] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(953), + [anon_sym_BSLASH] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [aux_sym_trait_declaration_token1] = ACTIONS(953), + [aux_sym_interface_declaration_token1] = ACTIONS(953), + [aux_sym_enum_declaration_token1] = ACTIONS(953), + [aux_sym_enum_case_token1] = ACTIONS(953), + [aux_sym_class_declaration_token1] = ACTIONS(953), + [aux_sym_final_modifier_token1] = ACTIONS(953), + [aux_sym_abstract_modifier_token1] = ACTIONS(953), + [aux_sym_readonly_modifier_token1] = ACTIONS(953), + [aux_sym_visibility_modifier_token1] = ACTIONS(953), + [aux_sym_visibility_modifier_token2] = ACTIONS(953), + [aux_sym_visibility_modifier_token3] = ACTIONS(953), + [aux_sym__arrow_function_header_token1] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(951), + [aux_sym_cast_type_token1] = ACTIONS(953), + [aux_sym_echo_statement_token1] = ACTIONS(953), + [anon_sym_unset] = ACTIONS(953), + [aux_sym_declare_statement_token1] = ACTIONS(953), + [aux_sym_declare_statement_token2] = ACTIONS(953), + [sym_float] = ACTIONS(953), + [aux_sym_try_statement_token1] = ACTIONS(953), + [aux_sym_goto_statement_token1] = ACTIONS(953), + [aux_sym_continue_statement_token1] = ACTIONS(953), + [aux_sym_break_statement_token1] = ACTIONS(953), + [sym_integer] = ACTIONS(953), + [aux_sym_return_statement_token1] = ACTIONS(953), + [aux_sym_throw_expression_token1] = ACTIONS(953), + [aux_sym_while_statement_token1] = ACTIONS(953), + [aux_sym_while_statement_token2] = ACTIONS(953), + [aux_sym_do_statement_token1] = ACTIONS(953), + [aux_sym_for_statement_token1] = ACTIONS(953), + [aux_sym_for_statement_token2] = ACTIONS(953), + [aux_sym_foreach_statement_token1] = ACTIONS(953), + [aux_sym_foreach_statement_token2] = ACTIONS(953), + [aux_sym_if_statement_token1] = ACTIONS(953), + [aux_sym_if_statement_token2] = ACTIONS(953), + [aux_sym_else_if_clause_token1] = ACTIONS(969), + [aux_sym_else_clause_token1] = ACTIONS(972), + [aux_sym_match_expression_token1] = ACTIONS(953), + [aux_sym_match_default_expression_token1] = ACTIONS(953), + [aux_sym_switch_statement_token1] = ACTIONS(953), + [aux_sym_switch_block_token1] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [aux_sym_clone_expression_token1] = ACTIONS(953), + [aux_sym_print_intrinsic_token1] = ACTIONS(953), + [aux_sym_object_creation_expression_token1] = ACTIONS(953), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [aux_sym__list_destructing_token1] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_self] = ACTIONS(953), + [anon_sym_parent] = ACTIONS(953), + [anon_sym_POUND_LBRACK] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(951), + [aux_sym_encapsed_string_token1] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [aux_sym_string_token1] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [sym_boolean] = ACTIONS(953), + [sym_null] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(951), + [aux_sym_yield_expression_token1] = ACTIONS(953), + [aux_sym_include_expression_token1] = ACTIONS(953), + [aux_sym_include_once_expression_token1] = ACTIONS(953), + [aux_sym_require_expression_token1] = ACTIONS(953), + [aux_sym_require_once_expression_token1] = ACTIONS(953), + [sym_comment] = ACTIONS(3), + }, + [421] = { + [ts_builtin_sym_end] = ACTIONS(975), + [sym_name] = ACTIONS(977), + [anon_sym_QMARK_GT] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [aux_sym_function_static_declaration_token1] = ACTIONS(977), + [aux_sym_global_declaration_token1] = ACTIONS(977), + [aux_sym_namespace_definition_token1] = ACTIONS(977), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(977), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(977), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(977), + [anon_sym_BSLASH] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [aux_sym_trait_declaration_token1] = ACTIONS(977), + [aux_sym_interface_declaration_token1] = ACTIONS(977), + [aux_sym_enum_declaration_token1] = ACTIONS(977), + [aux_sym_enum_case_token1] = ACTIONS(977), + [aux_sym_class_declaration_token1] = ACTIONS(977), + [aux_sym_final_modifier_token1] = ACTIONS(977), + [aux_sym_abstract_modifier_token1] = ACTIONS(977), + [aux_sym_readonly_modifier_token1] = ACTIONS(977), + [aux_sym_visibility_modifier_token1] = ACTIONS(977), + [aux_sym_visibility_modifier_token2] = ACTIONS(977), + [aux_sym_visibility_modifier_token3] = ACTIONS(977), + [aux_sym__arrow_function_header_token1] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(975), + [aux_sym_cast_type_token1] = ACTIONS(977), + [aux_sym_echo_statement_token1] = ACTIONS(977), + [anon_sym_unset] = ACTIONS(977), + [aux_sym_declare_statement_token1] = ACTIONS(977), + [aux_sym_declare_statement_token2] = ACTIONS(977), + [sym_float] = ACTIONS(977), + [aux_sym_try_statement_token1] = ACTIONS(977), + [aux_sym_catch_clause_token1] = ACTIONS(977), + [aux_sym_finally_clause_token1] = ACTIONS(977), + [aux_sym_goto_statement_token1] = ACTIONS(977), + [aux_sym_continue_statement_token1] = ACTIONS(977), + [aux_sym_break_statement_token1] = ACTIONS(977), + [sym_integer] = ACTIONS(977), + [aux_sym_return_statement_token1] = ACTIONS(977), + [aux_sym_throw_expression_token1] = ACTIONS(977), + [aux_sym_while_statement_token1] = ACTIONS(977), + [aux_sym_while_statement_token2] = ACTIONS(977), + [aux_sym_do_statement_token1] = ACTIONS(977), + [aux_sym_for_statement_token1] = ACTIONS(977), + [aux_sym_for_statement_token2] = ACTIONS(977), + [aux_sym_foreach_statement_token1] = ACTIONS(977), + [aux_sym_foreach_statement_token2] = ACTIONS(977), + [aux_sym_if_statement_token1] = ACTIONS(977), + [aux_sym_if_statement_token2] = ACTIONS(977), + [aux_sym_else_if_clause_token1] = ACTIONS(977), + [aux_sym_else_clause_token1] = ACTIONS(977), + [aux_sym_match_expression_token1] = ACTIONS(977), + [aux_sym_match_default_expression_token1] = ACTIONS(977), + [aux_sym_switch_statement_token1] = ACTIONS(977), + [aux_sym_switch_block_token1] = ACTIONS(977), + [anon_sym_AT] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [aux_sym_clone_expression_token1] = ACTIONS(977), + [aux_sym_print_intrinsic_token1] = ACTIONS(977), + [aux_sym_object_creation_expression_token1] = ACTIONS(977), + [anon_sym_PLUS_PLUS] = ACTIONS(975), + [anon_sym_DASH_DASH] = ACTIONS(975), + [aux_sym__list_destructing_token1] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(975), + [anon_sym_self] = ACTIONS(977), + [anon_sym_parent] = ACTIONS(977), + [anon_sym_POUND_LBRACK] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(975), + [aux_sym_encapsed_string_token1] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [aux_sym_string_token1] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_boolean] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(975), + [aux_sym_yield_expression_token1] = ACTIONS(977), + [aux_sym_include_expression_token1] = ACTIONS(977), + [aux_sym_include_once_expression_token1] = ACTIONS(977), + [aux_sym_require_expression_token1] = ACTIONS(977), + [aux_sym_require_once_expression_token1] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + }, + [422] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(985), + [sym_unary_op_expression] = STATE(985), + [sym_exponentiation_expression] = STATE(921), + [sym_clone_expression] = STATE(985), + [sym__primary_expression] = STATE(985), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(598), + [sym_assignment_expression] = STATE(921), + [sym_augmented_assignment_expression] = STATE(921), + [sym_member_access_expression] = STATE(598), + [sym_nullsafe_member_access_expression] = STATE(598), + [sym_scoped_property_access_expression] = STATE(598), + [sym_list_literal] = STATE(2333), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(579), + [sym_scoped_call_expression] = STATE(579), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(579), + [sym_nullsafe_member_call_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(579), + [sym_variable_name] = STATE(579), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + }, + [423] = { + [ts_builtin_sym_end] = ACTIONS(979), + [sym_name] = ACTIONS(981), + [anon_sym_QMARK_GT] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(979), + [aux_sym_function_static_declaration_token1] = ACTIONS(981), + [aux_sym_global_declaration_token1] = ACTIONS(981), + [aux_sym_namespace_definition_token1] = ACTIONS(981), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(981), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(981), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(981), + [anon_sym_BSLASH] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [aux_sym_trait_declaration_token1] = ACTIONS(981), + [aux_sym_interface_declaration_token1] = ACTIONS(981), + [aux_sym_enum_declaration_token1] = ACTIONS(981), + [aux_sym_enum_case_token1] = ACTIONS(981), + [aux_sym_class_declaration_token1] = ACTIONS(981), + [aux_sym_final_modifier_token1] = ACTIONS(981), + [aux_sym_abstract_modifier_token1] = ACTIONS(981), + [aux_sym_readonly_modifier_token1] = ACTIONS(981), + [aux_sym_visibility_modifier_token1] = ACTIONS(981), + [aux_sym_visibility_modifier_token2] = ACTIONS(981), + [aux_sym_visibility_modifier_token3] = ACTIONS(981), + [aux_sym__arrow_function_header_token1] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(979), + [aux_sym_cast_type_token1] = ACTIONS(981), + [aux_sym_echo_statement_token1] = ACTIONS(981), + [anon_sym_unset] = ACTIONS(981), + [aux_sym_declare_statement_token1] = ACTIONS(981), + [aux_sym_declare_statement_token2] = ACTIONS(981), + [sym_float] = ACTIONS(981), + [aux_sym_try_statement_token1] = ACTIONS(981), + [aux_sym_catch_clause_token1] = ACTIONS(981), + [aux_sym_finally_clause_token1] = ACTIONS(981), + [aux_sym_goto_statement_token1] = ACTIONS(981), + [aux_sym_continue_statement_token1] = ACTIONS(981), + [aux_sym_break_statement_token1] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [aux_sym_return_statement_token1] = ACTIONS(981), + [aux_sym_throw_expression_token1] = ACTIONS(981), + [aux_sym_while_statement_token1] = ACTIONS(981), + [aux_sym_while_statement_token2] = ACTIONS(981), + [aux_sym_do_statement_token1] = ACTIONS(981), + [aux_sym_for_statement_token1] = ACTIONS(981), + [aux_sym_for_statement_token2] = ACTIONS(981), + [aux_sym_foreach_statement_token1] = ACTIONS(981), + [aux_sym_foreach_statement_token2] = ACTIONS(981), + [aux_sym_if_statement_token1] = ACTIONS(981), + [aux_sym_if_statement_token2] = ACTIONS(981), + [aux_sym_else_if_clause_token1] = ACTIONS(981), + [aux_sym_else_clause_token1] = ACTIONS(981), + [aux_sym_match_expression_token1] = ACTIONS(981), + [aux_sym_match_default_expression_token1] = ACTIONS(981), + [aux_sym_switch_statement_token1] = ACTIONS(981), + [aux_sym_switch_block_token1] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [aux_sym_clone_expression_token1] = ACTIONS(981), + [aux_sym_print_intrinsic_token1] = ACTIONS(981), + [aux_sym_object_creation_expression_token1] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_DASH_DASH] = ACTIONS(979), + [aux_sym__list_destructing_token1] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_self] = ACTIONS(981), + [anon_sym_parent] = ACTIONS(981), + [anon_sym_POUND_LBRACK] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(979), + [aux_sym_encapsed_string_token1] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [aux_sym_string_token1] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_boolean] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), + [aux_sym_yield_expression_token1] = ACTIONS(981), + [aux_sym_include_expression_token1] = ACTIONS(981), + [aux_sym_include_once_expression_token1] = ACTIONS(981), + [aux_sym_require_expression_token1] = ACTIONS(981), + [aux_sym_require_once_expression_token1] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + }, + [424] = { + [ts_builtin_sym_end] = ACTIONS(983), + [sym_name] = ACTIONS(985), + [anon_sym_QMARK_GT] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(983), + [aux_sym_function_static_declaration_token1] = ACTIONS(985), + [aux_sym_global_declaration_token1] = ACTIONS(985), + [aux_sym_namespace_definition_token1] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(985), + [anon_sym_BSLASH] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [aux_sym_trait_declaration_token1] = ACTIONS(985), + [aux_sym_interface_declaration_token1] = ACTIONS(985), + [aux_sym_enum_declaration_token1] = ACTIONS(985), + [aux_sym_enum_case_token1] = ACTIONS(985), + [aux_sym_class_declaration_token1] = ACTIONS(985), + [aux_sym_final_modifier_token1] = ACTIONS(985), + [aux_sym_abstract_modifier_token1] = ACTIONS(985), + [aux_sym_readonly_modifier_token1] = ACTIONS(985), + [aux_sym_visibility_modifier_token1] = ACTIONS(985), + [aux_sym_visibility_modifier_token2] = ACTIONS(985), + [aux_sym_visibility_modifier_token3] = ACTIONS(985), + [aux_sym__arrow_function_header_token1] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(983), + [aux_sym_cast_type_token1] = ACTIONS(985), + [aux_sym_echo_statement_token1] = ACTIONS(985), + [anon_sym_unset] = ACTIONS(985), + [aux_sym_declare_statement_token1] = ACTIONS(985), + [aux_sym_declare_statement_token2] = ACTIONS(985), + [sym_float] = ACTIONS(985), + [aux_sym_try_statement_token1] = ACTIONS(985), + [aux_sym_catch_clause_token1] = ACTIONS(985), + [aux_sym_finally_clause_token1] = ACTIONS(985), + [aux_sym_goto_statement_token1] = ACTIONS(985), + [aux_sym_continue_statement_token1] = ACTIONS(985), + [aux_sym_break_statement_token1] = ACTIONS(985), + [sym_integer] = ACTIONS(985), + [aux_sym_return_statement_token1] = ACTIONS(985), + [aux_sym_throw_expression_token1] = ACTIONS(985), + [aux_sym_while_statement_token1] = ACTIONS(985), + [aux_sym_while_statement_token2] = ACTIONS(985), + [aux_sym_do_statement_token1] = ACTIONS(985), + [aux_sym_for_statement_token1] = ACTIONS(985), + [aux_sym_for_statement_token2] = ACTIONS(985), + [aux_sym_foreach_statement_token1] = ACTIONS(985), + [aux_sym_foreach_statement_token2] = ACTIONS(985), + [aux_sym_if_statement_token1] = ACTIONS(985), + [aux_sym_if_statement_token2] = ACTIONS(985), + [aux_sym_else_if_clause_token1] = ACTIONS(985), + [aux_sym_else_clause_token1] = ACTIONS(985), + [aux_sym_match_expression_token1] = ACTIONS(985), + [aux_sym_match_default_expression_token1] = ACTIONS(985), + [aux_sym_switch_statement_token1] = ACTIONS(985), + [aux_sym_switch_block_token1] = ACTIONS(985), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [aux_sym_clone_expression_token1] = ACTIONS(985), + [aux_sym_print_intrinsic_token1] = ACTIONS(985), + [aux_sym_object_creation_expression_token1] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym__list_destructing_token1] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_self] = ACTIONS(985), + [anon_sym_parent] = ACTIONS(985), + [anon_sym_POUND_LBRACK] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [aux_sym_encapsed_string_token1] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [aux_sym_string_token1] = ACTIONS(983), + [anon_sym_LT_LT_LT] = ACTIONS(983), + [anon_sym_BQUOTE] = ACTIONS(983), + [sym_boolean] = ACTIONS(985), + [sym_null] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(983), + [aux_sym_yield_expression_token1] = ACTIONS(985), + [aux_sym_include_expression_token1] = ACTIONS(985), + [aux_sym_include_once_expression_token1] = ACTIONS(985), + [aux_sym_require_expression_token1] = ACTIONS(985), + [aux_sym_require_once_expression_token1] = ACTIONS(985), + [sym_comment] = ACTIONS(3), + }, + [425] = { + [ts_builtin_sym_end] = ACTIONS(987), + [sym_name] = ACTIONS(989), + [anon_sym_QMARK_GT] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(987), + [aux_sym_function_static_declaration_token1] = ACTIONS(989), + [aux_sym_global_declaration_token1] = ACTIONS(989), + [aux_sym_namespace_definition_token1] = ACTIONS(989), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(989), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(989), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(989), + [anon_sym_BSLASH] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [aux_sym_trait_declaration_token1] = ACTIONS(989), + [aux_sym_interface_declaration_token1] = ACTIONS(989), + [aux_sym_enum_declaration_token1] = ACTIONS(989), + [aux_sym_enum_case_token1] = ACTIONS(989), + [aux_sym_class_declaration_token1] = ACTIONS(989), + [aux_sym_final_modifier_token1] = ACTIONS(989), + [aux_sym_abstract_modifier_token1] = ACTIONS(989), + [aux_sym_readonly_modifier_token1] = ACTIONS(989), + [aux_sym_visibility_modifier_token1] = ACTIONS(989), + [aux_sym_visibility_modifier_token2] = ACTIONS(989), + [aux_sym_visibility_modifier_token3] = ACTIONS(989), + [aux_sym__arrow_function_header_token1] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(987), + [aux_sym_cast_type_token1] = ACTIONS(989), + [aux_sym_echo_statement_token1] = ACTIONS(989), + [anon_sym_unset] = ACTIONS(989), + [aux_sym_declare_statement_token1] = ACTIONS(989), + [aux_sym_declare_statement_token2] = ACTIONS(989), + [sym_float] = ACTIONS(989), + [aux_sym_try_statement_token1] = ACTIONS(989), + [aux_sym_catch_clause_token1] = ACTIONS(989), + [aux_sym_finally_clause_token1] = ACTIONS(989), + [aux_sym_goto_statement_token1] = ACTIONS(989), + [aux_sym_continue_statement_token1] = ACTIONS(989), + [aux_sym_break_statement_token1] = ACTIONS(989), + [sym_integer] = ACTIONS(989), + [aux_sym_return_statement_token1] = ACTIONS(989), + [aux_sym_throw_expression_token1] = ACTIONS(989), + [aux_sym_while_statement_token1] = ACTIONS(989), + [aux_sym_while_statement_token2] = ACTIONS(989), + [aux_sym_do_statement_token1] = ACTIONS(989), + [aux_sym_for_statement_token1] = ACTIONS(989), + [aux_sym_for_statement_token2] = ACTIONS(989), + [aux_sym_foreach_statement_token1] = ACTIONS(989), + [aux_sym_foreach_statement_token2] = ACTIONS(989), + [aux_sym_if_statement_token1] = ACTIONS(989), + [aux_sym_if_statement_token2] = ACTIONS(989), + [aux_sym_else_if_clause_token1] = ACTIONS(989), + [aux_sym_else_clause_token1] = ACTIONS(989), + [aux_sym_match_expression_token1] = ACTIONS(989), + [aux_sym_match_default_expression_token1] = ACTIONS(989), + [aux_sym_switch_statement_token1] = ACTIONS(989), + [aux_sym_switch_block_token1] = ACTIONS(989), + [anon_sym_AT] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [aux_sym_clone_expression_token1] = ACTIONS(989), + [aux_sym_print_intrinsic_token1] = ACTIONS(989), + [aux_sym_object_creation_expression_token1] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [aux_sym__list_destructing_token1] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_self] = ACTIONS(989), + [anon_sym_parent] = ACTIONS(989), + [anon_sym_POUND_LBRACK] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(987), + [aux_sym_encapsed_string_token1] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [aux_sym_string_token1] = ACTIONS(987), + [anon_sym_LT_LT_LT] = ACTIONS(987), + [anon_sym_BQUOTE] = ACTIONS(987), + [sym_boolean] = ACTIONS(989), + [sym_null] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(987), + [aux_sym_yield_expression_token1] = ACTIONS(989), + [aux_sym_include_expression_token1] = ACTIONS(989), + [aux_sym_include_once_expression_token1] = ACTIONS(989), + [aux_sym_require_expression_token1] = ACTIONS(989), + [aux_sym_require_once_expression_token1] = ACTIONS(989), + [sym_comment] = ACTIONS(3), + }, + [426] = { + [ts_builtin_sym_end] = ACTIONS(991), + [sym_name] = ACTIONS(993), + [anon_sym_QMARK_GT] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(991), + [aux_sym_function_static_declaration_token1] = ACTIONS(993), + [aux_sym_global_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_definition_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(993), + [anon_sym_BSLASH] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [aux_sym_trait_declaration_token1] = ACTIONS(993), + [aux_sym_interface_declaration_token1] = ACTIONS(993), + [aux_sym_enum_declaration_token1] = ACTIONS(993), + [aux_sym_enum_case_token1] = ACTIONS(993), + [aux_sym_class_declaration_token1] = ACTIONS(993), + [aux_sym_final_modifier_token1] = ACTIONS(993), + [aux_sym_abstract_modifier_token1] = ACTIONS(993), + [aux_sym_readonly_modifier_token1] = ACTIONS(993), + [aux_sym_visibility_modifier_token1] = ACTIONS(993), + [aux_sym_visibility_modifier_token2] = ACTIONS(993), + [aux_sym_visibility_modifier_token3] = ACTIONS(993), + [aux_sym__arrow_function_header_token1] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [aux_sym_cast_type_token1] = ACTIONS(993), + [aux_sym_echo_statement_token1] = ACTIONS(993), + [anon_sym_unset] = ACTIONS(993), + [aux_sym_declare_statement_token1] = ACTIONS(993), + [aux_sym_declare_statement_token2] = ACTIONS(993), + [sym_float] = ACTIONS(993), + [aux_sym_try_statement_token1] = ACTIONS(993), + [aux_sym_catch_clause_token1] = ACTIONS(993), + [aux_sym_finally_clause_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), + [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), + [aux_sym_clone_expression_token1] = ACTIONS(993), + [aux_sym_print_intrinsic_token1] = ACTIONS(993), + [aux_sym_object_creation_expression_token1] = ACTIONS(993), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [anon_sym_DASH_DASH] = ACTIONS(991), + [aux_sym__list_destructing_token1] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_self] = ACTIONS(993), + [anon_sym_parent] = ACTIONS(993), + [anon_sym_POUND_LBRACK] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [aux_sym_encapsed_string_token1] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [aux_sym_string_token1] = ACTIONS(991), + [anon_sym_LT_LT_LT] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [sym_boolean] = ACTIONS(993), + [sym_null] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(991), + [aux_sym_yield_expression_token1] = ACTIONS(993), + [aux_sym_include_expression_token1] = ACTIONS(993), + [aux_sym_include_once_expression_token1] = ACTIONS(993), + [aux_sym_require_expression_token1] = ACTIONS(993), + [aux_sym_require_once_expression_token1] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + }, + [427] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(1071), + [sym_unary_op_expression] = STATE(1071), + [sym_exponentiation_expression] = STATE(1075), + [sym_clone_expression] = STATE(1071), + [sym__primary_expression] = STATE(1071), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1075), + [sym_cast_variable] = STATE(618), + [sym_assignment_expression] = STATE(1075), + [sym_augmented_assignment_expression] = STATE(1075), + [sym_member_access_expression] = STATE(618), + [sym_nullsafe_member_access_expression] = STATE(618), + [sym_scoped_property_access_expression] = STATE(618), + [sym_list_literal] = STATE(2334), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(583), + [sym_scoped_call_expression] = STATE(583), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(583), + [sym_nullsafe_member_call_expression] = STATE(583), + [sym_subscript_expression] = STATE(583), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(583), + [sym_variable_name] = STATE(583), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + }, + [428] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(1125), + [sym_unary_op_expression] = STATE(1125), + [sym_exponentiation_expression] = STATE(921), + [sym_clone_expression] = STATE(1125), + [sym__primary_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(624), + [sym_assignment_expression] = STATE(921), + [sym_augmented_assignment_expression] = STATE(921), + [sym_member_access_expression] = STATE(624), + [sym_nullsafe_member_access_expression] = STATE(624), + [sym_scoped_property_access_expression] = STATE(624), + [sym_list_literal] = STATE(2399), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(604), + [sym_scoped_call_expression] = STATE(604), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(604), + [sym_nullsafe_member_call_expression] = STATE(604), + [sym_subscript_expression] = STATE(604), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(604), + [sym_variable_name] = STATE(604), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + }, + [429] = { + [sym_else_if_clause] = STATE(521), + [aux_sym_if_statement_repeat1] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(995), + [sym_name] = ACTIONS(997), + [anon_sym_QMARK_GT] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(995), + [aux_sym_function_static_declaration_token1] = ACTIONS(997), + [aux_sym_global_declaration_token1] = ACTIONS(997), + [aux_sym_namespace_definition_token1] = ACTIONS(997), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(997), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(997), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(997), + [anon_sym_BSLASH] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [aux_sym_trait_declaration_token1] = ACTIONS(997), + [aux_sym_interface_declaration_token1] = ACTIONS(997), + [aux_sym_enum_declaration_token1] = ACTIONS(997), + [aux_sym_enum_case_token1] = ACTIONS(997), + [aux_sym_class_declaration_token1] = ACTIONS(997), + [aux_sym_final_modifier_token1] = ACTIONS(997), + [aux_sym_abstract_modifier_token1] = ACTIONS(997), + [aux_sym_readonly_modifier_token1] = ACTIONS(997), + [aux_sym_visibility_modifier_token1] = ACTIONS(997), + [aux_sym_visibility_modifier_token2] = ACTIONS(997), + [aux_sym_visibility_modifier_token3] = ACTIONS(997), + [aux_sym__arrow_function_header_token1] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(995), + [aux_sym_cast_type_token1] = ACTIONS(997), + [aux_sym_echo_statement_token1] = ACTIONS(997), + [anon_sym_unset] = ACTIONS(997), + [aux_sym_declare_statement_token1] = ACTIONS(997), + [aux_sym_declare_statement_token2] = ACTIONS(997), + [sym_float] = ACTIONS(997), + [aux_sym_try_statement_token1] = ACTIONS(997), + [aux_sym_goto_statement_token1] = ACTIONS(997), + [aux_sym_continue_statement_token1] = ACTIONS(997), + [aux_sym_break_statement_token1] = ACTIONS(997), + [sym_integer] = ACTIONS(997), + [aux_sym_return_statement_token1] = ACTIONS(997), + [aux_sym_throw_expression_token1] = ACTIONS(997), + [aux_sym_while_statement_token1] = ACTIONS(997), + [aux_sym_while_statement_token2] = ACTIONS(997), + [aux_sym_do_statement_token1] = ACTIONS(997), + [aux_sym_for_statement_token1] = ACTIONS(997), + [aux_sym_for_statement_token2] = ACTIONS(997), + [aux_sym_foreach_statement_token1] = ACTIONS(997), + [aux_sym_foreach_statement_token2] = ACTIONS(997), + [aux_sym_if_statement_token1] = ACTIONS(997), + [aux_sym_if_statement_token2] = ACTIONS(997), + [aux_sym_else_if_clause_token1] = ACTIONS(999), + [aux_sym_else_clause_token1] = ACTIONS(997), + [aux_sym_match_expression_token1] = ACTIONS(997), + [aux_sym_match_default_expression_token1] = ACTIONS(997), + [aux_sym_switch_statement_token1] = ACTIONS(997), + [aux_sym_switch_block_token1] = ACTIONS(997), + [anon_sym_AT] = ACTIONS(995), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [aux_sym_clone_expression_token1] = ACTIONS(997), + [aux_sym_print_intrinsic_token1] = ACTIONS(997), + [aux_sym_object_creation_expression_token1] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(995), + [aux_sym__list_destructing_token1] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_self] = ACTIONS(997), + [anon_sym_parent] = ACTIONS(997), + [anon_sym_POUND_LBRACK] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(995), + [aux_sym_encapsed_string_token1] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_LT_LT_LT] = ACTIONS(995), + [anon_sym_BQUOTE] = ACTIONS(995), + [sym_boolean] = ACTIONS(997), + [sym_null] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(995), + [aux_sym_yield_expression_token1] = ACTIONS(997), + [aux_sym_include_expression_token1] = ACTIONS(997), + [aux_sym_include_once_expression_token1] = ACTIONS(997), + [aux_sym_require_expression_token1] = ACTIONS(997), + [aux_sym_require_once_expression_token1] = ACTIONS(997), + [sym_comment] = ACTIONS(3), + }, + [430] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(968), + [sym_unary_op_expression] = STATE(968), + [sym_exponentiation_expression] = STATE(921), + [sym_clone_expression] = STATE(968), + [sym__primary_expression] = STATE(968), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(921), + [sym_cast_variable] = STATE(587), + [sym_assignment_expression] = STATE(921), + [sym_augmented_assignment_expression] = STATE(921), + [sym_member_access_expression] = STATE(587), + [sym_nullsafe_member_access_expression] = STATE(587), + [sym_scoped_property_access_expression] = STATE(587), + [sym_list_literal] = STATE(2539), + [sym__list_destructing] = STATE(2100), + [sym__array_destructing] = STATE(2100), + [sym_function_call_expression] = STATE(575), + [sym_scoped_call_expression] = STATE(575), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(575), + [sym_nullsafe_member_call_expression] = STATE(575), + [sym_subscript_expression] = STATE(575), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(575), + [sym_variable_name] = STATE(575), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + }, + [431] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_name] = ACTIONS(1004), + [anon_sym_QMARK_GT] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [aux_sym_function_static_declaration_token1] = ACTIONS(1004), + [aux_sym_global_declaration_token1] = ACTIONS(1004), + [aux_sym_namespace_definition_token1] = ACTIONS(1004), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1004), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1004), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1004), + [anon_sym_BSLASH] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [aux_sym_trait_declaration_token1] = ACTIONS(1004), + [aux_sym_interface_declaration_token1] = ACTIONS(1004), + [aux_sym_enum_declaration_token1] = ACTIONS(1004), + [aux_sym_enum_case_token1] = ACTIONS(1004), + [aux_sym_class_declaration_token1] = ACTIONS(1004), + [aux_sym_final_modifier_token1] = ACTIONS(1004), + [aux_sym_abstract_modifier_token1] = ACTIONS(1004), + [aux_sym_readonly_modifier_token1] = ACTIONS(1004), + [aux_sym_visibility_modifier_token1] = ACTIONS(1004), + [aux_sym_visibility_modifier_token2] = ACTIONS(1004), + [aux_sym_visibility_modifier_token3] = ACTIONS(1004), + [aux_sym__arrow_function_header_token1] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1002), + [aux_sym_cast_type_token1] = ACTIONS(1004), + [aux_sym_echo_statement_token1] = ACTIONS(1004), + [anon_sym_unset] = ACTIONS(1004), + [aux_sym_declare_statement_token1] = ACTIONS(1004), + [aux_sym_declare_statement_token2] = ACTIONS(1004), + [sym_float] = ACTIONS(1004), + [aux_sym_try_statement_token1] = ACTIONS(1004), + [aux_sym_goto_statement_token1] = ACTIONS(1004), + [aux_sym_continue_statement_token1] = ACTIONS(1004), + [aux_sym_break_statement_token1] = ACTIONS(1004), + [sym_integer] = ACTIONS(1004), + [aux_sym_return_statement_token1] = ACTIONS(1004), + [aux_sym_throw_expression_token1] = ACTIONS(1004), + [aux_sym_while_statement_token1] = ACTIONS(1004), + [aux_sym_while_statement_token2] = ACTIONS(1004), + [aux_sym_do_statement_token1] = ACTIONS(1004), + [aux_sym_for_statement_token1] = ACTIONS(1004), + [aux_sym_for_statement_token2] = ACTIONS(1004), + [aux_sym_foreach_statement_token1] = ACTIONS(1004), + [aux_sym_foreach_statement_token2] = ACTIONS(1004), + [aux_sym_if_statement_token1] = ACTIONS(1004), + [aux_sym_if_statement_token2] = ACTIONS(1004), + [aux_sym_else_if_clause_token1] = ACTIONS(1004), + [aux_sym_else_clause_token1] = ACTIONS(1004), + [aux_sym_match_expression_token1] = ACTIONS(1004), + [aux_sym_match_default_expression_token1] = ACTIONS(1004), + [aux_sym_switch_statement_token1] = ACTIONS(1004), + [aux_sym_switch_block_token1] = ACTIONS(1004), + [anon_sym_AT] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [aux_sym_clone_expression_token1] = ACTIONS(1004), + [aux_sym_print_intrinsic_token1] = ACTIONS(1004), + [aux_sym_object_creation_expression_token1] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [aux_sym__list_destructing_token1] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_self] = ACTIONS(1004), + [anon_sym_parent] = ACTIONS(1004), + [anon_sym_POUND_LBRACK] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [aux_sym_encapsed_string_token1] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [aux_sym_string_token1] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_boolean] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1002), + [aux_sym_yield_expression_token1] = ACTIONS(1004), + [aux_sym_include_expression_token1] = ACTIONS(1004), + [aux_sym_include_once_expression_token1] = ACTIONS(1004), + [aux_sym_require_expression_token1] = ACTIONS(1004), + [aux_sym_require_once_expression_token1] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1002), + }, + [432] = { + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_name] = ACTIONS(1008), + [anon_sym_QMARK_GT] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1010), + [aux_sym_function_static_declaration_token1] = ACTIONS(1008), + [aux_sym_global_declaration_token1] = ACTIONS(1008), + [aux_sym_namespace_definition_token1] = ACTIONS(1008), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1008), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1008), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1008), + [anon_sym_BSLASH] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [aux_sym_trait_declaration_token1] = ACTIONS(1008), + [aux_sym_interface_declaration_token1] = ACTIONS(1008), + [aux_sym_enum_declaration_token1] = ACTIONS(1008), + [aux_sym_enum_case_token1] = ACTIONS(1008), + [aux_sym_class_declaration_token1] = ACTIONS(1008), + [aux_sym_final_modifier_token1] = ACTIONS(1008), + [aux_sym_abstract_modifier_token1] = ACTIONS(1008), + [aux_sym_readonly_modifier_token1] = ACTIONS(1008), + [aux_sym_visibility_modifier_token1] = ACTIONS(1008), + [aux_sym_visibility_modifier_token2] = ACTIONS(1008), + [aux_sym_visibility_modifier_token3] = ACTIONS(1008), + [aux_sym__arrow_function_header_token1] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1006), + [aux_sym_cast_type_token1] = ACTIONS(1008), + [aux_sym_echo_statement_token1] = ACTIONS(1008), + [anon_sym_unset] = ACTIONS(1008), + [aux_sym_declare_statement_token1] = ACTIONS(1008), + [aux_sym_declare_statement_token2] = ACTIONS(1008), + [sym_float] = ACTIONS(1008), + [aux_sym_try_statement_token1] = ACTIONS(1008), + [aux_sym_goto_statement_token1] = ACTIONS(1008), + [aux_sym_continue_statement_token1] = ACTIONS(1008), + [aux_sym_break_statement_token1] = ACTIONS(1008), + [sym_integer] = ACTIONS(1008), + [aux_sym_return_statement_token1] = ACTIONS(1008), + [aux_sym_throw_expression_token1] = ACTIONS(1008), + [aux_sym_while_statement_token1] = ACTIONS(1008), + [aux_sym_while_statement_token2] = ACTIONS(1008), + [aux_sym_do_statement_token1] = ACTIONS(1008), + [aux_sym_for_statement_token1] = ACTIONS(1008), + [aux_sym_for_statement_token2] = ACTIONS(1008), + [aux_sym_foreach_statement_token1] = ACTIONS(1008), + [aux_sym_foreach_statement_token2] = ACTIONS(1008), + [aux_sym_if_statement_token1] = ACTIONS(1008), + [aux_sym_if_statement_token2] = ACTIONS(1008), + [aux_sym_else_if_clause_token1] = ACTIONS(1008), + [aux_sym_else_clause_token1] = ACTIONS(1008), + [aux_sym_match_expression_token1] = ACTIONS(1008), + [aux_sym_match_default_expression_token1] = ACTIONS(1008), + [aux_sym_switch_statement_token1] = ACTIONS(1008), + [aux_sym_switch_block_token1] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [aux_sym_clone_expression_token1] = ACTIONS(1008), + [aux_sym_print_intrinsic_token1] = ACTIONS(1008), + [aux_sym_object_creation_expression_token1] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [aux_sym__list_destructing_token1] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_self] = ACTIONS(1008), + [anon_sym_parent] = ACTIONS(1008), + [anon_sym_POUND_LBRACK] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [aux_sym_encapsed_string_token1] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [aux_sym_string_token1] = ACTIONS(1006), + [anon_sym_LT_LT_LT] = ACTIONS(1006), + [anon_sym_BQUOTE] = ACTIONS(1006), + [sym_boolean] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [aux_sym_yield_expression_token1] = ACTIONS(1008), + [aux_sym_include_expression_token1] = ACTIONS(1008), + [aux_sym_include_once_expression_token1] = ACTIONS(1008), + [aux_sym_require_expression_token1] = ACTIONS(1008), + [aux_sym_require_once_expression_token1] = ACTIONS(1008), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1010), + }, + [433] = { + [ts_builtin_sym_end] = ACTIONS(1012), + [sym_name] = ACTIONS(1014), + [anon_sym_QMARK_GT] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1016), + [aux_sym_function_static_declaration_token1] = ACTIONS(1014), + [aux_sym_global_declaration_token1] = ACTIONS(1014), + [aux_sym_namespace_definition_token1] = ACTIONS(1014), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1014), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1014), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1014), + [anon_sym_BSLASH] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [aux_sym_trait_declaration_token1] = ACTIONS(1014), + [aux_sym_interface_declaration_token1] = ACTIONS(1014), + [aux_sym_enum_declaration_token1] = ACTIONS(1014), + [aux_sym_enum_case_token1] = ACTIONS(1014), + [aux_sym_class_declaration_token1] = ACTIONS(1014), + [aux_sym_final_modifier_token1] = ACTIONS(1014), + [aux_sym_abstract_modifier_token1] = ACTIONS(1014), + [aux_sym_readonly_modifier_token1] = ACTIONS(1014), + [aux_sym_visibility_modifier_token1] = ACTIONS(1014), + [aux_sym_visibility_modifier_token2] = ACTIONS(1014), + [aux_sym_visibility_modifier_token3] = ACTIONS(1014), + [aux_sym__arrow_function_header_token1] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1012), + [aux_sym_cast_type_token1] = ACTIONS(1014), + [aux_sym_echo_statement_token1] = ACTIONS(1014), + [anon_sym_unset] = ACTIONS(1014), + [aux_sym_declare_statement_token1] = ACTIONS(1014), + [aux_sym_declare_statement_token2] = ACTIONS(1014), + [sym_float] = ACTIONS(1014), + [aux_sym_try_statement_token1] = ACTIONS(1014), + [aux_sym_goto_statement_token1] = ACTIONS(1014), + [aux_sym_continue_statement_token1] = ACTIONS(1014), + [aux_sym_break_statement_token1] = ACTIONS(1014), + [sym_integer] = ACTIONS(1014), + [aux_sym_return_statement_token1] = ACTIONS(1014), + [aux_sym_throw_expression_token1] = ACTIONS(1014), + [aux_sym_while_statement_token1] = ACTIONS(1014), + [aux_sym_while_statement_token2] = ACTIONS(1014), + [aux_sym_do_statement_token1] = ACTIONS(1014), + [aux_sym_for_statement_token1] = ACTIONS(1014), + [aux_sym_for_statement_token2] = ACTIONS(1014), + [aux_sym_foreach_statement_token1] = ACTIONS(1014), + [aux_sym_foreach_statement_token2] = ACTIONS(1014), + [aux_sym_if_statement_token1] = ACTIONS(1014), + [aux_sym_if_statement_token2] = ACTIONS(1014), + [aux_sym_else_if_clause_token1] = ACTIONS(1014), + [aux_sym_else_clause_token1] = ACTIONS(1014), + [aux_sym_match_expression_token1] = ACTIONS(1014), + [aux_sym_match_default_expression_token1] = ACTIONS(1014), + [aux_sym_switch_statement_token1] = ACTIONS(1014), + [aux_sym_switch_block_token1] = ACTIONS(1014), + [anon_sym_AT] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1012), + [aux_sym_clone_expression_token1] = ACTIONS(1014), + [aux_sym_print_intrinsic_token1] = ACTIONS(1014), + [aux_sym_object_creation_expression_token1] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [aux_sym__list_destructing_token1] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_self] = ACTIONS(1014), + [anon_sym_parent] = ACTIONS(1014), + [anon_sym_POUND_LBRACK] = ACTIONS(1012), + [anon_sym_SQUOTE] = ACTIONS(1012), + [aux_sym_encapsed_string_token1] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [aux_sym_string_token1] = ACTIONS(1012), + [anon_sym_LT_LT_LT] = ACTIONS(1012), + [anon_sym_BQUOTE] = ACTIONS(1012), + [sym_boolean] = ACTIONS(1014), + [sym_null] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1012), + [aux_sym_yield_expression_token1] = ACTIONS(1014), + [aux_sym_include_expression_token1] = ACTIONS(1014), + [aux_sym_include_once_expression_token1] = ACTIONS(1014), + [aux_sym_require_expression_token1] = ACTIONS(1014), + [aux_sym_require_once_expression_token1] = ACTIONS(1014), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1016), + }, + [434] = { + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_name] = ACTIONS(1020), + [anon_sym_QMARK_GT] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1022), + [aux_sym_function_static_declaration_token1] = ACTIONS(1020), + [aux_sym_global_declaration_token1] = ACTIONS(1020), + [aux_sym_namespace_definition_token1] = ACTIONS(1020), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1020), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1020), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1020), + [anon_sym_BSLASH] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [aux_sym_trait_declaration_token1] = ACTIONS(1020), + [aux_sym_interface_declaration_token1] = ACTIONS(1020), + [aux_sym_enum_declaration_token1] = ACTIONS(1020), + [aux_sym_enum_case_token1] = ACTIONS(1020), + [aux_sym_class_declaration_token1] = ACTIONS(1020), + [aux_sym_final_modifier_token1] = ACTIONS(1020), + [aux_sym_abstract_modifier_token1] = ACTIONS(1020), + [aux_sym_readonly_modifier_token1] = ACTIONS(1020), + [aux_sym_visibility_modifier_token1] = ACTIONS(1020), + [aux_sym_visibility_modifier_token2] = ACTIONS(1020), + [aux_sym_visibility_modifier_token3] = ACTIONS(1020), + [aux_sym__arrow_function_header_token1] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [aux_sym_cast_type_token1] = ACTIONS(1020), + [aux_sym_echo_statement_token1] = ACTIONS(1020), + [anon_sym_unset] = ACTIONS(1020), + [aux_sym_declare_statement_token1] = ACTIONS(1020), + [aux_sym_declare_statement_token2] = ACTIONS(1020), + [sym_float] = ACTIONS(1020), + [aux_sym_try_statement_token1] = ACTIONS(1020), + [aux_sym_goto_statement_token1] = ACTIONS(1020), + [aux_sym_continue_statement_token1] = ACTIONS(1020), + [aux_sym_break_statement_token1] = ACTIONS(1020), + [sym_integer] = ACTIONS(1020), + [aux_sym_return_statement_token1] = ACTIONS(1020), + [aux_sym_throw_expression_token1] = ACTIONS(1020), + [aux_sym_while_statement_token1] = ACTIONS(1020), + [aux_sym_while_statement_token2] = ACTIONS(1020), + [aux_sym_do_statement_token1] = ACTIONS(1020), + [aux_sym_for_statement_token1] = ACTIONS(1020), + [aux_sym_for_statement_token2] = ACTIONS(1020), + [aux_sym_foreach_statement_token1] = ACTIONS(1020), + [aux_sym_foreach_statement_token2] = ACTIONS(1020), + [aux_sym_if_statement_token1] = ACTIONS(1020), + [aux_sym_if_statement_token2] = ACTIONS(1020), + [aux_sym_else_if_clause_token1] = ACTIONS(1020), + [aux_sym_else_clause_token1] = ACTIONS(1020), + [aux_sym_match_expression_token1] = ACTIONS(1020), + [aux_sym_match_default_expression_token1] = ACTIONS(1020), + [aux_sym_switch_statement_token1] = ACTIONS(1020), + [aux_sym_switch_block_token1] = ACTIONS(1020), + [anon_sym_AT] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [aux_sym_clone_expression_token1] = ACTIONS(1020), + [aux_sym_print_intrinsic_token1] = ACTIONS(1020), + [aux_sym_object_creation_expression_token1] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [aux_sym__list_destructing_token1] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1018), + [anon_sym_self] = ACTIONS(1020), + [anon_sym_parent] = ACTIONS(1020), + [anon_sym_POUND_LBRACK] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [aux_sym_encapsed_string_token1] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [aux_sym_string_token1] = ACTIONS(1018), + [anon_sym_LT_LT_LT] = ACTIONS(1018), + [anon_sym_BQUOTE] = ACTIONS(1018), + [sym_boolean] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1018), + [aux_sym_yield_expression_token1] = ACTIONS(1020), + [aux_sym_include_expression_token1] = ACTIONS(1020), + [aux_sym_include_once_expression_token1] = ACTIONS(1020), + [aux_sym_require_expression_token1] = ACTIONS(1020), + [aux_sym_require_once_expression_token1] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1022), + }, + [435] = { + [ts_builtin_sym_end] = ACTIONS(1024), + [sym_name] = ACTIONS(1026), + [anon_sym_QMARK_GT] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1028), + [aux_sym_function_static_declaration_token1] = ACTIONS(1026), + [aux_sym_global_declaration_token1] = ACTIONS(1026), + [aux_sym_namespace_definition_token1] = ACTIONS(1026), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1026), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1026), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1026), + [anon_sym_BSLASH] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [aux_sym_trait_declaration_token1] = ACTIONS(1026), + [aux_sym_interface_declaration_token1] = ACTIONS(1026), + [aux_sym_enum_declaration_token1] = ACTIONS(1026), + [aux_sym_enum_case_token1] = ACTIONS(1026), + [aux_sym_class_declaration_token1] = ACTIONS(1026), + [aux_sym_final_modifier_token1] = ACTIONS(1026), + [aux_sym_abstract_modifier_token1] = ACTIONS(1026), + [aux_sym_readonly_modifier_token1] = ACTIONS(1026), + [aux_sym_visibility_modifier_token1] = ACTIONS(1026), + [aux_sym_visibility_modifier_token2] = ACTIONS(1026), + [aux_sym_visibility_modifier_token3] = ACTIONS(1026), + [aux_sym__arrow_function_header_token1] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1024), + [aux_sym_cast_type_token1] = ACTIONS(1026), + [aux_sym_echo_statement_token1] = ACTIONS(1026), + [anon_sym_unset] = ACTIONS(1026), + [aux_sym_declare_statement_token1] = ACTIONS(1026), + [aux_sym_declare_statement_token2] = ACTIONS(1026), + [sym_float] = ACTIONS(1026), + [aux_sym_try_statement_token1] = ACTIONS(1026), + [aux_sym_goto_statement_token1] = ACTIONS(1026), + [aux_sym_continue_statement_token1] = ACTIONS(1026), + [aux_sym_break_statement_token1] = ACTIONS(1026), + [sym_integer] = ACTIONS(1026), + [aux_sym_return_statement_token1] = ACTIONS(1026), + [aux_sym_throw_expression_token1] = ACTIONS(1026), + [aux_sym_while_statement_token1] = ACTIONS(1026), + [aux_sym_while_statement_token2] = ACTIONS(1026), + [aux_sym_do_statement_token1] = ACTIONS(1026), + [aux_sym_for_statement_token1] = ACTIONS(1026), + [aux_sym_for_statement_token2] = ACTIONS(1026), + [aux_sym_foreach_statement_token1] = ACTIONS(1026), + [aux_sym_foreach_statement_token2] = ACTIONS(1026), + [aux_sym_if_statement_token1] = ACTIONS(1026), + [aux_sym_if_statement_token2] = ACTIONS(1026), + [aux_sym_else_if_clause_token1] = ACTIONS(1026), + [aux_sym_else_clause_token1] = ACTIONS(1026), + [aux_sym_match_expression_token1] = ACTIONS(1026), + [aux_sym_match_default_expression_token1] = ACTIONS(1026), + [aux_sym_switch_statement_token1] = ACTIONS(1026), + [aux_sym_switch_block_token1] = ACTIONS(1026), + [anon_sym_AT] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1024), + [aux_sym_clone_expression_token1] = ACTIONS(1026), + [aux_sym_print_intrinsic_token1] = ACTIONS(1026), + [aux_sym_object_creation_expression_token1] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [aux_sym__list_destructing_token1] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_self] = ACTIONS(1026), + [anon_sym_parent] = ACTIONS(1026), + [anon_sym_POUND_LBRACK] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1024), + [aux_sym_encapsed_string_token1] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [aux_sym_string_token1] = ACTIONS(1024), + [anon_sym_LT_LT_LT] = ACTIONS(1024), + [anon_sym_BQUOTE] = ACTIONS(1024), + [sym_boolean] = ACTIONS(1026), + [sym_null] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1024), + [aux_sym_yield_expression_token1] = ACTIONS(1026), + [aux_sym_include_expression_token1] = ACTIONS(1026), + [aux_sym_include_once_expression_token1] = ACTIONS(1026), + [aux_sym_require_expression_token1] = ACTIONS(1026), + [aux_sym_require_once_expression_token1] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1028), + }, + [436] = { + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_name] = ACTIONS(1032), + [anon_sym_QMARK_GT] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1034), + [aux_sym_function_static_declaration_token1] = ACTIONS(1032), + [aux_sym_global_declaration_token1] = ACTIONS(1032), + [aux_sym_namespace_definition_token1] = ACTIONS(1032), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1032), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1032), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1032), + [anon_sym_BSLASH] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [aux_sym_trait_declaration_token1] = ACTIONS(1032), + [aux_sym_interface_declaration_token1] = ACTIONS(1032), + [aux_sym_enum_declaration_token1] = ACTIONS(1032), + [aux_sym_enum_case_token1] = ACTIONS(1032), + [aux_sym_class_declaration_token1] = ACTIONS(1032), + [aux_sym_final_modifier_token1] = ACTIONS(1032), + [aux_sym_abstract_modifier_token1] = ACTIONS(1032), + [aux_sym_readonly_modifier_token1] = ACTIONS(1032), + [aux_sym_visibility_modifier_token1] = ACTIONS(1032), + [aux_sym_visibility_modifier_token2] = ACTIONS(1032), + [aux_sym_visibility_modifier_token3] = ACTIONS(1032), + [aux_sym__arrow_function_header_token1] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1030), + [aux_sym_cast_type_token1] = ACTIONS(1032), + [aux_sym_echo_statement_token1] = ACTIONS(1032), + [anon_sym_unset] = ACTIONS(1032), + [aux_sym_declare_statement_token1] = ACTIONS(1032), + [aux_sym_declare_statement_token2] = ACTIONS(1032), + [sym_float] = ACTIONS(1032), + [aux_sym_try_statement_token1] = ACTIONS(1032), + [aux_sym_goto_statement_token1] = ACTIONS(1032), + [aux_sym_continue_statement_token1] = ACTIONS(1032), + [aux_sym_break_statement_token1] = ACTIONS(1032), + [sym_integer] = ACTIONS(1032), + [aux_sym_return_statement_token1] = ACTIONS(1032), + [aux_sym_throw_expression_token1] = ACTIONS(1032), + [aux_sym_while_statement_token1] = ACTIONS(1032), + [aux_sym_while_statement_token2] = ACTIONS(1032), + [aux_sym_do_statement_token1] = ACTIONS(1032), + [aux_sym_for_statement_token1] = ACTIONS(1032), + [aux_sym_for_statement_token2] = ACTIONS(1032), + [aux_sym_foreach_statement_token1] = ACTIONS(1032), + [aux_sym_foreach_statement_token2] = ACTIONS(1032), + [aux_sym_if_statement_token1] = ACTIONS(1032), + [aux_sym_if_statement_token2] = ACTIONS(1032), + [aux_sym_else_if_clause_token1] = ACTIONS(1032), + [aux_sym_else_clause_token1] = ACTIONS(1032), + [aux_sym_match_expression_token1] = ACTIONS(1032), + [aux_sym_match_default_expression_token1] = ACTIONS(1032), + [aux_sym_switch_statement_token1] = ACTIONS(1032), + [aux_sym_switch_block_token1] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [aux_sym_clone_expression_token1] = ACTIONS(1032), + [aux_sym_print_intrinsic_token1] = ACTIONS(1032), + [aux_sym_object_creation_expression_token1] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [aux_sym__list_destructing_token1] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_self] = ACTIONS(1032), + [anon_sym_parent] = ACTIONS(1032), + [anon_sym_POUND_LBRACK] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [aux_sym_encapsed_string_token1] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [aux_sym_string_token1] = ACTIONS(1030), + [anon_sym_LT_LT_LT] = ACTIONS(1030), + [anon_sym_BQUOTE] = ACTIONS(1030), + [sym_boolean] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1030), + [aux_sym_yield_expression_token1] = ACTIONS(1032), + [aux_sym_include_expression_token1] = ACTIONS(1032), + [aux_sym_include_once_expression_token1] = ACTIONS(1032), + [aux_sym_require_expression_token1] = ACTIONS(1032), + [aux_sym_require_once_expression_token1] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1034), + }, + [437] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(2388), + [sym__unary_expression] = STATE(896), + [sym_unary_op_expression] = STATE(1130), + [sym_exponentiation_expression] = STATE(896), + [sym_clone_expression] = STATE(1130), + [sym__primary_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(896), + [sym_cast_variable] = STATE(576), + [sym_member_access_expression] = STATE(576), + [sym_nullsafe_member_access_expression] = STATE(576), + [sym_scoped_property_access_expression] = STATE(576), + [sym_function_call_expression] = STATE(558), + [sym_scoped_call_expression] = STATE(558), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(558), + [sym_nullsafe_member_call_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(558), + [sym_variable_name] = STATE(558), + [sym_include_expression] = STATE(896), + [sym_include_once_expression] = STATE(896), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(3), + }, + [438] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_name] = ACTIONS(1040), + [anon_sym_QMARK_GT] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1042), + [aux_sym_function_static_declaration_token1] = ACTIONS(1040), + [aux_sym_global_declaration_token1] = ACTIONS(1040), + [aux_sym_namespace_definition_token1] = ACTIONS(1040), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1040), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1040), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1040), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [aux_sym_trait_declaration_token1] = ACTIONS(1040), + [aux_sym_interface_declaration_token1] = ACTIONS(1040), + [aux_sym_enum_declaration_token1] = ACTIONS(1040), + [aux_sym_enum_case_token1] = ACTIONS(1040), + [aux_sym_class_declaration_token1] = ACTIONS(1040), + [aux_sym_final_modifier_token1] = ACTIONS(1040), + [aux_sym_abstract_modifier_token1] = ACTIONS(1040), + [aux_sym_readonly_modifier_token1] = ACTIONS(1040), + [aux_sym_visibility_modifier_token1] = ACTIONS(1040), + [aux_sym_visibility_modifier_token2] = ACTIONS(1040), + [aux_sym_visibility_modifier_token3] = ACTIONS(1040), + [aux_sym__arrow_function_header_token1] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1038), + [aux_sym_cast_type_token1] = ACTIONS(1040), + [aux_sym_echo_statement_token1] = ACTIONS(1040), + [anon_sym_unset] = ACTIONS(1040), + [aux_sym_declare_statement_token1] = ACTIONS(1040), + [aux_sym_declare_statement_token2] = ACTIONS(1040), + [sym_float] = ACTIONS(1040), + [aux_sym_try_statement_token1] = ACTIONS(1040), + [aux_sym_goto_statement_token1] = ACTIONS(1040), + [aux_sym_continue_statement_token1] = ACTIONS(1040), + [aux_sym_break_statement_token1] = ACTIONS(1040), + [sym_integer] = ACTIONS(1040), + [aux_sym_return_statement_token1] = ACTIONS(1040), + [aux_sym_throw_expression_token1] = ACTIONS(1040), + [aux_sym_while_statement_token1] = ACTIONS(1040), + [aux_sym_while_statement_token2] = ACTIONS(1040), + [aux_sym_do_statement_token1] = ACTIONS(1040), + [aux_sym_for_statement_token1] = ACTIONS(1040), + [aux_sym_for_statement_token2] = ACTIONS(1040), + [aux_sym_foreach_statement_token1] = ACTIONS(1040), + [aux_sym_foreach_statement_token2] = ACTIONS(1040), + [aux_sym_if_statement_token1] = ACTIONS(1040), + [aux_sym_if_statement_token2] = ACTIONS(1040), + [aux_sym_else_if_clause_token1] = ACTIONS(1040), + [aux_sym_else_clause_token1] = ACTIONS(1040), + [aux_sym_match_expression_token1] = ACTIONS(1040), + [aux_sym_match_default_expression_token1] = ACTIONS(1040), + [aux_sym_switch_statement_token1] = ACTIONS(1040), + [aux_sym_switch_block_token1] = ACTIONS(1040), + [anon_sym_AT] = ACTIONS(1038), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [aux_sym_clone_expression_token1] = ACTIONS(1040), + [aux_sym_print_intrinsic_token1] = ACTIONS(1040), + [aux_sym_object_creation_expression_token1] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym__list_destructing_token1] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1038), + [anon_sym_self] = ACTIONS(1040), + [anon_sym_parent] = ACTIONS(1040), + [anon_sym_POUND_LBRACK] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [aux_sym_encapsed_string_token1] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [aux_sym_string_token1] = ACTIONS(1038), + [anon_sym_LT_LT_LT] = ACTIONS(1038), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_boolean] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1038), + [aux_sym_yield_expression_token1] = ACTIONS(1040), + [aux_sym_include_expression_token1] = ACTIONS(1040), + [aux_sym_include_once_expression_token1] = ACTIONS(1040), + [aux_sym_require_expression_token1] = ACTIONS(1040), + [aux_sym_require_once_expression_token1] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1042), + }, + [439] = { + [ts_builtin_sym_end] = ACTIONS(1044), + [sym_name] = ACTIONS(1046), + [anon_sym_QMARK_GT] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1048), + [aux_sym_function_static_declaration_token1] = ACTIONS(1046), + [aux_sym_global_declaration_token1] = ACTIONS(1046), + [aux_sym_namespace_definition_token1] = ACTIONS(1046), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1046), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1046), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1046), + [anon_sym_BSLASH] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [aux_sym_trait_declaration_token1] = ACTIONS(1046), + [aux_sym_interface_declaration_token1] = ACTIONS(1046), + [aux_sym_enum_declaration_token1] = ACTIONS(1046), + [aux_sym_enum_case_token1] = ACTIONS(1046), + [aux_sym_class_declaration_token1] = ACTIONS(1046), + [aux_sym_final_modifier_token1] = ACTIONS(1046), + [aux_sym_abstract_modifier_token1] = ACTIONS(1046), + [aux_sym_readonly_modifier_token1] = ACTIONS(1046), + [aux_sym_visibility_modifier_token1] = ACTIONS(1046), + [aux_sym_visibility_modifier_token2] = ACTIONS(1046), + [aux_sym_visibility_modifier_token3] = ACTIONS(1046), + [aux_sym__arrow_function_header_token1] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1044), + [aux_sym_cast_type_token1] = ACTIONS(1046), + [aux_sym_echo_statement_token1] = ACTIONS(1046), + [anon_sym_unset] = ACTIONS(1046), + [aux_sym_declare_statement_token1] = ACTIONS(1046), + [aux_sym_declare_statement_token2] = ACTIONS(1046), + [sym_float] = ACTIONS(1046), + [aux_sym_try_statement_token1] = ACTIONS(1046), + [aux_sym_goto_statement_token1] = ACTIONS(1046), + [aux_sym_continue_statement_token1] = ACTIONS(1046), + [aux_sym_break_statement_token1] = ACTIONS(1046), + [sym_integer] = ACTIONS(1046), + [aux_sym_return_statement_token1] = ACTIONS(1046), + [aux_sym_throw_expression_token1] = ACTIONS(1046), + [aux_sym_while_statement_token1] = ACTIONS(1046), + [aux_sym_while_statement_token2] = ACTIONS(1046), + [aux_sym_do_statement_token1] = ACTIONS(1046), + [aux_sym_for_statement_token1] = ACTIONS(1046), + [aux_sym_for_statement_token2] = ACTIONS(1046), + [aux_sym_foreach_statement_token1] = ACTIONS(1046), + [aux_sym_foreach_statement_token2] = ACTIONS(1046), + [aux_sym_if_statement_token1] = ACTIONS(1046), + [aux_sym_if_statement_token2] = ACTIONS(1046), + [aux_sym_else_if_clause_token1] = ACTIONS(1046), + [aux_sym_else_clause_token1] = ACTIONS(1046), + [aux_sym_match_expression_token1] = ACTIONS(1046), + [aux_sym_match_default_expression_token1] = ACTIONS(1046), + [aux_sym_switch_statement_token1] = ACTIONS(1046), + [aux_sym_switch_block_token1] = ACTIONS(1046), + [anon_sym_AT] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(1044), + [aux_sym_clone_expression_token1] = ACTIONS(1046), + [aux_sym_print_intrinsic_token1] = ACTIONS(1046), + [aux_sym_object_creation_expression_token1] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [aux_sym__list_destructing_token1] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_self] = ACTIONS(1046), + [anon_sym_parent] = ACTIONS(1046), + [anon_sym_POUND_LBRACK] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1044), + [aux_sym_encapsed_string_token1] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [aux_sym_string_token1] = ACTIONS(1044), + [anon_sym_LT_LT_LT] = ACTIONS(1044), + [anon_sym_BQUOTE] = ACTIONS(1044), + [sym_boolean] = ACTIONS(1046), + [sym_null] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1044), + [aux_sym_yield_expression_token1] = ACTIONS(1046), + [aux_sym_include_expression_token1] = ACTIONS(1046), + [aux_sym_include_once_expression_token1] = ACTIONS(1046), + [aux_sym_require_expression_token1] = ACTIONS(1046), + [aux_sym_require_once_expression_token1] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1048), + }, + [440] = { + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_name] = ACTIONS(1052), + [anon_sym_QMARK_GT] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1054), + [aux_sym_function_static_declaration_token1] = ACTIONS(1052), + [aux_sym_global_declaration_token1] = ACTIONS(1052), + [aux_sym_namespace_definition_token1] = ACTIONS(1052), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1052), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1052), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1052), + [anon_sym_BSLASH] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [aux_sym_trait_declaration_token1] = ACTIONS(1052), + [aux_sym_interface_declaration_token1] = ACTIONS(1052), + [aux_sym_enum_declaration_token1] = ACTIONS(1052), + [aux_sym_enum_case_token1] = ACTIONS(1052), + [aux_sym_class_declaration_token1] = ACTIONS(1052), + [aux_sym_final_modifier_token1] = ACTIONS(1052), + [aux_sym_abstract_modifier_token1] = ACTIONS(1052), + [aux_sym_readonly_modifier_token1] = ACTIONS(1052), + [aux_sym_visibility_modifier_token1] = ACTIONS(1052), + [aux_sym_visibility_modifier_token2] = ACTIONS(1052), + [aux_sym_visibility_modifier_token3] = ACTIONS(1052), + [aux_sym__arrow_function_header_token1] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1050), + [aux_sym_cast_type_token1] = ACTIONS(1052), + [aux_sym_echo_statement_token1] = ACTIONS(1052), + [anon_sym_unset] = ACTIONS(1052), + [aux_sym_declare_statement_token1] = ACTIONS(1052), + [aux_sym_declare_statement_token2] = ACTIONS(1052), + [sym_float] = ACTIONS(1052), + [aux_sym_try_statement_token1] = ACTIONS(1052), + [aux_sym_goto_statement_token1] = ACTIONS(1052), + [aux_sym_continue_statement_token1] = ACTIONS(1052), + [aux_sym_break_statement_token1] = ACTIONS(1052), + [sym_integer] = ACTIONS(1052), + [aux_sym_return_statement_token1] = ACTIONS(1052), + [aux_sym_throw_expression_token1] = ACTIONS(1052), + [aux_sym_while_statement_token1] = ACTIONS(1052), + [aux_sym_while_statement_token2] = ACTIONS(1052), + [aux_sym_do_statement_token1] = ACTIONS(1052), + [aux_sym_for_statement_token1] = ACTIONS(1052), + [aux_sym_for_statement_token2] = ACTIONS(1052), + [aux_sym_foreach_statement_token1] = ACTIONS(1052), + [aux_sym_foreach_statement_token2] = ACTIONS(1052), + [aux_sym_if_statement_token1] = ACTIONS(1052), + [aux_sym_if_statement_token2] = ACTIONS(1052), + [aux_sym_else_if_clause_token1] = ACTIONS(1052), + [aux_sym_else_clause_token1] = ACTIONS(1052), + [aux_sym_match_expression_token1] = ACTIONS(1052), + [aux_sym_match_default_expression_token1] = ACTIONS(1052), + [aux_sym_switch_statement_token1] = ACTIONS(1052), + [aux_sym_switch_block_token1] = ACTIONS(1052), + [anon_sym_AT] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [aux_sym_clone_expression_token1] = ACTIONS(1052), + [aux_sym_print_intrinsic_token1] = ACTIONS(1052), + [aux_sym_object_creation_expression_token1] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [aux_sym__list_destructing_token1] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_self] = ACTIONS(1052), + [anon_sym_parent] = ACTIONS(1052), + [anon_sym_POUND_LBRACK] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [aux_sym_encapsed_string_token1] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [aux_sym_string_token1] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1050), + [sym_boolean] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1050), + [aux_sym_yield_expression_token1] = ACTIONS(1052), + [aux_sym_include_expression_token1] = ACTIONS(1052), + [aux_sym_include_once_expression_token1] = ACTIONS(1052), + [aux_sym_require_expression_token1] = ACTIONS(1052), + [aux_sym_require_once_expression_token1] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1054), + }, + [441] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(2351), + [sym__unary_expression] = STATE(896), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(896), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(896), + [sym_cast_variable] = STATE(576), + [sym_member_access_expression] = STATE(576), + [sym_nullsafe_member_access_expression] = STATE(576), + [sym_scoped_property_access_expression] = STATE(576), + [sym_function_call_expression] = STATE(558), + [sym_scoped_call_expression] = STATE(558), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(558), + [sym_nullsafe_member_call_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(558), + [sym_variable_name] = STATE(558), + [sym_include_expression] = STATE(896), + [sym_include_once_expression] = STATE(896), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [sym_comment] = ACTIONS(3), + }, + [442] = { + [ts_builtin_sym_end] = ACTIONS(1056), + [sym_name] = ACTIONS(1058), + [anon_sym_QMARK_GT] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1060), + [aux_sym_function_static_declaration_token1] = ACTIONS(1058), + [aux_sym_global_declaration_token1] = ACTIONS(1058), + [aux_sym_namespace_definition_token1] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [aux_sym_trait_declaration_token1] = ACTIONS(1058), + [aux_sym_interface_declaration_token1] = ACTIONS(1058), + [aux_sym_enum_declaration_token1] = ACTIONS(1058), + [aux_sym_enum_case_token1] = ACTIONS(1058), + [aux_sym_class_declaration_token1] = ACTIONS(1058), + [aux_sym_final_modifier_token1] = ACTIONS(1058), + [aux_sym_abstract_modifier_token1] = ACTIONS(1058), + [aux_sym_readonly_modifier_token1] = ACTIONS(1058), + [aux_sym_visibility_modifier_token1] = ACTIONS(1058), + [aux_sym_visibility_modifier_token2] = ACTIONS(1058), + [aux_sym_visibility_modifier_token3] = ACTIONS(1058), + [aux_sym__arrow_function_header_token1] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1056), + [aux_sym_cast_type_token1] = ACTIONS(1058), + [aux_sym_echo_statement_token1] = ACTIONS(1058), + [anon_sym_unset] = ACTIONS(1058), + [aux_sym_declare_statement_token1] = ACTIONS(1058), + [aux_sym_declare_statement_token2] = ACTIONS(1058), + [sym_float] = ACTIONS(1058), + [aux_sym_try_statement_token1] = ACTIONS(1058), + [aux_sym_goto_statement_token1] = ACTIONS(1058), + [aux_sym_continue_statement_token1] = ACTIONS(1058), + [aux_sym_break_statement_token1] = ACTIONS(1058), + [sym_integer] = ACTIONS(1058), + [aux_sym_return_statement_token1] = ACTIONS(1058), + [aux_sym_throw_expression_token1] = ACTIONS(1058), + [aux_sym_while_statement_token1] = ACTIONS(1058), + [aux_sym_while_statement_token2] = ACTIONS(1058), + [aux_sym_do_statement_token1] = ACTIONS(1058), + [aux_sym_for_statement_token1] = ACTIONS(1058), + [aux_sym_for_statement_token2] = ACTIONS(1058), + [aux_sym_foreach_statement_token1] = ACTIONS(1058), + [aux_sym_foreach_statement_token2] = ACTIONS(1058), + [aux_sym_if_statement_token1] = ACTIONS(1058), + [aux_sym_if_statement_token2] = ACTIONS(1058), + [aux_sym_else_if_clause_token1] = ACTIONS(1058), + [aux_sym_else_clause_token1] = ACTIONS(1058), + [aux_sym_match_expression_token1] = ACTIONS(1058), + [aux_sym_match_default_expression_token1] = ACTIONS(1058), + [aux_sym_switch_statement_token1] = ACTIONS(1058), + [aux_sym_switch_block_token1] = ACTIONS(1058), + [anon_sym_AT] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [aux_sym_clone_expression_token1] = ACTIONS(1058), + [aux_sym_print_intrinsic_token1] = ACTIONS(1058), + [aux_sym_object_creation_expression_token1] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [aux_sym__list_destructing_token1] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(1058), + [anon_sym_parent] = ACTIONS(1058), + [anon_sym_POUND_LBRACK] = ACTIONS(1056), + [anon_sym_SQUOTE] = ACTIONS(1056), + [aux_sym_encapsed_string_token1] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [aux_sym_string_token1] = ACTIONS(1056), + [anon_sym_LT_LT_LT] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [sym_boolean] = ACTIONS(1058), + [sym_null] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1056), + [aux_sym_yield_expression_token1] = ACTIONS(1058), + [aux_sym_include_expression_token1] = ACTIONS(1058), + [aux_sym_include_once_expression_token1] = ACTIONS(1058), + [aux_sym_require_expression_token1] = ACTIONS(1058), + [aux_sym_require_once_expression_token1] = ACTIONS(1058), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1060), + }, + [443] = { + [ts_builtin_sym_end] = ACTIONS(1062), + [sym_name] = ACTIONS(1064), + [anon_sym_QMARK_GT] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1066), + [aux_sym_function_static_declaration_token1] = ACTIONS(1064), + [aux_sym_global_declaration_token1] = ACTIONS(1064), + [aux_sym_namespace_definition_token1] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1064), + [anon_sym_BSLASH] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [aux_sym_trait_declaration_token1] = ACTIONS(1064), + [aux_sym_interface_declaration_token1] = ACTIONS(1064), + [aux_sym_enum_declaration_token1] = ACTIONS(1064), + [aux_sym_enum_case_token1] = ACTIONS(1064), + [aux_sym_class_declaration_token1] = ACTIONS(1064), + [aux_sym_final_modifier_token1] = ACTIONS(1064), + [aux_sym_abstract_modifier_token1] = ACTIONS(1064), + [aux_sym_readonly_modifier_token1] = ACTIONS(1064), + [aux_sym_visibility_modifier_token1] = ACTIONS(1064), + [aux_sym_visibility_modifier_token2] = ACTIONS(1064), + [aux_sym_visibility_modifier_token3] = ACTIONS(1064), + [aux_sym__arrow_function_header_token1] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1062), + [aux_sym_cast_type_token1] = ACTIONS(1064), + [aux_sym_echo_statement_token1] = ACTIONS(1064), + [anon_sym_unset] = ACTIONS(1064), + [aux_sym_declare_statement_token1] = ACTIONS(1064), + [aux_sym_declare_statement_token2] = ACTIONS(1064), + [sym_float] = ACTIONS(1064), + [aux_sym_try_statement_token1] = ACTIONS(1064), + [aux_sym_goto_statement_token1] = ACTIONS(1064), + [aux_sym_continue_statement_token1] = ACTIONS(1064), + [aux_sym_break_statement_token1] = ACTIONS(1064), + [sym_integer] = ACTIONS(1064), + [aux_sym_return_statement_token1] = ACTIONS(1064), + [aux_sym_throw_expression_token1] = ACTIONS(1064), + [aux_sym_while_statement_token1] = ACTIONS(1064), + [aux_sym_while_statement_token2] = ACTIONS(1064), + [aux_sym_do_statement_token1] = ACTIONS(1064), + [aux_sym_for_statement_token1] = ACTIONS(1064), + [aux_sym_for_statement_token2] = ACTIONS(1064), + [aux_sym_foreach_statement_token1] = ACTIONS(1064), + [aux_sym_foreach_statement_token2] = ACTIONS(1064), + [aux_sym_if_statement_token1] = ACTIONS(1064), + [aux_sym_if_statement_token2] = ACTIONS(1064), + [aux_sym_else_if_clause_token1] = ACTIONS(1064), + [aux_sym_else_clause_token1] = ACTIONS(1064), + [aux_sym_match_expression_token1] = ACTIONS(1064), + [aux_sym_match_default_expression_token1] = ACTIONS(1064), + [aux_sym_switch_statement_token1] = ACTIONS(1064), + [aux_sym_switch_block_token1] = ACTIONS(1064), + [anon_sym_AT] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [aux_sym_clone_expression_token1] = ACTIONS(1064), + [aux_sym_print_intrinsic_token1] = ACTIONS(1064), + [aux_sym_object_creation_expression_token1] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [aux_sym__list_destructing_token1] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(1062), + [anon_sym_self] = ACTIONS(1064), + [anon_sym_parent] = ACTIONS(1064), + [anon_sym_POUND_LBRACK] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [aux_sym_encapsed_string_token1] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [aux_sym_string_token1] = ACTIONS(1062), + [anon_sym_LT_LT_LT] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1062), + [sym_boolean] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1062), + [aux_sym_yield_expression_token1] = ACTIONS(1064), + [aux_sym_include_expression_token1] = ACTIONS(1064), + [aux_sym_include_once_expression_token1] = ACTIONS(1064), + [aux_sym_require_expression_token1] = ACTIONS(1064), + [aux_sym_require_once_expression_token1] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1066), + }, + [444] = { + [ts_builtin_sym_end] = ACTIONS(1068), + [sym_name] = ACTIONS(1070), + [anon_sym_QMARK_GT] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1072), + [aux_sym_function_static_declaration_token1] = ACTIONS(1070), + [aux_sym_global_declaration_token1] = ACTIONS(1070), + [aux_sym_namespace_definition_token1] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1070), + [anon_sym_BSLASH] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [aux_sym_trait_declaration_token1] = ACTIONS(1070), + [aux_sym_interface_declaration_token1] = ACTIONS(1070), + [aux_sym_enum_declaration_token1] = ACTIONS(1070), + [aux_sym_enum_case_token1] = ACTIONS(1070), + [aux_sym_class_declaration_token1] = ACTIONS(1070), + [aux_sym_final_modifier_token1] = ACTIONS(1070), + [aux_sym_abstract_modifier_token1] = ACTIONS(1070), + [aux_sym_readonly_modifier_token1] = ACTIONS(1070), + [aux_sym_visibility_modifier_token1] = ACTIONS(1070), + [aux_sym_visibility_modifier_token2] = ACTIONS(1070), + [aux_sym_visibility_modifier_token3] = ACTIONS(1070), + [aux_sym__arrow_function_header_token1] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1068), + [aux_sym_cast_type_token1] = ACTIONS(1070), + [aux_sym_echo_statement_token1] = ACTIONS(1070), + [anon_sym_unset] = ACTIONS(1070), + [aux_sym_declare_statement_token1] = ACTIONS(1070), + [aux_sym_declare_statement_token2] = ACTIONS(1070), + [sym_float] = ACTIONS(1070), + [aux_sym_try_statement_token1] = ACTIONS(1070), + [aux_sym_goto_statement_token1] = ACTIONS(1070), + [aux_sym_continue_statement_token1] = ACTIONS(1070), + [aux_sym_break_statement_token1] = ACTIONS(1070), + [sym_integer] = ACTIONS(1070), + [aux_sym_return_statement_token1] = ACTIONS(1070), + [aux_sym_throw_expression_token1] = ACTIONS(1070), + [aux_sym_while_statement_token1] = ACTIONS(1070), + [aux_sym_while_statement_token2] = ACTIONS(1070), + [aux_sym_do_statement_token1] = ACTIONS(1070), + [aux_sym_for_statement_token1] = ACTIONS(1070), + [aux_sym_for_statement_token2] = ACTIONS(1070), + [aux_sym_foreach_statement_token1] = ACTIONS(1070), + [aux_sym_foreach_statement_token2] = ACTIONS(1070), + [aux_sym_if_statement_token1] = ACTIONS(1070), + [aux_sym_if_statement_token2] = ACTIONS(1070), + [aux_sym_else_if_clause_token1] = ACTIONS(1070), + [aux_sym_else_clause_token1] = ACTIONS(1070), + [aux_sym_match_expression_token1] = ACTIONS(1070), + [aux_sym_match_default_expression_token1] = ACTIONS(1070), + [aux_sym_switch_statement_token1] = ACTIONS(1070), + [aux_sym_switch_block_token1] = ACTIONS(1070), + [anon_sym_AT] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [aux_sym_clone_expression_token1] = ACTIONS(1070), + [aux_sym_print_intrinsic_token1] = ACTIONS(1070), + [aux_sym_object_creation_expression_token1] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [aux_sym__list_destructing_token1] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_self] = ACTIONS(1070), + [anon_sym_parent] = ACTIONS(1070), + [anon_sym_POUND_LBRACK] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1068), + [aux_sym_encapsed_string_token1] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [aux_sym_string_token1] = ACTIONS(1068), + [anon_sym_LT_LT_LT] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [sym_boolean] = ACTIONS(1070), + [sym_null] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1068), + [aux_sym_yield_expression_token1] = ACTIONS(1070), + [aux_sym_include_expression_token1] = ACTIONS(1070), + [aux_sym_include_once_expression_token1] = ACTIONS(1070), + [aux_sym_require_expression_token1] = ACTIONS(1070), + [aux_sym_require_once_expression_token1] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1072), + }, + [445] = { + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_name] = ACTIONS(1076), + [anon_sym_QMARK_GT] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1078), + [aux_sym_function_static_declaration_token1] = ACTIONS(1076), + [aux_sym_global_declaration_token1] = ACTIONS(1076), + [aux_sym_namespace_definition_token1] = ACTIONS(1076), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1076), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1076), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1076), + [anon_sym_BSLASH] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [aux_sym_trait_declaration_token1] = ACTIONS(1076), + [aux_sym_interface_declaration_token1] = ACTIONS(1076), + [aux_sym_enum_declaration_token1] = ACTIONS(1076), + [aux_sym_enum_case_token1] = ACTIONS(1076), + [aux_sym_class_declaration_token1] = ACTIONS(1076), + [aux_sym_final_modifier_token1] = ACTIONS(1076), + [aux_sym_abstract_modifier_token1] = ACTIONS(1076), + [aux_sym_readonly_modifier_token1] = ACTIONS(1076), + [aux_sym_visibility_modifier_token1] = ACTIONS(1076), + [aux_sym_visibility_modifier_token2] = ACTIONS(1076), + [aux_sym_visibility_modifier_token3] = ACTIONS(1076), + [aux_sym__arrow_function_header_token1] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1074), + [aux_sym_cast_type_token1] = ACTIONS(1076), + [aux_sym_echo_statement_token1] = ACTIONS(1076), + [anon_sym_unset] = ACTIONS(1076), + [aux_sym_declare_statement_token1] = ACTIONS(1076), + [aux_sym_declare_statement_token2] = ACTIONS(1076), + [sym_float] = ACTIONS(1076), + [aux_sym_try_statement_token1] = ACTIONS(1076), + [aux_sym_goto_statement_token1] = ACTIONS(1076), + [aux_sym_continue_statement_token1] = ACTIONS(1076), + [aux_sym_break_statement_token1] = ACTIONS(1076), + [sym_integer] = ACTIONS(1076), + [aux_sym_return_statement_token1] = ACTIONS(1076), + [aux_sym_throw_expression_token1] = ACTIONS(1076), + [aux_sym_while_statement_token1] = ACTIONS(1076), + [aux_sym_while_statement_token2] = ACTIONS(1076), + [aux_sym_do_statement_token1] = ACTIONS(1076), + [aux_sym_for_statement_token1] = ACTIONS(1076), + [aux_sym_for_statement_token2] = ACTIONS(1076), + [aux_sym_foreach_statement_token1] = ACTIONS(1076), + [aux_sym_foreach_statement_token2] = ACTIONS(1076), + [aux_sym_if_statement_token1] = ACTIONS(1076), + [aux_sym_if_statement_token2] = ACTIONS(1076), + [aux_sym_else_if_clause_token1] = ACTIONS(1076), + [aux_sym_else_clause_token1] = ACTIONS(1076), + [aux_sym_match_expression_token1] = ACTIONS(1076), + [aux_sym_match_default_expression_token1] = ACTIONS(1076), + [aux_sym_switch_statement_token1] = ACTIONS(1076), + [aux_sym_switch_block_token1] = ACTIONS(1076), + [anon_sym_AT] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [aux_sym_clone_expression_token1] = ACTIONS(1076), + [aux_sym_print_intrinsic_token1] = ACTIONS(1076), + [aux_sym_object_creation_expression_token1] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [aux_sym__list_destructing_token1] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_self] = ACTIONS(1076), + [anon_sym_parent] = ACTIONS(1076), + [anon_sym_POUND_LBRACK] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [aux_sym_encapsed_string_token1] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [aux_sym_string_token1] = ACTIONS(1074), + [anon_sym_LT_LT_LT] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1074), + [sym_boolean] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1074), + [aux_sym_yield_expression_token1] = ACTIONS(1076), + [aux_sym_include_expression_token1] = ACTIONS(1076), + [aux_sym_include_once_expression_token1] = ACTIONS(1076), + [aux_sym_require_expression_token1] = ACTIONS(1076), + [aux_sym_require_once_expression_token1] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1078), + }, + [446] = { + [sym_qualified_name] = STATE(811), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym_match_expression] = STATE(2366), + [sym__unary_expression] = STATE(1064), + [sym_unary_op_expression] = STATE(1076), + [sym_exponentiation_expression] = STATE(1064), + [sym_clone_expression] = STATE(1076), + [sym__primary_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(790), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_expression] = STATE(1064), + [sym_cast_variable] = STATE(619), + [sym_member_access_expression] = STATE(619), + [sym_nullsafe_member_access_expression] = STATE(619), + [sym_scoped_property_access_expression] = STATE(619), + [sym_function_call_expression] = STATE(584), + [sym_scoped_call_expression] = STATE(584), + [sym__scope_resolution_qualifier] = STATE(2487), + [sym_relative_scope] = STATE(2487), + [sym_member_call_expression] = STATE(584), + [sym_nullsafe_member_call_expression] = STATE(584), + [sym_subscript_expression] = STATE(584), + [sym__dereferencable_expression] = STATE(1600), + [sym_array_creation_expression] = STATE(790), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(790), + [sym_string] = STATE(790), + [sym_heredoc] = STATE(790), + [sym_nowdoc] = STATE(790), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(790), + [sym_dynamic_variable_name] = STATE(584), + [sym_variable_name] = STATE(584), + [sym_include_expression] = STATE(1064), + [sym_include_once_expression] = STATE(1064), + [sym__reserved_identifier] = STATE(1503), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [sym_comment] = ACTIONS(3), + }, + [447] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(2348), + [sym__unary_expression] = STATE(896), + [sym_unary_op_expression] = STATE(997), + [sym_exponentiation_expression] = STATE(896), + [sym_clone_expression] = STATE(997), + [sym__primary_expression] = STATE(997), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(896), + [sym_cast_variable] = STATE(576), + [sym_member_access_expression] = STATE(576), + [sym_nullsafe_member_access_expression] = STATE(576), + [sym_scoped_property_access_expression] = STATE(576), + [sym_function_call_expression] = STATE(558), + [sym_scoped_call_expression] = STATE(558), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(558), + [sym_nullsafe_member_call_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(558), + [sym_variable_name] = STATE(558), + [sym_include_expression] = STATE(896), + [sym_include_once_expression] = STATE(896), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(3), + }, + [448] = { + [sym_qualified_name] = STATE(681), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym_match_expression] = STATE(2351), + [sym__unary_expression] = STATE(896), + [sym_unary_op_expression] = STATE(961), + [sym_exponentiation_expression] = STATE(896), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(674), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_expression] = STATE(896), + [sym_cast_variable] = STATE(616), + [sym_member_access_expression] = STATE(616), + [sym_nullsafe_member_access_expression] = STATE(616), + [sym_scoped_property_access_expression] = STATE(616), + [sym_function_call_expression] = STATE(591), + [sym_scoped_call_expression] = STATE(591), + [sym__scope_resolution_qualifier] = STATE(2475), + [sym_relative_scope] = STATE(2475), + [sym_member_call_expression] = STATE(591), + [sym_nullsafe_member_call_expression] = STATE(591), + [sym_subscript_expression] = STATE(591), + [sym__dereferencable_expression] = STATE(1659), + [sym_array_creation_expression] = STATE(674), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(674), + [sym_string] = STATE(674), + [sym_heredoc] = STATE(674), + [sym_nowdoc] = STATE(674), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(674), + [sym_dynamic_variable_name] = STATE(591), + [sym_variable_name] = STATE(591), + [sym_include_expression] = STATE(896), + [sym_include_once_expression] = STATE(896), + [sym__reserved_identifier] = STATE(1495), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [sym_comment] = ACTIONS(3), + }, + [449] = { + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_name] = ACTIONS(1084), + [anon_sym_QMARK_GT] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [aux_sym_function_static_declaration_token1] = ACTIONS(1084), + [aux_sym_global_declaration_token1] = ACTIONS(1084), + [aux_sym_namespace_definition_token1] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1084), + [anon_sym_BSLASH] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [aux_sym_trait_declaration_token1] = ACTIONS(1084), + [aux_sym_interface_declaration_token1] = ACTIONS(1084), + [aux_sym_enum_declaration_token1] = ACTIONS(1084), + [aux_sym_enum_case_token1] = ACTIONS(1084), + [aux_sym_class_declaration_token1] = ACTIONS(1084), + [aux_sym_final_modifier_token1] = ACTIONS(1084), + [aux_sym_abstract_modifier_token1] = ACTIONS(1084), + [aux_sym_readonly_modifier_token1] = ACTIONS(1084), + [aux_sym_visibility_modifier_token1] = ACTIONS(1084), + [aux_sym_visibility_modifier_token2] = ACTIONS(1084), + [aux_sym_visibility_modifier_token3] = ACTIONS(1084), + [aux_sym__arrow_function_header_token1] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1082), + [aux_sym_cast_type_token1] = ACTIONS(1084), + [aux_sym_echo_statement_token1] = ACTIONS(1084), + [anon_sym_unset] = ACTIONS(1084), + [aux_sym_declare_statement_token1] = ACTIONS(1084), + [aux_sym_declare_statement_token2] = ACTIONS(1084), + [sym_float] = ACTIONS(1084), + [aux_sym_try_statement_token1] = ACTIONS(1084), + [aux_sym_goto_statement_token1] = ACTIONS(1084), + [aux_sym_continue_statement_token1] = ACTIONS(1084), + [aux_sym_break_statement_token1] = ACTIONS(1084), + [sym_integer] = ACTIONS(1084), + [aux_sym_return_statement_token1] = ACTIONS(1084), + [aux_sym_throw_expression_token1] = ACTIONS(1084), + [aux_sym_while_statement_token1] = ACTIONS(1084), + [aux_sym_while_statement_token2] = ACTIONS(1084), + [aux_sym_do_statement_token1] = ACTIONS(1084), + [aux_sym_for_statement_token1] = ACTIONS(1084), + [aux_sym_for_statement_token2] = ACTIONS(1084), + [aux_sym_foreach_statement_token1] = ACTIONS(1084), + [aux_sym_foreach_statement_token2] = ACTIONS(1084), + [aux_sym_if_statement_token1] = ACTIONS(1084), + [aux_sym_if_statement_token2] = ACTIONS(1084), + [aux_sym_else_if_clause_token1] = ACTIONS(1084), + [aux_sym_else_clause_token1] = ACTIONS(1084), + [aux_sym_match_expression_token1] = ACTIONS(1084), + [aux_sym_match_default_expression_token1] = ACTIONS(1084), + [aux_sym_switch_statement_token1] = ACTIONS(1084), + [aux_sym_switch_block_token1] = ACTIONS(1084), + [anon_sym_AT] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [aux_sym_clone_expression_token1] = ACTIONS(1084), + [aux_sym_print_intrinsic_token1] = ACTIONS(1084), + [aux_sym_object_creation_expression_token1] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [aux_sym__list_destructing_token1] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_self] = ACTIONS(1084), + [anon_sym_parent] = ACTIONS(1084), + [anon_sym_POUND_LBRACK] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [aux_sym_encapsed_string_token1] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [aux_sym_string_token1] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_boolean] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), + [anon_sym_DOLLAR] = ACTIONS(1082), + [aux_sym_yield_expression_token1] = ACTIONS(1084), + [aux_sym_include_expression_token1] = ACTIONS(1084), + [aux_sym_include_once_expression_token1] = ACTIONS(1084), + [aux_sym_require_expression_token1] = ACTIONS(1084), + [aux_sym_require_once_expression_token1] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1082), + }, + [450] = { + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_name] = ACTIONS(1088), + [anon_sym_QMARK_GT] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [aux_sym_function_static_declaration_token1] = ACTIONS(1088), + [aux_sym_global_declaration_token1] = ACTIONS(1088), + [aux_sym_namespace_definition_token1] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1088), + [anon_sym_BSLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [aux_sym_trait_declaration_token1] = ACTIONS(1088), + [aux_sym_interface_declaration_token1] = ACTIONS(1088), + [aux_sym_enum_declaration_token1] = ACTIONS(1088), + [aux_sym_enum_case_token1] = ACTIONS(1088), + [aux_sym_class_declaration_token1] = ACTIONS(1088), + [aux_sym_final_modifier_token1] = ACTIONS(1088), + [aux_sym_abstract_modifier_token1] = ACTIONS(1088), + [aux_sym_readonly_modifier_token1] = ACTIONS(1088), + [aux_sym_visibility_modifier_token1] = ACTIONS(1088), + [aux_sym_visibility_modifier_token2] = ACTIONS(1088), + [aux_sym_visibility_modifier_token3] = ACTIONS(1088), + [aux_sym__arrow_function_header_token1] = ACTIONS(1088), + [anon_sym_LPAREN] = ACTIONS(1086), + [aux_sym_cast_type_token1] = ACTIONS(1088), + [aux_sym_echo_statement_token1] = ACTIONS(1088), + [anon_sym_unset] = ACTIONS(1088), + [aux_sym_declare_statement_token1] = ACTIONS(1088), + [aux_sym_declare_statement_token2] = ACTIONS(1088), + [sym_float] = ACTIONS(1088), + [aux_sym_try_statement_token1] = ACTIONS(1088), + [aux_sym_goto_statement_token1] = ACTIONS(1088), + [aux_sym_continue_statement_token1] = ACTIONS(1088), + [aux_sym_break_statement_token1] = ACTIONS(1088), + [sym_integer] = ACTIONS(1088), + [aux_sym_return_statement_token1] = ACTIONS(1088), + [aux_sym_throw_expression_token1] = ACTIONS(1088), + [aux_sym_while_statement_token1] = ACTIONS(1088), + [aux_sym_while_statement_token2] = ACTIONS(1088), + [aux_sym_do_statement_token1] = ACTIONS(1088), + [aux_sym_for_statement_token1] = ACTIONS(1088), + [aux_sym_for_statement_token2] = ACTIONS(1088), + [aux_sym_foreach_statement_token1] = ACTIONS(1088), + [aux_sym_foreach_statement_token2] = ACTIONS(1088), + [aux_sym_if_statement_token1] = ACTIONS(1088), + [aux_sym_if_statement_token2] = ACTIONS(1088), + [aux_sym_else_if_clause_token1] = ACTIONS(1088), + [aux_sym_else_clause_token1] = ACTIONS(1088), + [aux_sym_match_expression_token1] = ACTIONS(1088), + [aux_sym_match_default_expression_token1] = ACTIONS(1088), + [aux_sym_switch_statement_token1] = ACTIONS(1088), + [aux_sym_switch_block_token1] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [aux_sym_clone_expression_token1] = ACTIONS(1088), + [aux_sym_print_intrinsic_token1] = ACTIONS(1088), + [aux_sym_object_creation_expression_token1] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [aux_sym__list_destructing_token1] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_self] = ACTIONS(1088), + [anon_sym_parent] = ACTIONS(1088), + [anon_sym_POUND_LBRACK] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [aux_sym_encapsed_string_token1] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [aux_sym_string_token1] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_boolean] = ACTIONS(1088), + [sym_null] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1086), + [aux_sym_yield_expression_token1] = ACTIONS(1088), + [aux_sym_include_expression_token1] = ACTIONS(1088), + [aux_sym_include_once_expression_token1] = ACTIONS(1088), + [aux_sym_require_expression_token1] = ACTIONS(1088), + [aux_sym_require_once_expression_token1] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + }, + [451] = { + [ts_builtin_sym_end] = ACTIONS(1090), + [sym_name] = ACTIONS(1092), + [anon_sym_QMARK_GT] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [aux_sym_function_static_declaration_token1] = ACTIONS(1092), + [aux_sym_global_declaration_token1] = ACTIONS(1092), + [aux_sym_namespace_definition_token1] = ACTIONS(1092), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1092), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1092), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1092), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [aux_sym_trait_declaration_token1] = ACTIONS(1092), + [aux_sym_interface_declaration_token1] = ACTIONS(1092), + [aux_sym_enum_declaration_token1] = ACTIONS(1092), + [aux_sym_enum_case_token1] = ACTIONS(1092), + [aux_sym_class_declaration_token1] = ACTIONS(1092), + [aux_sym_final_modifier_token1] = ACTIONS(1092), + [aux_sym_abstract_modifier_token1] = ACTIONS(1092), + [aux_sym_readonly_modifier_token1] = ACTIONS(1092), + [aux_sym_visibility_modifier_token1] = ACTIONS(1092), + [aux_sym_visibility_modifier_token2] = ACTIONS(1092), + [aux_sym_visibility_modifier_token3] = ACTIONS(1092), + [aux_sym__arrow_function_header_token1] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1090), + [aux_sym_cast_type_token1] = ACTIONS(1092), + [aux_sym_echo_statement_token1] = ACTIONS(1092), + [anon_sym_unset] = ACTIONS(1092), + [aux_sym_declare_statement_token1] = ACTIONS(1092), + [aux_sym_declare_statement_token2] = ACTIONS(1092), + [sym_float] = ACTIONS(1092), + [aux_sym_try_statement_token1] = ACTIONS(1092), + [aux_sym_goto_statement_token1] = ACTIONS(1092), + [aux_sym_continue_statement_token1] = ACTIONS(1092), + [aux_sym_break_statement_token1] = ACTIONS(1092), + [sym_integer] = ACTIONS(1092), + [aux_sym_return_statement_token1] = ACTIONS(1092), + [aux_sym_throw_expression_token1] = ACTIONS(1092), + [aux_sym_while_statement_token1] = ACTIONS(1092), + [aux_sym_while_statement_token2] = ACTIONS(1092), + [aux_sym_do_statement_token1] = ACTIONS(1092), + [aux_sym_for_statement_token1] = ACTIONS(1092), + [aux_sym_for_statement_token2] = ACTIONS(1092), + [aux_sym_foreach_statement_token1] = ACTIONS(1092), + [aux_sym_foreach_statement_token2] = ACTIONS(1092), + [aux_sym_if_statement_token1] = ACTIONS(1092), + [aux_sym_if_statement_token2] = ACTIONS(1092), + [aux_sym_else_if_clause_token1] = ACTIONS(1092), + [aux_sym_else_clause_token1] = ACTIONS(1092), + [aux_sym_match_expression_token1] = ACTIONS(1092), + [aux_sym_match_default_expression_token1] = ACTIONS(1092), + [aux_sym_switch_statement_token1] = ACTIONS(1092), + [aux_sym_switch_block_token1] = ACTIONS(1092), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [aux_sym_clone_expression_token1] = ACTIONS(1092), + [aux_sym_print_intrinsic_token1] = ACTIONS(1092), + [aux_sym_object_creation_expression_token1] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [aux_sym__list_destructing_token1] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1090), + [anon_sym_self] = ACTIONS(1092), + [anon_sym_parent] = ACTIONS(1092), + [anon_sym_POUND_LBRACK] = ACTIONS(1090), + [anon_sym_SQUOTE] = ACTIONS(1090), + [aux_sym_encapsed_string_token1] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [aux_sym_string_token1] = ACTIONS(1090), + [anon_sym_LT_LT_LT] = ACTIONS(1090), + [anon_sym_BQUOTE] = ACTIONS(1090), + [sym_boolean] = ACTIONS(1092), + [sym_null] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1090), + [aux_sym_yield_expression_token1] = ACTIONS(1092), + [aux_sym_include_expression_token1] = ACTIONS(1092), + [aux_sym_include_once_expression_token1] = ACTIONS(1092), + [aux_sym_require_expression_token1] = ACTIONS(1092), + [aux_sym_require_once_expression_token1] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + }, + [452] = { + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_name] = ACTIONS(1096), + [anon_sym_QMARK_GT] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1094), + [aux_sym_function_static_declaration_token1] = ACTIONS(1096), + [aux_sym_global_declaration_token1] = ACTIONS(1096), + [aux_sym_namespace_definition_token1] = ACTIONS(1096), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1096), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1096), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1096), + [anon_sym_BSLASH] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [aux_sym_trait_declaration_token1] = ACTIONS(1096), + [aux_sym_interface_declaration_token1] = ACTIONS(1096), + [aux_sym_enum_declaration_token1] = ACTIONS(1096), + [aux_sym_enum_case_token1] = ACTIONS(1096), + [aux_sym_class_declaration_token1] = ACTIONS(1096), + [aux_sym_final_modifier_token1] = ACTIONS(1096), + [aux_sym_abstract_modifier_token1] = ACTIONS(1096), + [aux_sym_readonly_modifier_token1] = ACTIONS(1096), + [aux_sym_visibility_modifier_token1] = ACTIONS(1096), + [aux_sym_visibility_modifier_token2] = ACTIONS(1096), + [aux_sym_visibility_modifier_token3] = ACTIONS(1096), + [aux_sym__arrow_function_header_token1] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(1094), + [aux_sym_cast_type_token1] = ACTIONS(1096), + [aux_sym_echo_statement_token1] = ACTIONS(1096), + [anon_sym_unset] = ACTIONS(1096), + [aux_sym_declare_statement_token1] = ACTIONS(1096), + [aux_sym_declare_statement_token2] = ACTIONS(1096), + [sym_float] = ACTIONS(1096), + [aux_sym_try_statement_token1] = ACTIONS(1096), + [aux_sym_goto_statement_token1] = ACTIONS(1096), + [aux_sym_continue_statement_token1] = ACTIONS(1096), + [aux_sym_break_statement_token1] = ACTIONS(1096), + [sym_integer] = ACTIONS(1096), + [aux_sym_return_statement_token1] = ACTIONS(1096), + [aux_sym_throw_expression_token1] = ACTIONS(1096), + [aux_sym_while_statement_token1] = ACTIONS(1096), + [aux_sym_while_statement_token2] = ACTIONS(1096), + [aux_sym_do_statement_token1] = ACTIONS(1096), + [aux_sym_for_statement_token1] = ACTIONS(1096), + [aux_sym_for_statement_token2] = ACTIONS(1096), + [aux_sym_foreach_statement_token1] = ACTIONS(1096), + [aux_sym_foreach_statement_token2] = ACTIONS(1096), + [aux_sym_if_statement_token1] = ACTIONS(1096), + [aux_sym_if_statement_token2] = ACTIONS(1096), + [aux_sym_else_if_clause_token1] = ACTIONS(1096), + [aux_sym_else_clause_token1] = ACTIONS(1096), + [aux_sym_match_expression_token1] = ACTIONS(1096), + [aux_sym_match_default_expression_token1] = ACTIONS(1096), + [aux_sym_switch_statement_token1] = ACTIONS(1096), + [aux_sym_switch_block_token1] = ACTIONS(1096), + [anon_sym_AT] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [aux_sym_clone_expression_token1] = ACTIONS(1096), + [aux_sym_print_intrinsic_token1] = ACTIONS(1096), + [aux_sym_object_creation_expression_token1] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [aux_sym__list_destructing_token1] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1094), + [anon_sym_self] = ACTIONS(1096), + [anon_sym_parent] = ACTIONS(1096), + [anon_sym_POUND_LBRACK] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [aux_sym_encapsed_string_token1] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [aux_sym_string_token1] = ACTIONS(1094), + [anon_sym_LT_LT_LT] = ACTIONS(1094), + [anon_sym_BQUOTE] = ACTIONS(1094), + [sym_boolean] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), + [anon_sym_DOLLAR] = ACTIONS(1094), + [aux_sym_yield_expression_token1] = ACTIONS(1096), + [aux_sym_include_expression_token1] = ACTIONS(1096), + [aux_sym_include_once_expression_token1] = ACTIONS(1096), + [aux_sym_require_expression_token1] = ACTIONS(1096), + [aux_sym_require_once_expression_token1] = ACTIONS(1096), + [sym_comment] = ACTIONS(3), + }, + [453] = { + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_name] = ACTIONS(1100), + [anon_sym_QMARK_GT] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1098), + [aux_sym_function_static_declaration_token1] = ACTIONS(1100), + [aux_sym_global_declaration_token1] = ACTIONS(1100), + [aux_sym_namespace_definition_token1] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1100), + [anon_sym_BSLASH] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [aux_sym_trait_declaration_token1] = ACTIONS(1100), + [aux_sym_interface_declaration_token1] = ACTIONS(1100), + [aux_sym_enum_declaration_token1] = ACTIONS(1100), + [aux_sym_enum_case_token1] = ACTIONS(1100), + [aux_sym_class_declaration_token1] = ACTIONS(1100), + [aux_sym_final_modifier_token1] = ACTIONS(1100), + [aux_sym_abstract_modifier_token1] = ACTIONS(1100), + [aux_sym_readonly_modifier_token1] = ACTIONS(1100), + [aux_sym_visibility_modifier_token1] = ACTIONS(1100), + [aux_sym_visibility_modifier_token2] = ACTIONS(1100), + [aux_sym_visibility_modifier_token3] = ACTIONS(1100), + [aux_sym__arrow_function_header_token1] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [aux_sym_cast_type_token1] = ACTIONS(1100), + [aux_sym_echo_statement_token1] = ACTIONS(1100), + [anon_sym_unset] = ACTIONS(1100), + [aux_sym_declare_statement_token1] = ACTIONS(1100), + [aux_sym_declare_statement_token2] = ACTIONS(1100), + [sym_float] = ACTIONS(1100), + [aux_sym_try_statement_token1] = ACTIONS(1100), + [aux_sym_goto_statement_token1] = ACTIONS(1100), + [aux_sym_continue_statement_token1] = ACTIONS(1100), + [aux_sym_break_statement_token1] = ACTIONS(1100), + [sym_integer] = ACTIONS(1100), + [aux_sym_return_statement_token1] = ACTIONS(1100), + [aux_sym_throw_expression_token1] = ACTIONS(1100), + [aux_sym_while_statement_token1] = ACTIONS(1100), + [aux_sym_while_statement_token2] = ACTIONS(1100), + [aux_sym_do_statement_token1] = ACTIONS(1100), + [aux_sym_for_statement_token1] = ACTIONS(1100), + [aux_sym_for_statement_token2] = ACTIONS(1100), + [aux_sym_foreach_statement_token1] = ACTIONS(1100), + [aux_sym_foreach_statement_token2] = ACTIONS(1100), + [aux_sym_if_statement_token1] = ACTIONS(1100), + [aux_sym_if_statement_token2] = ACTIONS(1100), + [aux_sym_else_if_clause_token1] = ACTIONS(1100), + [aux_sym_else_clause_token1] = ACTIONS(1100), + [aux_sym_match_expression_token1] = ACTIONS(1100), + [aux_sym_match_default_expression_token1] = ACTIONS(1100), + [aux_sym_switch_statement_token1] = ACTIONS(1100), + [aux_sym_switch_block_token1] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1098), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [aux_sym_clone_expression_token1] = ACTIONS(1100), + [aux_sym_print_intrinsic_token1] = ACTIONS(1100), + [aux_sym_object_creation_expression_token1] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [aux_sym__list_destructing_token1] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_self] = ACTIONS(1100), + [anon_sym_parent] = ACTIONS(1100), + [anon_sym_POUND_LBRACK] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [aux_sym_encapsed_string_token1] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [aux_sym_string_token1] = ACTIONS(1098), + [anon_sym_LT_LT_LT] = ACTIONS(1098), + [anon_sym_BQUOTE] = ACTIONS(1098), + [sym_boolean] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1098), + [aux_sym_yield_expression_token1] = ACTIONS(1100), + [aux_sym_include_expression_token1] = ACTIONS(1100), + [aux_sym_include_once_expression_token1] = ACTIONS(1100), + [aux_sym_require_expression_token1] = ACTIONS(1100), + [aux_sym_require_once_expression_token1] = ACTIONS(1100), + [sym_comment] = ACTIONS(3), + }, + [454] = { + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_name] = ACTIONS(1104), + [anon_sym_QMARK_GT] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [aux_sym_function_static_declaration_token1] = ACTIONS(1104), + [aux_sym_global_declaration_token1] = ACTIONS(1104), + [aux_sym_namespace_definition_token1] = ACTIONS(1104), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1104), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1104), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1104), + [anon_sym_BSLASH] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [aux_sym_trait_declaration_token1] = ACTIONS(1104), + [aux_sym_interface_declaration_token1] = ACTIONS(1104), + [aux_sym_enum_declaration_token1] = ACTIONS(1104), + [aux_sym_enum_case_token1] = ACTIONS(1104), + [aux_sym_class_declaration_token1] = ACTIONS(1104), + [aux_sym_final_modifier_token1] = ACTIONS(1104), + [aux_sym_abstract_modifier_token1] = ACTIONS(1104), + [aux_sym_readonly_modifier_token1] = ACTIONS(1104), + [aux_sym_visibility_modifier_token1] = ACTIONS(1104), + [aux_sym_visibility_modifier_token2] = ACTIONS(1104), + [aux_sym_visibility_modifier_token3] = ACTIONS(1104), + [aux_sym__arrow_function_header_token1] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [aux_sym_cast_type_token1] = ACTIONS(1104), + [aux_sym_echo_statement_token1] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [aux_sym_declare_statement_token1] = ACTIONS(1104), + [aux_sym_declare_statement_token2] = ACTIONS(1104), + [sym_float] = ACTIONS(1104), + [aux_sym_try_statement_token1] = ACTIONS(1104), + [aux_sym_goto_statement_token1] = ACTIONS(1104), + [aux_sym_continue_statement_token1] = ACTIONS(1104), + [aux_sym_break_statement_token1] = ACTIONS(1104), + [sym_integer] = ACTIONS(1104), + [aux_sym_return_statement_token1] = ACTIONS(1104), + [aux_sym_throw_expression_token1] = ACTIONS(1104), + [aux_sym_while_statement_token1] = ACTIONS(1104), + [aux_sym_while_statement_token2] = ACTIONS(1104), + [aux_sym_do_statement_token1] = ACTIONS(1104), + [aux_sym_for_statement_token1] = ACTIONS(1104), + [aux_sym_for_statement_token2] = ACTIONS(1104), + [aux_sym_foreach_statement_token1] = ACTIONS(1104), + [aux_sym_foreach_statement_token2] = ACTIONS(1104), + [aux_sym_if_statement_token1] = ACTIONS(1104), + [aux_sym_if_statement_token2] = ACTIONS(1104), + [aux_sym_else_if_clause_token1] = ACTIONS(1104), + [aux_sym_else_clause_token1] = ACTIONS(1104), + [aux_sym_match_expression_token1] = ACTIONS(1104), + [aux_sym_match_default_expression_token1] = ACTIONS(1104), + [aux_sym_switch_statement_token1] = ACTIONS(1104), + [aux_sym_switch_block_token1] = ACTIONS(1104), + [anon_sym_AT] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [aux_sym_clone_expression_token1] = ACTIONS(1104), + [aux_sym_print_intrinsic_token1] = ACTIONS(1104), + [aux_sym_object_creation_expression_token1] = ACTIONS(1104), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [aux_sym__list_destructing_token1] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_self] = ACTIONS(1104), + [anon_sym_parent] = ACTIONS(1104), + [anon_sym_POUND_LBRACK] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [aux_sym_encapsed_string_token1] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [aux_sym_string_token1] = ACTIONS(1102), + [anon_sym_LT_LT_LT] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [sym_boolean] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), + [anon_sym_DOLLAR] = ACTIONS(1102), + [aux_sym_yield_expression_token1] = ACTIONS(1104), + [aux_sym_include_expression_token1] = ACTIONS(1104), + [aux_sym_include_once_expression_token1] = ACTIONS(1104), + [aux_sym_require_expression_token1] = ACTIONS(1104), + [aux_sym_require_once_expression_token1] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + }, + [455] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_name] = ACTIONS(1108), + [anon_sym_QMARK_GT] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [aux_sym_function_static_declaration_token1] = ACTIONS(1108), + [aux_sym_global_declaration_token1] = ACTIONS(1108), + [aux_sym_namespace_definition_token1] = ACTIONS(1108), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1108), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1108), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1108), + [anon_sym_BSLASH] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [aux_sym_trait_declaration_token1] = ACTIONS(1108), + [aux_sym_interface_declaration_token1] = ACTIONS(1108), + [aux_sym_enum_declaration_token1] = ACTIONS(1108), + [aux_sym_enum_case_token1] = ACTIONS(1108), + [aux_sym_class_declaration_token1] = ACTIONS(1108), + [aux_sym_final_modifier_token1] = ACTIONS(1108), + [aux_sym_abstract_modifier_token1] = ACTIONS(1108), + [aux_sym_readonly_modifier_token1] = ACTIONS(1108), + [aux_sym_visibility_modifier_token1] = ACTIONS(1108), + [aux_sym_visibility_modifier_token2] = ACTIONS(1108), + [aux_sym_visibility_modifier_token3] = ACTIONS(1108), + [aux_sym__arrow_function_header_token1] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [aux_sym_cast_type_token1] = ACTIONS(1108), + [aux_sym_echo_statement_token1] = ACTIONS(1108), + [anon_sym_unset] = ACTIONS(1108), + [aux_sym_declare_statement_token1] = ACTIONS(1108), + [aux_sym_declare_statement_token2] = ACTIONS(1108), + [sym_float] = ACTIONS(1108), + [aux_sym_try_statement_token1] = ACTIONS(1108), + [aux_sym_goto_statement_token1] = ACTIONS(1108), + [aux_sym_continue_statement_token1] = ACTIONS(1108), + [aux_sym_break_statement_token1] = ACTIONS(1108), + [sym_integer] = ACTIONS(1108), + [aux_sym_return_statement_token1] = ACTIONS(1108), + [aux_sym_throw_expression_token1] = ACTIONS(1108), + [aux_sym_while_statement_token1] = ACTIONS(1108), + [aux_sym_while_statement_token2] = ACTIONS(1108), + [aux_sym_do_statement_token1] = ACTIONS(1108), + [aux_sym_for_statement_token1] = ACTIONS(1108), + [aux_sym_for_statement_token2] = ACTIONS(1108), + [aux_sym_foreach_statement_token1] = ACTIONS(1108), + [aux_sym_foreach_statement_token2] = ACTIONS(1108), + [aux_sym_if_statement_token1] = ACTIONS(1108), + [aux_sym_if_statement_token2] = ACTIONS(1108), + [aux_sym_else_if_clause_token1] = ACTIONS(1108), + [aux_sym_else_clause_token1] = ACTIONS(1108), + [aux_sym_match_expression_token1] = ACTIONS(1108), + [aux_sym_match_default_expression_token1] = ACTIONS(1108), + [aux_sym_switch_statement_token1] = ACTIONS(1108), + [aux_sym_switch_block_token1] = ACTIONS(1108), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [aux_sym_clone_expression_token1] = ACTIONS(1108), + [aux_sym_print_intrinsic_token1] = ACTIONS(1108), + [aux_sym_object_creation_expression_token1] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [aux_sym__list_destructing_token1] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_self] = ACTIONS(1108), + [anon_sym_parent] = ACTIONS(1108), + [anon_sym_POUND_LBRACK] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [aux_sym_encapsed_string_token1] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [aux_sym_string_token1] = ACTIONS(1106), + [anon_sym_LT_LT_LT] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [sym_boolean] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [anon_sym_DOLLAR] = ACTIONS(1106), + [aux_sym_yield_expression_token1] = ACTIONS(1108), + [aux_sym_include_expression_token1] = ACTIONS(1108), + [aux_sym_include_once_expression_token1] = ACTIONS(1108), + [aux_sym_require_expression_token1] = ACTIONS(1108), + [aux_sym_require_once_expression_token1] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + }, + [456] = { + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_name] = ACTIONS(1112), + [anon_sym_QMARK_GT] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [aux_sym_function_static_declaration_token1] = ACTIONS(1112), + [aux_sym_global_declaration_token1] = ACTIONS(1112), + [aux_sym_namespace_definition_token1] = ACTIONS(1112), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1112), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1112), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1112), + [anon_sym_BSLASH] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [aux_sym_trait_declaration_token1] = ACTIONS(1112), + [aux_sym_interface_declaration_token1] = ACTIONS(1112), + [aux_sym_enum_declaration_token1] = ACTIONS(1112), + [aux_sym_enum_case_token1] = ACTIONS(1112), + [aux_sym_class_declaration_token1] = ACTIONS(1112), + [aux_sym_final_modifier_token1] = ACTIONS(1112), + [aux_sym_abstract_modifier_token1] = ACTIONS(1112), + [aux_sym_readonly_modifier_token1] = ACTIONS(1112), + [aux_sym_visibility_modifier_token1] = ACTIONS(1112), + [aux_sym_visibility_modifier_token2] = ACTIONS(1112), + [aux_sym_visibility_modifier_token3] = ACTIONS(1112), + [aux_sym__arrow_function_header_token1] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_cast_type_token1] = ACTIONS(1112), + [aux_sym_echo_statement_token1] = ACTIONS(1112), + [anon_sym_unset] = ACTIONS(1112), + [aux_sym_declare_statement_token1] = ACTIONS(1112), + [aux_sym_declare_statement_token2] = ACTIONS(1112), + [sym_float] = ACTIONS(1112), + [aux_sym_try_statement_token1] = ACTIONS(1112), + [aux_sym_goto_statement_token1] = ACTIONS(1112), + [aux_sym_continue_statement_token1] = ACTIONS(1112), + [aux_sym_break_statement_token1] = ACTIONS(1112), + [sym_integer] = ACTIONS(1112), + [aux_sym_return_statement_token1] = ACTIONS(1112), + [aux_sym_throw_expression_token1] = ACTIONS(1112), + [aux_sym_while_statement_token1] = ACTIONS(1112), + [aux_sym_while_statement_token2] = ACTIONS(1112), + [aux_sym_do_statement_token1] = ACTIONS(1112), + [aux_sym_for_statement_token1] = ACTIONS(1112), + [aux_sym_for_statement_token2] = ACTIONS(1112), + [aux_sym_foreach_statement_token1] = ACTIONS(1112), + [aux_sym_foreach_statement_token2] = ACTIONS(1112), + [aux_sym_if_statement_token1] = ACTIONS(1112), + [aux_sym_if_statement_token2] = ACTIONS(1112), + [aux_sym_else_if_clause_token1] = ACTIONS(1112), + [aux_sym_else_clause_token1] = ACTIONS(1112), + [aux_sym_match_expression_token1] = ACTIONS(1112), + [aux_sym_match_default_expression_token1] = ACTIONS(1112), + [aux_sym_switch_statement_token1] = ACTIONS(1112), + [aux_sym_switch_block_token1] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [aux_sym_clone_expression_token1] = ACTIONS(1112), + [aux_sym_print_intrinsic_token1] = ACTIONS(1112), + [aux_sym_object_creation_expression_token1] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [aux_sym__list_destructing_token1] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_self] = ACTIONS(1112), + [anon_sym_parent] = ACTIONS(1112), + [anon_sym_POUND_LBRACK] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [aux_sym_encapsed_string_token1] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [aux_sym_string_token1] = ACTIONS(1110), + [anon_sym_LT_LT_LT] = ACTIONS(1110), + [anon_sym_BQUOTE] = ACTIONS(1110), + [sym_boolean] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1110), + [aux_sym_yield_expression_token1] = ACTIONS(1112), + [aux_sym_include_expression_token1] = ACTIONS(1112), + [aux_sym_include_once_expression_token1] = ACTIONS(1112), + [aux_sym_require_expression_token1] = ACTIONS(1112), + [aux_sym_require_once_expression_token1] = ACTIONS(1112), + [sym_comment] = ACTIONS(3), + }, + [457] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_name] = ACTIONS(1004), + [anon_sym_QMARK_GT] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [aux_sym_function_static_declaration_token1] = ACTIONS(1004), + [aux_sym_global_declaration_token1] = ACTIONS(1004), + [aux_sym_namespace_definition_token1] = ACTIONS(1004), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1004), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1004), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1004), + [anon_sym_BSLASH] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [aux_sym_trait_declaration_token1] = ACTIONS(1004), + [aux_sym_interface_declaration_token1] = ACTIONS(1004), + [aux_sym_enum_declaration_token1] = ACTIONS(1004), + [aux_sym_enum_case_token1] = ACTIONS(1004), + [aux_sym_class_declaration_token1] = ACTIONS(1004), + [aux_sym_final_modifier_token1] = ACTIONS(1004), + [aux_sym_abstract_modifier_token1] = ACTIONS(1004), + [aux_sym_readonly_modifier_token1] = ACTIONS(1004), + [aux_sym_visibility_modifier_token1] = ACTIONS(1004), + [aux_sym_visibility_modifier_token2] = ACTIONS(1004), + [aux_sym_visibility_modifier_token3] = ACTIONS(1004), + [aux_sym__arrow_function_header_token1] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1002), + [aux_sym_cast_type_token1] = ACTIONS(1004), + [aux_sym_echo_statement_token1] = ACTIONS(1004), + [anon_sym_unset] = ACTIONS(1004), + [aux_sym_declare_statement_token1] = ACTIONS(1004), + [aux_sym_declare_statement_token2] = ACTIONS(1004), + [sym_float] = ACTIONS(1004), + [aux_sym_try_statement_token1] = ACTIONS(1004), + [aux_sym_goto_statement_token1] = ACTIONS(1004), + [aux_sym_continue_statement_token1] = ACTIONS(1004), + [aux_sym_break_statement_token1] = ACTIONS(1004), + [sym_integer] = ACTIONS(1004), + [aux_sym_return_statement_token1] = ACTIONS(1004), + [aux_sym_throw_expression_token1] = ACTIONS(1004), + [aux_sym_while_statement_token1] = ACTIONS(1004), + [aux_sym_while_statement_token2] = ACTIONS(1004), + [aux_sym_do_statement_token1] = ACTIONS(1004), + [aux_sym_for_statement_token1] = ACTIONS(1004), + [aux_sym_for_statement_token2] = ACTIONS(1004), + [aux_sym_foreach_statement_token1] = ACTIONS(1004), + [aux_sym_foreach_statement_token2] = ACTIONS(1004), + [aux_sym_if_statement_token1] = ACTIONS(1004), + [aux_sym_if_statement_token2] = ACTIONS(1004), + [aux_sym_else_if_clause_token1] = ACTIONS(1004), + [aux_sym_else_clause_token1] = ACTIONS(1004), + [aux_sym_match_expression_token1] = ACTIONS(1004), + [aux_sym_match_default_expression_token1] = ACTIONS(1004), + [aux_sym_switch_statement_token1] = ACTIONS(1004), + [aux_sym_switch_block_token1] = ACTIONS(1004), + [anon_sym_AT] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [aux_sym_clone_expression_token1] = ACTIONS(1004), + [aux_sym_print_intrinsic_token1] = ACTIONS(1004), + [aux_sym_object_creation_expression_token1] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [aux_sym__list_destructing_token1] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_self] = ACTIONS(1004), + [anon_sym_parent] = ACTIONS(1004), + [anon_sym_POUND_LBRACK] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [aux_sym_encapsed_string_token1] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [aux_sym_string_token1] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_boolean] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1002), + [aux_sym_yield_expression_token1] = ACTIONS(1004), + [aux_sym_include_expression_token1] = ACTIONS(1004), + [aux_sym_include_once_expression_token1] = ACTIONS(1004), + [aux_sym_require_expression_token1] = ACTIONS(1004), + [aux_sym_require_once_expression_token1] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + }, + [458] = { + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_name] = ACTIONS(1116), + [anon_sym_QMARK_GT] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [aux_sym_function_static_declaration_token1] = ACTIONS(1116), + [aux_sym_global_declaration_token1] = ACTIONS(1116), + [aux_sym_namespace_definition_token1] = ACTIONS(1116), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1116), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1116), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1116), + [anon_sym_BSLASH] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [aux_sym_trait_declaration_token1] = ACTIONS(1116), + [aux_sym_interface_declaration_token1] = ACTIONS(1116), + [aux_sym_enum_declaration_token1] = ACTIONS(1116), + [aux_sym_enum_case_token1] = ACTIONS(1116), + [aux_sym_class_declaration_token1] = ACTIONS(1116), + [aux_sym_final_modifier_token1] = ACTIONS(1116), + [aux_sym_abstract_modifier_token1] = ACTIONS(1116), + [aux_sym_readonly_modifier_token1] = ACTIONS(1116), + [aux_sym_visibility_modifier_token1] = ACTIONS(1116), + [aux_sym_visibility_modifier_token2] = ACTIONS(1116), + [aux_sym_visibility_modifier_token3] = ACTIONS(1116), + [aux_sym__arrow_function_header_token1] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1114), + [aux_sym_cast_type_token1] = ACTIONS(1116), + [aux_sym_echo_statement_token1] = ACTIONS(1116), + [anon_sym_unset] = ACTIONS(1116), + [aux_sym_declare_statement_token1] = ACTIONS(1116), + [aux_sym_declare_statement_token2] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [aux_sym_try_statement_token1] = ACTIONS(1116), + [aux_sym_goto_statement_token1] = ACTIONS(1116), + [aux_sym_continue_statement_token1] = ACTIONS(1116), + [aux_sym_break_statement_token1] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [aux_sym_return_statement_token1] = ACTIONS(1116), + [aux_sym_throw_expression_token1] = ACTIONS(1116), + [aux_sym_while_statement_token1] = ACTIONS(1116), + [aux_sym_while_statement_token2] = ACTIONS(1116), + [aux_sym_do_statement_token1] = ACTIONS(1116), + [aux_sym_for_statement_token1] = ACTIONS(1116), + [aux_sym_for_statement_token2] = ACTIONS(1116), + [aux_sym_foreach_statement_token1] = ACTIONS(1116), + [aux_sym_foreach_statement_token2] = ACTIONS(1116), + [aux_sym_if_statement_token1] = ACTIONS(1116), + [aux_sym_if_statement_token2] = ACTIONS(1116), + [aux_sym_else_if_clause_token1] = ACTIONS(1116), + [aux_sym_else_clause_token1] = ACTIONS(1116), + [aux_sym_match_expression_token1] = ACTIONS(1116), + [aux_sym_match_default_expression_token1] = ACTIONS(1116), + [aux_sym_switch_statement_token1] = ACTIONS(1116), + [aux_sym_switch_block_token1] = ACTIONS(1116), + [anon_sym_AT] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [aux_sym_clone_expression_token1] = ACTIONS(1116), + [aux_sym_print_intrinsic_token1] = ACTIONS(1116), + [aux_sym_object_creation_expression_token1] = ACTIONS(1116), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [aux_sym__list_destructing_token1] = ACTIONS(1116), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_self] = ACTIONS(1116), + [anon_sym_parent] = ACTIONS(1116), + [anon_sym_POUND_LBRACK] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [aux_sym_encapsed_string_token1] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [aux_sym_string_token1] = ACTIONS(1114), + [anon_sym_LT_LT_LT] = ACTIONS(1114), + [anon_sym_BQUOTE] = ACTIONS(1114), + [sym_boolean] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), + [anon_sym_DOLLAR] = ACTIONS(1114), + [aux_sym_yield_expression_token1] = ACTIONS(1116), + [aux_sym_include_expression_token1] = ACTIONS(1116), + [aux_sym_include_once_expression_token1] = ACTIONS(1116), + [aux_sym_require_expression_token1] = ACTIONS(1116), + [aux_sym_require_once_expression_token1] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + }, + [459] = { + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_name] = ACTIONS(1120), + [anon_sym_QMARK_GT] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [aux_sym_function_static_declaration_token1] = ACTIONS(1120), + [aux_sym_global_declaration_token1] = ACTIONS(1120), + [aux_sym_namespace_definition_token1] = ACTIONS(1120), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1120), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1120), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1120), + [anon_sym_BSLASH] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [aux_sym_trait_declaration_token1] = ACTIONS(1120), + [aux_sym_interface_declaration_token1] = ACTIONS(1120), + [aux_sym_enum_declaration_token1] = ACTIONS(1120), + [aux_sym_enum_case_token1] = ACTIONS(1120), + [aux_sym_class_declaration_token1] = ACTIONS(1120), + [aux_sym_final_modifier_token1] = ACTIONS(1120), + [aux_sym_abstract_modifier_token1] = ACTIONS(1120), + [aux_sym_readonly_modifier_token1] = ACTIONS(1120), + [aux_sym_visibility_modifier_token1] = ACTIONS(1120), + [aux_sym_visibility_modifier_token2] = ACTIONS(1120), + [aux_sym_visibility_modifier_token3] = ACTIONS(1120), + [aux_sym__arrow_function_header_token1] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1118), + [aux_sym_cast_type_token1] = ACTIONS(1120), + [aux_sym_echo_statement_token1] = ACTIONS(1120), + [anon_sym_unset] = ACTIONS(1120), + [aux_sym_declare_statement_token1] = ACTIONS(1120), + [aux_sym_declare_statement_token2] = ACTIONS(1120), + [sym_float] = ACTIONS(1120), + [aux_sym_try_statement_token1] = ACTIONS(1120), + [aux_sym_goto_statement_token1] = ACTIONS(1120), + [aux_sym_continue_statement_token1] = ACTIONS(1120), + [aux_sym_break_statement_token1] = ACTIONS(1120), + [sym_integer] = ACTIONS(1120), + [aux_sym_return_statement_token1] = ACTIONS(1120), + [aux_sym_throw_expression_token1] = ACTIONS(1120), + [aux_sym_while_statement_token1] = ACTIONS(1120), + [aux_sym_while_statement_token2] = ACTIONS(1120), + [aux_sym_do_statement_token1] = ACTIONS(1120), + [aux_sym_for_statement_token1] = ACTIONS(1120), + [aux_sym_for_statement_token2] = ACTIONS(1120), + [aux_sym_foreach_statement_token1] = ACTIONS(1120), + [aux_sym_foreach_statement_token2] = ACTIONS(1120), + [aux_sym_if_statement_token1] = ACTIONS(1120), + [aux_sym_if_statement_token2] = ACTIONS(1120), + [aux_sym_else_if_clause_token1] = ACTIONS(1120), + [aux_sym_else_clause_token1] = ACTIONS(1120), + [aux_sym_match_expression_token1] = ACTIONS(1120), + [aux_sym_match_default_expression_token1] = ACTIONS(1120), + [aux_sym_switch_statement_token1] = ACTIONS(1120), + [aux_sym_switch_block_token1] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [aux_sym_clone_expression_token1] = ACTIONS(1120), + [aux_sym_print_intrinsic_token1] = ACTIONS(1120), + [aux_sym_object_creation_expression_token1] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [aux_sym__list_destructing_token1] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1118), + [anon_sym_self] = ACTIONS(1120), + [anon_sym_parent] = ACTIONS(1120), + [anon_sym_POUND_LBRACK] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [aux_sym_encapsed_string_token1] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [aux_sym_string_token1] = ACTIONS(1118), + [anon_sym_LT_LT_LT] = ACTIONS(1118), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_boolean] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1118), + [aux_sym_yield_expression_token1] = ACTIONS(1120), + [aux_sym_include_expression_token1] = ACTIONS(1120), + [aux_sym_include_once_expression_token1] = ACTIONS(1120), + [aux_sym_require_expression_token1] = ACTIONS(1120), + [aux_sym_require_once_expression_token1] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [460] = { + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_name] = ACTIONS(1124), + [anon_sym_QMARK_GT] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [aux_sym_function_static_declaration_token1] = ACTIONS(1124), + [aux_sym_global_declaration_token1] = ACTIONS(1124), + [aux_sym_namespace_definition_token1] = ACTIONS(1124), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1124), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1124), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1124), + [anon_sym_BSLASH] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [aux_sym_trait_declaration_token1] = ACTIONS(1124), + [aux_sym_interface_declaration_token1] = ACTIONS(1124), + [aux_sym_enum_declaration_token1] = ACTIONS(1124), + [aux_sym_enum_case_token1] = ACTIONS(1124), + [aux_sym_class_declaration_token1] = ACTIONS(1124), + [aux_sym_final_modifier_token1] = ACTIONS(1124), + [aux_sym_abstract_modifier_token1] = ACTIONS(1124), + [aux_sym_readonly_modifier_token1] = ACTIONS(1124), + [aux_sym_visibility_modifier_token1] = ACTIONS(1124), + [aux_sym_visibility_modifier_token2] = ACTIONS(1124), + [aux_sym_visibility_modifier_token3] = ACTIONS(1124), + [aux_sym__arrow_function_header_token1] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1122), + [aux_sym_cast_type_token1] = ACTIONS(1124), + [aux_sym_echo_statement_token1] = ACTIONS(1124), + [anon_sym_unset] = ACTIONS(1124), + [aux_sym_declare_statement_token1] = ACTIONS(1124), + [aux_sym_declare_statement_token2] = ACTIONS(1124), + [sym_float] = ACTIONS(1124), + [aux_sym_try_statement_token1] = ACTIONS(1124), + [aux_sym_goto_statement_token1] = ACTIONS(1124), + [aux_sym_continue_statement_token1] = ACTIONS(1124), + [aux_sym_break_statement_token1] = ACTIONS(1124), + [sym_integer] = ACTIONS(1124), + [aux_sym_return_statement_token1] = ACTIONS(1124), + [aux_sym_throw_expression_token1] = ACTIONS(1124), + [aux_sym_while_statement_token1] = ACTIONS(1124), + [aux_sym_while_statement_token2] = ACTIONS(1124), + [aux_sym_do_statement_token1] = ACTIONS(1124), + [aux_sym_for_statement_token1] = ACTIONS(1124), + [aux_sym_for_statement_token2] = ACTIONS(1124), + [aux_sym_foreach_statement_token1] = ACTIONS(1124), + [aux_sym_foreach_statement_token2] = ACTIONS(1124), + [aux_sym_if_statement_token1] = ACTIONS(1124), + [aux_sym_if_statement_token2] = ACTIONS(1124), + [aux_sym_else_if_clause_token1] = ACTIONS(1124), + [aux_sym_else_clause_token1] = ACTIONS(1124), + [aux_sym_match_expression_token1] = ACTIONS(1124), + [aux_sym_match_default_expression_token1] = ACTIONS(1124), + [aux_sym_switch_statement_token1] = ACTIONS(1124), + [aux_sym_switch_block_token1] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [aux_sym_clone_expression_token1] = ACTIONS(1124), + [aux_sym_print_intrinsic_token1] = ACTIONS(1124), + [aux_sym_object_creation_expression_token1] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [aux_sym__list_destructing_token1] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_self] = ACTIONS(1124), + [anon_sym_parent] = ACTIONS(1124), + [anon_sym_POUND_LBRACK] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [aux_sym_encapsed_string_token1] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [aux_sym_string_token1] = ACTIONS(1122), + [anon_sym_LT_LT_LT] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_boolean] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [anon_sym_DOLLAR] = ACTIONS(1122), + [aux_sym_yield_expression_token1] = ACTIONS(1124), + [aux_sym_include_expression_token1] = ACTIONS(1124), + [aux_sym_include_once_expression_token1] = ACTIONS(1124), + [aux_sym_require_expression_token1] = ACTIONS(1124), + [aux_sym_require_once_expression_token1] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, + [461] = { + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_name] = ACTIONS(1128), + [anon_sym_QMARK_GT] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [aux_sym_function_static_declaration_token1] = ACTIONS(1128), + [aux_sym_global_declaration_token1] = ACTIONS(1128), + [aux_sym_namespace_definition_token1] = ACTIONS(1128), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1128), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1128), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1128), + [anon_sym_BSLASH] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [aux_sym_trait_declaration_token1] = ACTIONS(1128), + [aux_sym_interface_declaration_token1] = ACTIONS(1128), + [aux_sym_enum_declaration_token1] = ACTIONS(1128), + [aux_sym_enum_case_token1] = ACTIONS(1128), + [aux_sym_class_declaration_token1] = ACTIONS(1128), + [aux_sym_final_modifier_token1] = ACTIONS(1128), + [aux_sym_abstract_modifier_token1] = ACTIONS(1128), + [aux_sym_readonly_modifier_token1] = ACTIONS(1128), + [aux_sym_visibility_modifier_token1] = ACTIONS(1128), + [aux_sym_visibility_modifier_token2] = ACTIONS(1128), + [aux_sym_visibility_modifier_token3] = ACTIONS(1128), + [aux_sym__arrow_function_header_token1] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1126), + [aux_sym_cast_type_token1] = ACTIONS(1128), + [aux_sym_echo_statement_token1] = ACTIONS(1128), + [anon_sym_unset] = ACTIONS(1128), + [aux_sym_declare_statement_token1] = ACTIONS(1128), + [aux_sym_declare_statement_token2] = ACTIONS(1128), + [sym_float] = ACTIONS(1128), + [aux_sym_try_statement_token1] = ACTIONS(1128), + [aux_sym_goto_statement_token1] = ACTIONS(1128), + [aux_sym_continue_statement_token1] = ACTIONS(1128), + [aux_sym_break_statement_token1] = ACTIONS(1128), + [sym_integer] = ACTIONS(1128), + [aux_sym_return_statement_token1] = ACTIONS(1128), + [aux_sym_throw_expression_token1] = ACTIONS(1128), + [aux_sym_while_statement_token1] = ACTIONS(1128), + [aux_sym_while_statement_token2] = ACTIONS(1128), + [aux_sym_do_statement_token1] = ACTIONS(1128), + [aux_sym_for_statement_token1] = ACTIONS(1128), + [aux_sym_for_statement_token2] = ACTIONS(1128), + [aux_sym_foreach_statement_token1] = ACTIONS(1128), + [aux_sym_foreach_statement_token2] = ACTIONS(1128), + [aux_sym_if_statement_token1] = ACTIONS(1128), + [aux_sym_if_statement_token2] = ACTIONS(1128), + [aux_sym_else_if_clause_token1] = ACTIONS(1128), + [aux_sym_else_clause_token1] = ACTIONS(1128), + [aux_sym_match_expression_token1] = ACTIONS(1128), + [aux_sym_match_default_expression_token1] = ACTIONS(1128), + [aux_sym_switch_statement_token1] = ACTIONS(1128), + [aux_sym_switch_block_token1] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [aux_sym_clone_expression_token1] = ACTIONS(1128), + [aux_sym_print_intrinsic_token1] = ACTIONS(1128), + [aux_sym_object_creation_expression_token1] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [aux_sym__list_destructing_token1] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_self] = ACTIONS(1128), + [anon_sym_parent] = ACTIONS(1128), + [anon_sym_POUND_LBRACK] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [aux_sym_encapsed_string_token1] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [aux_sym_string_token1] = ACTIONS(1126), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_boolean] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1126), + [aux_sym_yield_expression_token1] = ACTIONS(1128), + [aux_sym_include_expression_token1] = ACTIONS(1128), + [aux_sym_include_once_expression_token1] = ACTIONS(1128), + [aux_sym_require_expression_token1] = ACTIONS(1128), + [aux_sym_require_once_expression_token1] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + }, + [462] = { + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_name] = ACTIONS(1128), + [anon_sym_QMARK_GT] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [aux_sym_function_static_declaration_token1] = ACTIONS(1128), + [aux_sym_global_declaration_token1] = ACTIONS(1128), + [aux_sym_namespace_definition_token1] = ACTIONS(1128), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1128), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1128), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1128), + [anon_sym_BSLASH] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [aux_sym_trait_declaration_token1] = ACTIONS(1128), + [aux_sym_interface_declaration_token1] = ACTIONS(1128), + [aux_sym_enum_declaration_token1] = ACTIONS(1128), + [aux_sym_enum_case_token1] = ACTIONS(1128), + [aux_sym_class_declaration_token1] = ACTIONS(1128), + [aux_sym_final_modifier_token1] = ACTIONS(1128), + [aux_sym_abstract_modifier_token1] = ACTIONS(1128), + [aux_sym_readonly_modifier_token1] = ACTIONS(1128), + [aux_sym_visibility_modifier_token1] = ACTIONS(1128), + [aux_sym_visibility_modifier_token2] = ACTIONS(1128), + [aux_sym_visibility_modifier_token3] = ACTIONS(1128), + [aux_sym__arrow_function_header_token1] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1126), + [aux_sym_cast_type_token1] = ACTIONS(1128), + [aux_sym_echo_statement_token1] = ACTIONS(1128), + [anon_sym_unset] = ACTIONS(1128), + [aux_sym_declare_statement_token1] = ACTIONS(1128), + [aux_sym_declare_statement_token2] = ACTIONS(1128), + [sym_float] = ACTIONS(1128), + [aux_sym_try_statement_token1] = ACTIONS(1128), + [aux_sym_goto_statement_token1] = ACTIONS(1128), + [aux_sym_continue_statement_token1] = ACTIONS(1128), + [aux_sym_break_statement_token1] = ACTIONS(1128), + [sym_integer] = ACTIONS(1128), + [aux_sym_return_statement_token1] = ACTIONS(1128), + [aux_sym_throw_expression_token1] = ACTIONS(1128), + [aux_sym_while_statement_token1] = ACTIONS(1128), + [aux_sym_while_statement_token2] = ACTIONS(1128), + [aux_sym_do_statement_token1] = ACTIONS(1128), + [aux_sym_for_statement_token1] = ACTIONS(1128), + [aux_sym_for_statement_token2] = ACTIONS(1128), + [aux_sym_foreach_statement_token1] = ACTIONS(1128), + [aux_sym_foreach_statement_token2] = ACTIONS(1128), + [aux_sym_if_statement_token1] = ACTIONS(1128), + [aux_sym_if_statement_token2] = ACTIONS(1128), + [aux_sym_else_if_clause_token1] = ACTIONS(1128), + [aux_sym_else_clause_token1] = ACTIONS(1128), + [aux_sym_match_expression_token1] = ACTIONS(1128), + [aux_sym_match_default_expression_token1] = ACTIONS(1128), + [aux_sym_switch_statement_token1] = ACTIONS(1128), + [aux_sym_switch_block_token1] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [aux_sym_clone_expression_token1] = ACTIONS(1128), + [aux_sym_print_intrinsic_token1] = ACTIONS(1128), + [aux_sym_object_creation_expression_token1] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [aux_sym__list_destructing_token1] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_self] = ACTIONS(1128), + [anon_sym_parent] = ACTIONS(1128), + [anon_sym_POUND_LBRACK] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [aux_sym_encapsed_string_token1] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [aux_sym_string_token1] = ACTIONS(1126), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_boolean] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1126), + [aux_sym_yield_expression_token1] = ACTIONS(1128), + [aux_sym_include_expression_token1] = ACTIONS(1128), + [aux_sym_include_once_expression_token1] = ACTIONS(1128), + [aux_sym_require_expression_token1] = ACTIONS(1128), + [aux_sym_require_once_expression_token1] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + }, + [463] = { + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_name] = ACTIONS(1132), + [anon_sym_QMARK_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [aux_sym_function_static_declaration_token1] = ACTIONS(1132), + [aux_sym_global_declaration_token1] = ACTIONS(1132), + [aux_sym_namespace_definition_token1] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1132), + [anon_sym_BSLASH] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [aux_sym_trait_declaration_token1] = ACTIONS(1132), + [aux_sym_interface_declaration_token1] = ACTIONS(1132), + [aux_sym_enum_declaration_token1] = ACTIONS(1132), + [aux_sym_enum_case_token1] = ACTIONS(1132), + [aux_sym_class_declaration_token1] = ACTIONS(1132), + [aux_sym_final_modifier_token1] = ACTIONS(1132), + [aux_sym_abstract_modifier_token1] = ACTIONS(1132), + [aux_sym_readonly_modifier_token1] = ACTIONS(1132), + [aux_sym_visibility_modifier_token1] = ACTIONS(1132), + [aux_sym_visibility_modifier_token2] = ACTIONS(1132), + [aux_sym_visibility_modifier_token3] = ACTIONS(1132), + [aux_sym__arrow_function_header_token1] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1130), + [aux_sym_cast_type_token1] = ACTIONS(1132), + [aux_sym_echo_statement_token1] = ACTIONS(1132), + [anon_sym_unset] = ACTIONS(1132), + [aux_sym_declare_statement_token1] = ACTIONS(1132), + [aux_sym_declare_statement_token2] = ACTIONS(1132), + [sym_float] = ACTIONS(1132), + [aux_sym_try_statement_token1] = ACTIONS(1132), + [aux_sym_goto_statement_token1] = ACTIONS(1132), + [aux_sym_continue_statement_token1] = ACTIONS(1132), + [aux_sym_break_statement_token1] = ACTIONS(1132), + [sym_integer] = ACTIONS(1132), + [aux_sym_return_statement_token1] = ACTIONS(1132), + [aux_sym_throw_expression_token1] = ACTIONS(1132), + [aux_sym_while_statement_token1] = ACTIONS(1132), + [aux_sym_while_statement_token2] = ACTIONS(1132), + [aux_sym_do_statement_token1] = ACTIONS(1132), + [aux_sym_for_statement_token1] = ACTIONS(1132), + [aux_sym_for_statement_token2] = ACTIONS(1132), + [aux_sym_foreach_statement_token1] = ACTIONS(1132), + [aux_sym_foreach_statement_token2] = ACTIONS(1132), + [aux_sym_if_statement_token1] = ACTIONS(1132), + [aux_sym_if_statement_token2] = ACTIONS(1132), + [aux_sym_else_if_clause_token1] = ACTIONS(1132), + [aux_sym_else_clause_token1] = ACTIONS(1132), + [aux_sym_match_expression_token1] = ACTIONS(1132), + [aux_sym_match_default_expression_token1] = ACTIONS(1132), + [aux_sym_switch_statement_token1] = ACTIONS(1132), + [aux_sym_switch_block_token1] = ACTIONS(1132), + [anon_sym_AT] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [aux_sym_clone_expression_token1] = ACTIONS(1132), + [aux_sym_print_intrinsic_token1] = ACTIONS(1132), + [aux_sym_object_creation_expression_token1] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [aux_sym__list_destructing_token1] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_self] = ACTIONS(1132), + [anon_sym_parent] = ACTIONS(1132), + [anon_sym_POUND_LBRACK] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [aux_sym_encapsed_string_token1] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [aux_sym_string_token1] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_boolean] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), + [anon_sym_DOLLAR] = ACTIONS(1130), + [aux_sym_yield_expression_token1] = ACTIONS(1132), + [aux_sym_include_expression_token1] = ACTIONS(1132), + [aux_sym_include_once_expression_token1] = ACTIONS(1132), + [aux_sym_require_expression_token1] = ACTIONS(1132), + [aux_sym_require_once_expression_token1] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + }, + [464] = { + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_name] = ACTIONS(1136), + [anon_sym_QMARK_GT] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [aux_sym_function_static_declaration_token1] = ACTIONS(1136), + [aux_sym_global_declaration_token1] = ACTIONS(1136), + [aux_sym_namespace_definition_token1] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1136), + [anon_sym_BSLASH] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [aux_sym_trait_declaration_token1] = ACTIONS(1136), + [aux_sym_interface_declaration_token1] = ACTIONS(1136), + [aux_sym_enum_declaration_token1] = ACTIONS(1136), + [aux_sym_enum_case_token1] = ACTIONS(1136), + [aux_sym_class_declaration_token1] = ACTIONS(1136), + [aux_sym_final_modifier_token1] = ACTIONS(1136), + [aux_sym_abstract_modifier_token1] = ACTIONS(1136), + [aux_sym_readonly_modifier_token1] = ACTIONS(1136), + [aux_sym_visibility_modifier_token1] = ACTIONS(1136), + [aux_sym_visibility_modifier_token2] = ACTIONS(1136), + [aux_sym_visibility_modifier_token3] = ACTIONS(1136), + [aux_sym__arrow_function_header_token1] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1134), + [aux_sym_cast_type_token1] = ACTIONS(1136), + [aux_sym_echo_statement_token1] = ACTIONS(1136), + [anon_sym_unset] = ACTIONS(1136), + [aux_sym_declare_statement_token1] = ACTIONS(1136), + [aux_sym_declare_statement_token2] = ACTIONS(1136), + [sym_float] = ACTIONS(1136), + [aux_sym_try_statement_token1] = ACTIONS(1136), + [aux_sym_goto_statement_token1] = ACTIONS(1136), + [aux_sym_continue_statement_token1] = ACTIONS(1136), + [aux_sym_break_statement_token1] = ACTIONS(1136), + [sym_integer] = ACTIONS(1136), + [aux_sym_return_statement_token1] = ACTIONS(1136), + [aux_sym_throw_expression_token1] = ACTIONS(1136), + [aux_sym_while_statement_token1] = ACTIONS(1136), + [aux_sym_while_statement_token2] = ACTIONS(1136), + [aux_sym_do_statement_token1] = ACTIONS(1136), + [aux_sym_for_statement_token1] = ACTIONS(1136), + [aux_sym_for_statement_token2] = ACTIONS(1136), + [aux_sym_foreach_statement_token1] = ACTIONS(1136), + [aux_sym_foreach_statement_token2] = ACTIONS(1136), + [aux_sym_if_statement_token1] = ACTIONS(1136), + [aux_sym_if_statement_token2] = ACTIONS(1136), + [aux_sym_else_if_clause_token1] = ACTIONS(1136), + [aux_sym_else_clause_token1] = ACTIONS(1136), + [aux_sym_match_expression_token1] = ACTIONS(1136), + [aux_sym_match_default_expression_token1] = ACTIONS(1136), + [aux_sym_switch_statement_token1] = ACTIONS(1136), + [aux_sym_switch_block_token1] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [aux_sym_clone_expression_token1] = ACTIONS(1136), + [aux_sym_print_intrinsic_token1] = ACTIONS(1136), + [aux_sym_object_creation_expression_token1] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [aux_sym__list_destructing_token1] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_self] = ACTIONS(1136), + [anon_sym_parent] = ACTIONS(1136), + [anon_sym_POUND_LBRACK] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [aux_sym_encapsed_string_token1] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [aux_sym_string_token1] = ACTIONS(1134), + [anon_sym_LT_LT_LT] = ACTIONS(1134), + [anon_sym_BQUOTE] = ACTIONS(1134), + [sym_boolean] = ACTIONS(1136), + [sym_null] = ACTIONS(1136), + [anon_sym_DOLLAR] = ACTIONS(1134), + [aux_sym_yield_expression_token1] = ACTIONS(1136), + [aux_sym_include_expression_token1] = ACTIONS(1136), + [aux_sym_include_once_expression_token1] = ACTIONS(1136), + [aux_sym_require_expression_token1] = ACTIONS(1136), + [aux_sym_require_once_expression_token1] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + }, + [465] = { + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_name] = ACTIONS(1136), + [anon_sym_QMARK_GT] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [aux_sym_function_static_declaration_token1] = ACTIONS(1136), + [aux_sym_global_declaration_token1] = ACTIONS(1136), + [aux_sym_namespace_definition_token1] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1136), + [anon_sym_BSLASH] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [aux_sym_trait_declaration_token1] = ACTIONS(1136), + [aux_sym_interface_declaration_token1] = ACTIONS(1136), + [aux_sym_enum_declaration_token1] = ACTIONS(1136), + [aux_sym_enum_case_token1] = ACTIONS(1136), + [aux_sym_class_declaration_token1] = ACTIONS(1136), + [aux_sym_final_modifier_token1] = ACTIONS(1136), + [aux_sym_abstract_modifier_token1] = ACTIONS(1136), + [aux_sym_readonly_modifier_token1] = ACTIONS(1136), + [aux_sym_visibility_modifier_token1] = ACTIONS(1136), + [aux_sym_visibility_modifier_token2] = ACTIONS(1136), + [aux_sym_visibility_modifier_token3] = ACTIONS(1136), + [aux_sym__arrow_function_header_token1] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1134), + [aux_sym_cast_type_token1] = ACTIONS(1136), + [aux_sym_echo_statement_token1] = ACTIONS(1136), + [anon_sym_unset] = ACTIONS(1136), + [aux_sym_declare_statement_token1] = ACTIONS(1136), + [aux_sym_declare_statement_token2] = ACTIONS(1136), + [sym_float] = ACTIONS(1136), + [aux_sym_try_statement_token1] = ACTIONS(1136), + [aux_sym_goto_statement_token1] = ACTIONS(1136), + [aux_sym_continue_statement_token1] = ACTIONS(1136), + [aux_sym_break_statement_token1] = ACTIONS(1136), + [sym_integer] = ACTIONS(1136), + [aux_sym_return_statement_token1] = ACTIONS(1136), + [aux_sym_throw_expression_token1] = ACTIONS(1136), + [aux_sym_while_statement_token1] = ACTIONS(1136), + [aux_sym_while_statement_token2] = ACTIONS(1136), + [aux_sym_do_statement_token1] = ACTIONS(1136), + [aux_sym_for_statement_token1] = ACTIONS(1136), + [aux_sym_for_statement_token2] = ACTIONS(1136), + [aux_sym_foreach_statement_token1] = ACTIONS(1136), + [aux_sym_foreach_statement_token2] = ACTIONS(1136), + [aux_sym_if_statement_token1] = ACTIONS(1136), + [aux_sym_if_statement_token2] = ACTIONS(1136), + [aux_sym_else_if_clause_token1] = ACTIONS(1136), + [aux_sym_else_clause_token1] = ACTIONS(1136), + [aux_sym_match_expression_token1] = ACTIONS(1136), + [aux_sym_match_default_expression_token1] = ACTIONS(1136), + [aux_sym_switch_statement_token1] = ACTIONS(1136), + [aux_sym_switch_block_token1] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [aux_sym_clone_expression_token1] = ACTIONS(1136), + [aux_sym_print_intrinsic_token1] = ACTIONS(1136), + [aux_sym_object_creation_expression_token1] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [aux_sym__list_destructing_token1] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_self] = ACTIONS(1136), + [anon_sym_parent] = ACTIONS(1136), + [anon_sym_POUND_LBRACK] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [aux_sym_encapsed_string_token1] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [aux_sym_string_token1] = ACTIONS(1134), + [anon_sym_LT_LT_LT] = ACTIONS(1134), + [anon_sym_BQUOTE] = ACTIONS(1134), + [sym_boolean] = ACTIONS(1136), + [sym_null] = ACTIONS(1136), + [anon_sym_DOLLAR] = ACTIONS(1134), + [aux_sym_yield_expression_token1] = ACTIONS(1136), + [aux_sym_include_expression_token1] = ACTIONS(1136), + [aux_sym_include_once_expression_token1] = ACTIONS(1136), + [aux_sym_require_expression_token1] = ACTIONS(1136), + [aux_sym_require_once_expression_token1] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + }, + [466] = { + [ts_builtin_sym_end] = ACTIONS(1138), + [sym_name] = ACTIONS(1140), + [anon_sym_QMARK_GT] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [aux_sym_function_static_declaration_token1] = ACTIONS(1140), + [aux_sym_global_declaration_token1] = ACTIONS(1140), + [aux_sym_namespace_definition_token1] = ACTIONS(1140), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1140), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1140), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1140), + [anon_sym_BSLASH] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [aux_sym_trait_declaration_token1] = ACTIONS(1140), + [aux_sym_interface_declaration_token1] = ACTIONS(1140), + [aux_sym_enum_declaration_token1] = ACTIONS(1140), + [aux_sym_enum_case_token1] = ACTIONS(1140), + [aux_sym_class_declaration_token1] = ACTIONS(1140), + [aux_sym_final_modifier_token1] = ACTIONS(1140), + [aux_sym_abstract_modifier_token1] = ACTIONS(1140), + [aux_sym_readonly_modifier_token1] = ACTIONS(1140), + [aux_sym_visibility_modifier_token1] = ACTIONS(1140), + [aux_sym_visibility_modifier_token2] = ACTIONS(1140), + [aux_sym_visibility_modifier_token3] = ACTIONS(1140), + [aux_sym__arrow_function_header_token1] = ACTIONS(1140), + [anon_sym_LPAREN] = ACTIONS(1138), + [aux_sym_cast_type_token1] = ACTIONS(1140), + [aux_sym_echo_statement_token1] = ACTIONS(1140), + [anon_sym_unset] = ACTIONS(1140), + [aux_sym_declare_statement_token1] = ACTIONS(1140), + [aux_sym_declare_statement_token2] = ACTIONS(1140), + [sym_float] = ACTIONS(1140), + [aux_sym_try_statement_token1] = ACTIONS(1140), + [aux_sym_goto_statement_token1] = ACTIONS(1140), + [aux_sym_continue_statement_token1] = ACTIONS(1140), + [aux_sym_break_statement_token1] = ACTIONS(1140), + [sym_integer] = ACTIONS(1140), + [aux_sym_return_statement_token1] = ACTIONS(1140), + [aux_sym_throw_expression_token1] = ACTIONS(1140), + [aux_sym_while_statement_token1] = ACTIONS(1140), + [aux_sym_while_statement_token2] = ACTIONS(1140), + [aux_sym_do_statement_token1] = ACTIONS(1140), + [aux_sym_for_statement_token1] = ACTIONS(1140), + [aux_sym_for_statement_token2] = ACTIONS(1140), + [aux_sym_foreach_statement_token1] = ACTIONS(1140), + [aux_sym_foreach_statement_token2] = ACTIONS(1140), + [aux_sym_if_statement_token1] = ACTIONS(1140), + [aux_sym_if_statement_token2] = ACTIONS(1140), + [aux_sym_else_if_clause_token1] = ACTIONS(1140), + [aux_sym_else_clause_token1] = ACTIONS(1140), + [aux_sym_match_expression_token1] = ACTIONS(1140), + [aux_sym_match_default_expression_token1] = ACTIONS(1140), + [aux_sym_switch_statement_token1] = ACTIONS(1140), + [aux_sym_switch_block_token1] = ACTIONS(1140), + [anon_sym_AT] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [aux_sym_clone_expression_token1] = ACTIONS(1140), + [aux_sym_print_intrinsic_token1] = ACTIONS(1140), + [aux_sym_object_creation_expression_token1] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [aux_sym__list_destructing_token1] = ACTIONS(1140), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_self] = ACTIONS(1140), + [anon_sym_parent] = ACTIONS(1140), + [anon_sym_POUND_LBRACK] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [aux_sym_encapsed_string_token1] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [aux_sym_string_token1] = ACTIONS(1138), + [anon_sym_LT_LT_LT] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), + [sym_boolean] = ACTIONS(1140), + [sym_null] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(1138), + [aux_sym_yield_expression_token1] = ACTIONS(1140), + [aux_sym_include_expression_token1] = ACTIONS(1140), + [aux_sym_include_once_expression_token1] = ACTIONS(1140), + [aux_sym_require_expression_token1] = ACTIONS(1140), + [aux_sym_require_once_expression_token1] = ACTIONS(1140), + [sym_comment] = ACTIONS(3), + }, + [467] = { + [ts_builtin_sym_end] = ACTIONS(1142), + [sym_name] = ACTIONS(1144), + [anon_sym_QMARK_GT] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1142), + [aux_sym_function_static_declaration_token1] = ACTIONS(1144), + [aux_sym_global_declaration_token1] = ACTIONS(1144), + [aux_sym_namespace_definition_token1] = ACTIONS(1144), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1144), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1144), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1144), + [anon_sym_BSLASH] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_RBRACE] = ACTIONS(1142), + [aux_sym_trait_declaration_token1] = ACTIONS(1144), + [aux_sym_interface_declaration_token1] = ACTIONS(1144), + [aux_sym_enum_declaration_token1] = ACTIONS(1144), + [aux_sym_enum_case_token1] = ACTIONS(1144), + [aux_sym_class_declaration_token1] = ACTIONS(1144), + [aux_sym_final_modifier_token1] = ACTIONS(1144), + [aux_sym_abstract_modifier_token1] = ACTIONS(1144), + [aux_sym_readonly_modifier_token1] = ACTIONS(1144), + [aux_sym_visibility_modifier_token1] = ACTIONS(1144), + [aux_sym_visibility_modifier_token2] = ACTIONS(1144), + [aux_sym_visibility_modifier_token3] = ACTIONS(1144), + [aux_sym__arrow_function_header_token1] = ACTIONS(1144), + [anon_sym_LPAREN] = ACTIONS(1142), + [aux_sym_cast_type_token1] = ACTIONS(1144), + [aux_sym_echo_statement_token1] = ACTIONS(1144), + [anon_sym_unset] = ACTIONS(1144), + [aux_sym_declare_statement_token1] = ACTIONS(1144), + [aux_sym_declare_statement_token2] = ACTIONS(1144), + [sym_float] = ACTIONS(1144), + [aux_sym_try_statement_token1] = ACTIONS(1144), + [aux_sym_goto_statement_token1] = ACTIONS(1144), + [aux_sym_continue_statement_token1] = ACTIONS(1144), + [aux_sym_break_statement_token1] = ACTIONS(1144), + [sym_integer] = ACTIONS(1144), + [aux_sym_return_statement_token1] = ACTIONS(1144), + [aux_sym_throw_expression_token1] = ACTIONS(1144), + [aux_sym_while_statement_token1] = ACTIONS(1144), + [aux_sym_while_statement_token2] = ACTIONS(1144), + [aux_sym_do_statement_token1] = ACTIONS(1144), + [aux_sym_for_statement_token1] = ACTIONS(1144), + [aux_sym_for_statement_token2] = ACTIONS(1144), + [aux_sym_foreach_statement_token1] = ACTIONS(1144), + [aux_sym_foreach_statement_token2] = ACTIONS(1144), + [aux_sym_if_statement_token1] = ACTIONS(1144), + [aux_sym_if_statement_token2] = ACTIONS(1144), + [aux_sym_else_if_clause_token1] = ACTIONS(1144), + [aux_sym_else_clause_token1] = ACTIONS(1144), + [aux_sym_match_expression_token1] = ACTIONS(1144), + [aux_sym_match_default_expression_token1] = ACTIONS(1144), + [aux_sym_switch_statement_token1] = ACTIONS(1144), + [aux_sym_switch_block_token1] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1142), + [anon_sym_BANG] = ACTIONS(1142), + [aux_sym_clone_expression_token1] = ACTIONS(1144), + [aux_sym_print_intrinsic_token1] = ACTIONS(1144), + [aux_sym_object_creation_expression_token1] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1142), + [aux_sym__list_destructing_token1] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1142), + [anon_sym_self] = ACTIONS(1144), + [anon_sym_parent] = ACTIONS(1144), + [anon_sym_POUND_LBRACK] = ACTIONS(1142), + [anon_sym_SQUOTE] = ACTIONS(1142), + [aux_sym_encapsed_string_token1] = ACTIONS(1142), + [anon_sym_DQUOTE] = ACTIONS(1142), + [aux_sym_string_token1] = ACTIONS(1142), + [anon_sym_LT_LT_LT] = ACTIONS(1142), + [anon_sym_BQUOTE] = ACTIONS(1142), + [sym_boolean] = ACTIONS(1144), + [sym_null] = ACTIONS(1144), + [anon_sym_DOLLAR] = ACTIONS(1142), + [aux_sym_yield_expression_token1] = ACTIONS(1144), + [aux_sym_include_expression_token1] = ACTIONS(1144), + [aux_sym_include_once_expression_token1] = ACTIONS(1144), + [aux_sym_require_expression_token1] = ACTIONS(1144), + [aux_sym_require_once_expression_token1] = ACTIONS(1144), + [sym_comment] = ACTIONS(3), + }, + [468] = { + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_name] = ACTIONS(1148), + [anon_sym_QMARK_GT] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1146), + [aux_sym_function_static_declaration_token1] = ACTIONS(1148), + [aux_sym_global_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_definition_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1148), + [anon_sym_BSLASH] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [aux_sym_trait_declaration_token1] = ACTIONS(1148), + [aux_sym_interface_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_case_token1] = ACTIONS(1148), + [aux_sym_class_declaration_token1] = ACTIONS(1148), + [aux_sym_final_modifier_token1] = ACTIONS(1148), + [aux_sym_abstract_modifier_token1] = ACTIONS(1148), + [aux_sym_readonly_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token2] = ACTIONS(1148), + [aux_sym_visibility_modifier_token3] = ACTIONS(1148), + [aux_sym__arrow_function_header_token1] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [aux_sym_cast_type_token1] = ACTIONS(1148), + [aux_sym_echo_statement_token1] = ACTIONS(1148), + [anon_sym_unset] = ACTIONS(1148), + [aux_sym_declare_statement_token1] = ACTIONS(1148), + [aux_sym_declare_statement_token2] = ACTIONS(1148), + [sym_float] = ACTIONS(1148), + [aux_sym_try_statement_token1] = ACTIONS(1148), + [aux_sym_goto_statement_token1] = ACTIONS(1148), + [aux_sym_continue_statement_token1] = ACTIONS(1148), + [aux_sym_break_statement_token1] = ACTIONS(1148), + [sym_integer] = ACTIONS(1148), + [aux_sym_return_statement_token1] = ACTIONS(1148), + [aux_sym_throw_expression_token1] = ACTIONS(1148), + [aux_sym_while_statement_token1] = ACTIONS(1148), + [aux_sym_while_statement_token2] = ACTIONS(1148), + [aux_sym_do_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token2] = ACTIONS(1148), + [aux_sym_foreach_statement_token1] = ACTIONS(1148), + [aux_sym_foreach_statement_token2] = ACTIONS(1148), + [aux_sym_if_statement_token1] = ACTIONS(1148), + [aux_sym_if_statement_token2] = ACTIONS(1148), + [aux_sym_else_if_clause_token1] = ACTIONS(1148), + [aux_sym_else_clause_token1] = ACTIONS(1148), + [aux_sym_match_expression_token1] = ACTIONS(1148), + [aux_sym_match_default_expression_token1] = ACTIONS(1148), + [aux_sym_switch_statement_token1] = ACTIONS(1148), + [aux_sym_switch_block_token1] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [aux_sym_clone_expression_token1] = ACTIONS(1148), + [aux_sym_print_intrinsic_token1] = ACTIONS(1148), + [aux_sym_object_creation_expression_token1] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [aux_sym__list_destructing_token1] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_self] = ACTIONS(1148), + [anon_sym_parent] = ACTIONS(1148), + [anon_sym_POUND_LBRACK] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [aux_sym_encapsed_string_token1] = ACTIONS(1146), + [anon_sym_DQUOTE] = ACTIONS(1146), + [aux_sym_string_token1] = ACTIONS(1146), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_BQUOTE] = ACTIONS(1146), + [sym_boolean] = ACTIONS(1148), + [sym_null] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(1146), + [aux_sym_yield_expression_token1] = ACTIONS(1148), + [aux_sym_include_expression_token1] = ACTIONS(1148), + [aux_sym_include_once_expression_token1] = ACTIONS(1148), + [aux_sym_require_expression_token1] = ACTIONS(1148), + [aux_sym_require_once_expression_token1] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + }, + [469] = { + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_name] = ACTIONS(1148), + [anon_sym_QMARK_GT] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1146), + [aux_sym_function_static_declaration_token1] = ACTIONS(1148), + [aux_sym_global_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_definition_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1148), + [anon_sym_BSLASH] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [aux_sym_trait_declaration_token1] = ACTIONS(1148), + [aux_sym_interface_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_case_token1] = ACTIONS(1148), + [aux_sym_class_declaration_token1] = ACTIONS(1148), + [aux_sym_final_modifier_token1] = ACTIONS(1148), + [aux_sym_abstract_modifier_token1] = ACTIONS(1148), + [aux_sym_readonly_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token2] = ACTIONS(1148), + [aux_sym_visibility_modifier_token3] = ACTIONS(1148), + [aux_sym__arrow_function_header_token1] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [aux_sym_cast_type_token1] = ACTIONS(1148), + [aux_sym_echo_statement_token1] = ACTIONS(1148), + [anon_sym_unset] = ACTIONS(1148), + [aux_sym_declare_statement_token1] = ACTIONS(1148), + [aux_sym_declare_statement_token2] = ACTIONS(1148), + [sym_float] = ACTIONS(1148), + [aux_sym_try_statement_token1] = ACTIONS(1148), + [aux_sym_goto_statement_token1] = ACTIONS(1148), + [aux_sym_continue_statement_token1] = ACTIONS(1148), + [aux_sym_break_statement_token1] = ACTIONS(1148), + [sym_integer] = ACTIONS(1148), + [aux_sym_return_statement_token1] = ACTIONS(1148), + [aux_sym_throw_expression_token1] = ACTIONS(1148), + [aux_sym_while_statement_token1] = ACTIONS(1148), + [aux_sym_while_statement_token2] = ACTIONS(1148), + [aux_sym_do_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token2] = ACTIONS(1148), + [aux_sym_foreach_statement_token1] = ACTIONS(1148), + [aux_sym_foreach_statement_token2] = ACTIONS(1148), + [aux_sym_if_statement_token1] = ACTIONS(1148), + [aux_sym_if_statement_token2] = ACTIONS(1148), + [aux_sym_else_if_clause_token1] = ACTIONS(1148), + [aux_sym_else_clause_token1] = ACTIONS(1148), + [aux_sym_match_expression_token1] = ACTIONS(1148), + [aux_sym_match_default_expression_token1] = ACTIONS(1148), + [aux_sym_switch_statement_token1] = ACTIONS(1148), + [aux_sym_switch_block_token1] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [aux_sym_clone_expression_token1] = ACTIONS(1148), + [aux_sym_print_intrinsic_token1] = ACTIONS(1148), + [aux_sym_object_creation_expression_token1] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [aux_sym__list_destructing_token1] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_self] = ACTIONS(1148), + [anon_sym_parent] = ACTIONS(1148), + [anon_sym_POUND_LBRACK] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [aux_sym_encapsed_string_token1] = ACTIONS(1146), + [anon_sym_DQUOTE] = ACTIONS(1146), + [aux_sym_string_token1] = ACTIONS(1146), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_BQUOTE] = ACTIONS(1146), + [sym_boolean] = ACTIONS(1148), + [sym_null] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(1146), + [aux_sym_yield_expression_token1] = ACTIONS(1148), + [aux_sym_include_expression_token1] = ACTIONS(1148), + [aux_sym_include_once_expression_token1] = ACTIONS(1148), + [aux_sym_require_expression_token1] = ACTIONS(1148), + [aux_sym_require_once_expression_token1] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + }, + [470] = { + [ts_builtin_sym_end] = ACTIONS(1150), + [sym_name] = ACTIONS(1152), + [anon_sym_QMARK_GT] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1150), + [aux_sym_function_static_declaration_token1] = ACTIONS(1152), + [aux_sym_global_declaration_token1] = ACTIONS(1152), + [aux_sym_namespace_definition_token1] = ACTIONS(1152), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1152), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1152), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1152), + [anon_sym_BSLASH] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1150), + [aux_sym_trait_declaration_token1] = ACTIONS(1152), + [aux_sym_interface_declaration_token1] = ACTIONS(1152), + [aux_sym_enum_declaration_token1] = ACTIONS(1152), + [aux_sym_enum_case_token1] = ACTIONS(1152), + [aux_sym_class_declaration_token1] = ACTIONS(1152), + [aux_sym_final_modifier_token1] = ACTIONS(1152), + [aux_sym_abstract_modifier_token1] = ACTIONS(1152), + [aux_sym_readonly_modifier_token1] = ACTIONS(1152), + [aux_sym_visibility_modifier_token1] = ACTIONS(1152), + [aux_sym_visibility_modifier_token2] = ACTIONS(1152), + [aux_sym_visibility_modifier_token3] = ACTIONS(1152), + [aux_sym__arrow_function_header_token1] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1150), + [aux_sym_cast_type_token1] = ACTIONS(1152), + [aux_sym_echo_statement_token1] = ACTIONS(1152), + [anon_sym_unset] = ACTIONS(1152), + [aux_sym_declare_statement_token1] = ACTIONS(1152), + [aux_sym_declare_statement_token2] = ACTIONS(1152), + [sym_float] = ACTIONS(1152), + [aux_sym_try_statement_token1] = ACTIONS(1152), + [aux_sym_goto_statement_token1] = ACTIONS(1152), + [aux_sym_continue_statement_token1] = ACTIONS(1152), + [aux_sym_break_statement_token1] = ACTIONS(1152), + [sym_integer] = ACTIONS(1152), + [aux_sym_return_statement_token1] = ACTIONS(1152), + [aux_sym_throw_expression_token1] = ACTIONS(1152), + [aux_sym_while_statement_token1] = ACTIONS(1152), + [aux_sym_while_statement_token2] = ACTIONS(1152), + [aux_sym_do_statement_token1] = ACTIONS(1152), + [aux_sym_for_statement_token1] = ACTIONS(1152), + [aux_sym_for_statement_token2] = ACTIONS(1152), + [aux_sym_foreach_statement_token1] = ACTIONS(1152), + [aux_sym_foreach_statement_token2] = ACTIONS(1152), + [aux_sym_if_statement_token1] = ACTIONS(1152), + [aux_sym_if_statement_token2] = ACTIONS(1152), + [aux_sym_else_if_clause_token1] = ACTIONS(1152), + [aux_sym_else_clause_token1] = ACTIONS(1152), + [aux_sym_match_expression_token1] = ACTIONS(1152), + [aux_sym_match_default_expression_token1] = ACTIONS(1152), + [aux_sym_switch_statement_token1] = ACTIONS(1152), + [aux_sym_switch_block_token1] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1150), + [aux_sym_clone_expression_token1] = ACTIONS(1152), + [aux_sym_print_intrinsic_token1] = ACTIONS(1152), + [aux_sym_object_creation_expression_token1] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1150), + [aux_sym__list_destructing_token1] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_self] = ACTIONS(1152), + [anon_sym_parent] = ACTIONS(1152), + [anon_sym_POUND_LBRACK] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [aux_sym_encapsed_string_token1] = ACTIONS(1150), + [anon_sym_DQUOTE] = ACTIONS(1150), + [aux_sym_string_token1] = ACTIONS(1150), + [anon_sym_LT_LT_LT] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(1150), + [sym_boolean] = ACTIONS(1152), + [sym_null] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1150), + [aux_sym_yield_expression_token1] = ACTIONS(1152), + [aux_sym_include_expression_token1] = ACTIONS(1152), + [aux_sym_include_once_expression_token1] = ACTIONS(1152), + [aux_sym_require_expression_token1] = ACTIONS(1152), + [aux_sym_require_once_expression_token1] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + }, + [471] = { + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_name] = ACTIONS(1156), + [anon_sym_QMARK_GT] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1154), + [aux_sym_function_static_declaration_token1] = ACTIONS(1156), + [aux_sym_global_declaration_token1] = ACTIONS(1156), + [aux_sym_namespace_definition_token1] = ACTIONS(1156), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1156), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1156), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1156), + [anon_sym_BSLASH] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1154), + [aux_sym_trait_declaration_token1] = ACTIONS(1156), + [aux_sym_interface_declaration_token1] = ACTIONS(1156), + [aux_sym_enum_declaration_token1] = ACTIONS(1156), + [aux_sym_enum_case_token1] = ACTIONS(1156), + [aux_sym_class_declaration_token1] = ACTIONS(1156), + [aux_sym_final_modifier_token1] = ACTIONS(1156), + [aux_sym_abstract_modifier_token1] = ACTIONS(1156), + [aux_sym_readonly_modifier_token1] = ACTIONS(1156), + [aux_sym_visibility_modifier_token1] = ACTIONS(1156), + [aux_sym_visibility_modifier_token2] = ACTIONS(1156), + [aux_sym_visibility_modifier_token3] = ACTIONS(1156), + [aux_sym__arrow_function_header_token1] = ACTIONS(1156), + [anon_sym_LPAREN] = ACTIONS(1154), + [aux_sym_cast_type_token1] = ACTIONS(1156), + [aux_sym_echo_statement_token1] = ACTIONS(1156), + [anon_sym_unset] = ACTIONS(1156), + [aux_sym_declare_statement_token1] = ACTIONS(1156), + [aux_sym_declare_statement_token2] = ACTIONS(1156), + [sym_float] = ACTIONS(1156), + [aux_sym_try_statement_token1] = ACTIONS(1156), + [aux_sym_goto_statement_token1] = ACTIONS(1156), + [aux_sym_continue_statement_token1] = ACTIONS(1156), + [aux_sym_break_statement_token1] = ACTIONS(1156), + [sym_integer] = ACTIONS(1156), + [aux_sym_return_statement_token1] = ACTIONS(1156), + [aux_sym_throw_expression_token1] = ACTIONS(1156), + [aux_sym_while_statement_token1] = ACTIONS(1156), + [aux_sym_while_statement_token2] = ACTIONS(1156), + [aux_sym_do_statement_token1] = ACTIONS(1156), + [aux_sym_for_statement_token1] = ACTIONS(1156), + [aux_sym_for_statement_token2] = ACTIONS(1156), + [aux_sym_foreach_statement_token1] = ACTIONS(1156), + [aux_sym_foreach_statement_token2] = ACTIONS(1156), + [aux_sym_if_statement_token1] = ACTIONS(1156), + [aux_sym_if_statement_token2] = ACTIONS(1156), + [aux_sym_else_if_clause_token1] = ACTIONS(1156), + [aux_sym_else_clause_token1] = ACTIONS(1156), + [aux_sym_match_expression_token1] = ACTIONS(1156), + [aux_sym_match_default_expression_token1] = ACTIONS(1156), + [aux_sym_switch_statement_token1] = ACTIONS(1156), + [aux_sym_switch_block_token1] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1154), + [aux_sym_clone_expression_token1] = ACTIONS(1156), + [aux_sym_print_intrinsic_token1] = ACTIONS(1156), + [aux_sym_object_creation_expression_token1] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1154), + [aux_sym__list_destructing_token1] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_self] = ACTIONS(1156), + [anon_sym_parent] = ACTIONS(1156), + [anon_sym_POUND_LBRACK] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(1154), + [aux_sym_encapsed_string_token1] = ACTIONS(1154), + [anon_sym_DQUOTE] = ACTIONS(1154), + [aux_sym_string_token1] = ACTIONS(1154), + [anon_sym_LT_LT_LT] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(1154), + [sym_boolean] = ACTIONS(1156), + [sym_null] = ACTIONS(1156), + [anon_sym_DOLLAR] = ACTIONS(1154), + [aux_sym_yield_expression_token1] = ACTIONS(1156), + [aux_sym_include_expression_token1] = ACTIONS(1156), + [aux_sym_include_once_expression_token1] = ACTIONS(1156), + [aux_sym_require_expression_token1] = ACTIONS(1156), + [aux_sym_require_once_expression_token1] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + }, + [472] = { + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_name] = ACTIONS(1160), + [anon_sym_QMARK_GT] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1158), + [aux_sym_function_static_declaration_token1] = ACTIONS(1160), + [aux_sym_global_declaration_token1] = ACTIONS(1160), + [aux_sym_namespace_definition_token1] = ACTIONS(1160), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1160), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1160), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1160), + [anon_sym_BSLASH] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1158), + [aux_sym_trait_declaration_token1] = ACTIONS(1160), + [aux_sym_interface_declaration_token1] = ACTIONS(1160), + [aux_sym_enum_declaration_token1] = ACTIONS(1160), + [aux_sym_enum_case_token1] = ACTIONS(1160), + [aux_sym_class_declaration_token1] = ACTIONS(1160), + [aux_sym_final_modifier_token1] = ACTIONS(1160), + [aux_sym_abstract_modifier_token1] = ACTIONS(1160), + [aux_sym_readonly_modifier_token1] = ACTIONS(1160), + [aux_sym_visibility_modifier_token1] = ACTIONS(1160), + [aux_sym_visibility_modifier_token2] = ACTIONS(1160), + [aux_sym_visibility_modifier_token3] = ACTIONS(1160), + [aux_sym__arrow_function_header_token1] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1158), + [aux_sym_cast_type_token1] = ACTIONS(1160), + [aux_sym_echo_statement_token1] = ACTIONS(1160), + [anon_sym_unset] = ACTIONS(1160), + [aux_sym_declare_statement_token1] = ACTIONS(1160), + [aux_sym_declare_statement_token2] = ACTIONS(1160), + [sym_float] = ACTIONS(1160), + [aux_sym_try_statement_token1] = ACTIONS(1160), + [aux_sym_goto_statement_token1] = ACTIONS(1160), + [aux_sym_continue_statement_token1] = ACTIONS(1160), + [aux_sym_break_statement_token1] = ACTIONS(1160), + [sym_integer] = ACTIONS(1160), + [aux_sym_return_statement_token1] = ACTIONS(1160), + [aux_sym_throw_expression_token1] = ACTIONS(1160), + [aux_sym_while_statement_token1] = ACTIONS(1160), + [aux_sym_while_statement_token2] = ACTIONS(1160), + [aux_sym_do_statement_token1] = ACTIONS(1160), + [aux_sym_for_statement_token1] = ACTIONS(1160), + [aux_sym_for_statement_token2] = ACTIONS(1160), + [aux_sym_foreach_statement_token1] = ACTIONS(1160), + [aux_sym_foreach_statement_token2] = ACTIONS(1160), + [aux_sym_if_statement_token1] = ACTIONS(1160), + [aux_sym_if_statement_token2] = ACTIONS(1160), + [aux_sym_else_if_clause_token1] = ACTIONS(1160), + [aux_sym_else_clause_token1] = ACTIONS(1160), + [aux_sym_match_expression_token1] = ACTIONS(1160), + [aux_sym_match_default_expression_token1] = ACTIONS(1160), + [aux_sym_switch_statement_token1] = ACTIONS(1160), + [aux_sym_switch_block_token1] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1158), + [aux_sym_clone_expression_token1] = ACTIONS(1160), + [aux_sym_print_intrinsic_token1] = ACTIONS(1160), + [aux_sym_object_creation_expression_token1] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1158), + [aux_sym__list_destructing_token1] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_self] = ACTIONS(1160), + [anon_sym_parent] = ACTIONS(1160), + [anon_sym_POUND_LBRACK] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1158), + [aux_sym_encapsed_string_token1] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1158), + [aux_sym_string_token1] = ACTIONS(1158), + [anon_sym_LT_LT_LT] = ACTIONS(1158), + [anon_sym_BQUOTE] = ACTIONS(1158), + [sym_boolean] = ACTIONS(1160), + [sym_null] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1158), + [aux_sym_yield_expression_token1] = ACTIONS(1160), + [aux_sym_include_expression_token1] = ACTIONS(1160), + [aux_sym_include_once_expression_token1] = ACTIONS(1160), + [aux_sym_require_expression_token1] = ACTIONS(1160), + [aux_sym_require_once_expression_token1] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + }, + [473] = { + [ts_builtin_sym_end] = ACTIONS(1162), + [sym_name] = ACTIONS(1164), + [anon_sym_QMARK_GT] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1162), + [aux_sym_function_static_declaration_token1] = ACTIONS(1164), + [aux_sym_global_declaration_token1] = ACTIONS(1164), + [aux_sym_namespace_definition_token1] = ACTIONS(1164), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1164), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1164), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1164), + [anon_sym_BSLASH] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1162), + [aux_sym_trait_declaration_token1] = ACTIONS(1164), + [aux_sym_interface_declaration_token1] = ACTIONS(1164), + [aux_sym_enum_declaration_token1] = ACTIONS(1164), + [aux_sym_enum_case_token1] = ACTIONS(1164), + [aux_sym_class_declaration_token1] = ACTIONS(1164), + [aux_sym_final_modifier_token1] = ACTIONS(1164), + [aux_sym_abstract_modifier_token1] = ACTIONS(1164), + [aux_sym_readonly_modifier_token1] = ACTIONS(1164), + [aux_sym_visibility_modifier_token1] = ACTIONS(1164), + [aux_sym_visibility_modifier_token2] = ACTIONS(1164), + [aux_sym_visibility_modifier_token3] = ACTIONS(1164), + [aux_sym__arrow_function_header_token1] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1162), + [aux_sym_cast_type_token1] = ACTIONS(1164), + [aux_sym_echo_statement_token1] = ACTIONS(1164), + [anon_sym_unset] = ACTIONS(1164), + [aux_sym_declare_statement_token1] = ACTIONS(1164), + [aux_sym_declare_statement_token2] = ACTIONS(1164), + [sym_float] = ACTIONS(1164), + [aux_sym_try_statement_token1] = ACTIONS(1164), + [aux_sym_goto_statement_token1] = ACTIONS(1164), + [aux_sym_continue_statement_token1] = ACTIONS(1164), + [aux_sym_break_statement_token1] = ACTIONS(1164), + [sym_integer] = ACTIONS(1164), + [aux_sym_return_statement_token1] = ACTIONS(1164), + [aux_sym_throw_expression_token1] = ACTIONS(1164), + [aux_sym_while_statement_token1] = ACTIONS(1164), + [aux_sym_while_statement_token2] = ACTIONS(1164), + [aux_sym_do_statement_token1] = ACTIONS(1164), + [aux_sym_for_statement_token1] = ACTIONS(1164), + [aux_sym_for_statement_token2] = ACTIONS(1164), + [aux_sym_foreach_statement_token1] = ACTIONS(1164), + [aux_sym_foreach_statement_token2] = ACTIONS(1164), + [aux_sym_if_statement_token1] = ACTIONS(1164), + [aux_sym_if_statement_token2] = ACTIONS(1164), + [aux_sym_else_if_clause_token1] = ACTIONS(1164), + [aux_sym_else_clause_token1] = ACTIONS(1164), + [aux_sym_match_expression_token1] = ACTIONS(1164), + [aux_sym_match_default_expression_token1] = ACTIONS(1164), + [aux_sym_switch_statement_token1] = ACTIONS(1164), + [aux_sym_switch_block_token1] = ACTIONS(1164), + [anon_sym_AT] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1162), + [aux_sym_clone_expression_token1] = ACTIONS(1164), + [aux_sym_print_intrinsic_token1] = ACTIONS(1164), + [aux_sym_object_creation_expression_token1] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1162), + [aux_sym__list_destructing_token1] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_self] = ACTIONS(1164), + [anon_sym_parent] = ACTIONS(1164), + [anon_sym_POUND_LBRACK] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1162), + [aux_sym_encapsed_string_token1] = ACTIONS(1162), + [anon_sym_DQUOTE] = ACTIONS(1162), + [aux_sym_string_token1] = ACTIONS(1162), + [anon_sym_LT_LT_LT] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [sym_boolean] = ACTIONS(1164), + [sym_null] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1162), + [aux_sym_yield_expression_token1] = ACTIONS(1164), + [aux_sym_include_expression_token1] = ACTIONS(1164), + [aux_sym_include_once_expression_token1] = ACTIONS(1164), + [aux_sym_require_expression_token1] = ACTIONS(1164), + [aux_sym_require_once_expression_token1] = ACTIONS(1164), + [sym_comment] = ACTIONS(3), + }, + [474] = { + [ts_builtin_sym_end] = ACTIONS(1166), + [sym_name] = ACTIONS(1168), + [anon_sym_QMARK_GT] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1166), + [aux_sym_function_static_declaration_token1] = ACTIONS(1168), + [aux_sym_global_declaration_token1] = ACTIONS(1168), + [aux_sym_namespace_definition_token1] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1168), + [anon_sym_BSLASH] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1166), + [aux_sym_trait_declaration_token1] = ACTIONS(1168), + [aux_sym_interface_declaration_token1] = ACTIONS(1168), + [aux_sym_enum_declaration_token1] = ACTIONS(1168), + [aux_sym_enum_case_token1] = ACTIONS(1168), + [aux_sym_class_declaration_token1] = ACTIONS(1168), + [aux_sym_final_modifier_token1] = ACTIONS(1168), + [aux_sym_abstract_modifier_token1] = ACTIONS(1168), + [aux_sym_readonly_modifier_token1] = ACTIONS(1168), + [aux_sym_visibility_modifier_token1] = ACTIONS(1168), + [aux_sym_visibility_modifier_token2] = ACTIONS(1168), + [aux_sym_visibility_modifier_token3] = ACTIONS(1168), + [aux_sym__arrow_function_header_token1] = ACTIONS(1168), + [anon_sym_LPAREN] = ACTIONS(1166), + [aux_sym_cast_type_token1] = ACTIONS(1168), + [aux_sym_echo_statement_token1] = ACTIONS(1168), + [anon_sym_unset] = ACTIONS(1168), + [aux_sym_declare_statement_token1] = ACTIONS(1168), + [aux_sym_declare_statement_token2] = ACTIONS(1168), + [sym_float] = ACTIONS(1168), + [aux_sym_try_statement_token1] = ACTIONS(1168), + [aux_sym_goto_statement_token1] = ACTIONS(1168), + [aux_sym_continue_statement_token1] = ACTIONS(1168), + [aux_sym_break_statement_token1] = ACTIONS(1168), + [sym_integer] = ACTIONS(1168), + [aux_sym_return_statement_token1] = ACTIONS(1168), + [aux_sym_throw_expression_token1] = ACTIONS(1168), + [aux_sym_while_statement_token1] = ACTIONS(1168), + [aux_sym_while_statement_token2] = ACTIONS(1168), + [aux_sym_do_statement_token1] = ACTIONS(1168), + [aux_sym_for_statement_token1] = ACTIONS(1168), + [aux_sym_for_statement_token2] = ACTIONS(1168), + [aux_sym_foreach_statement_token1] = ACTIONS(1168), + [aux_sym_foreach_statement_token2] = ACTIONS(1168), + [aux_sym_if_statement_token1] = ACTIONS(1168), + [aux_sym_if_statement_token2] = ACTIONS(1168), + [aux_sym_else_if_clause_token1] = ACTIONS(1168), + [aux_sym_else_clause_token1] = ACTIONS(1168), + [aux_sym_match_expression_token1] = ACTIONS(1168), + [aux_sym_match_default_expression_token1] = ACTIONS(1168), + [aux_sym_switch_statement_token1] = ACTIONS(1168), + [aux_sym_switch_block_token1] = ACTIONS(1168), + [anon_sym_AT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1166), + [aux_sym_clone_expression_token1] = ACTIONS(1168), + [aux_sym_print_intrinsic_token1] = ACTIONS(1168), + [aux_sym_object_creation_expression_token1] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [aux_sym__list_destructing_token1] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_self] = ACTIONS(1168), + [anon_sym_parent] = ACTIONS(1168), + [anon_sym_POUND_LBRACK] = ACTIONS(1166), + [anon_sym_SQUOTE] = ACTIONS(1166), + [aux_sym_encapsed_string_token1] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(1166), + [aux_sym_string_token1] = ACTIONS(1166), + [anon_sym_LT_LT_LT] = ACTIONS(1166), + [anon_sym_BQUOTE] = ACTIONS(1166), + [sym_boolean] = ACTIONS(1168), + [sym_null] = ACTIONS(1168), + [anon_sym_DOLLAR] = ACTIONS(1166), + [aux_sym_yield_expression_token1] = ACTIONS(1168), + [aux_sym_include_expression_token1] = ACTIONS(1168), + [aux_sym_include_once_expression_token1] = ACTIONS(1168), + [aux_sym_require_expression_token1] = ACTIONS(1168), + [aux_sym_require_once_expression_token1] = ACTIONS(1168), + [sym_comment] = ACTIONS(3), + }, + [475] = { + [ts_builtin_sym_end] = ACTIONS(1170), + [sym_name] = ACTIONS(1172), + [anon_sym_QMARK_GT] = ACTIONS(1170), + [anon_sym_SEMI] = ACTIONS(1170), + [aux_sym_function_static_declaration_token1] = ACTIONS(1172), + [aux_sym_global_declaration_token1] = ACTIONS(1172), + [aux_sym_namespace_definition_token1] = ACTIONS(1172), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1172), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1172), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1172), + [anon_sym_BSLASH] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1170), + [aux_sym_trait_declaration_token1] = ACTIONS(1172), + [aux_sym_interface_declaration_token1] = ACTIONS(1172), + [aux_sym_enum_declaration_token1] = ACTIONS(1172), + [aux_sym_enum_case_token1] = ACTIONS(1172), + [aux_sym_class_declaration_token1] = ACTIONS(1172), + [aux_sym_final_modifier_token1] = ACTIONS(1172), + [aux_sym_abstract_modifier_token1] = ACTIONS(1172), + [aux_sym_readonly_modifier_token1] = ACTIONS(1172), + [aux_sym_visibility_modifier_token1] = ACTIONS(1172), + [aux_sym_visibility_modifier_token2] = ACTIONS(1172), + [aux_sym_visibility_modifier_token3] = ACTIONS(1172), + [aux_sym__arrow_function_header_token1] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1170), + [aux_sym_cast_type_token1] = ACTIONS(1172), + [aux_sym_echo_statement_token1] = ACTIONS(1172), + [anon_sym_unset] = ACTIONS(1172), + [aux_sym_declare_statement_token1] = ACTIONS(1172), + [aux_sym_declare_statement_token2] = ACTIONS(1172), + [sym_float] = ACTIONS(1172), + [aux_sym_try_statement_token1] = ACTIONS(1172), + [aux_sym_goto_statement_token1] = ACTIONS(1172), + [aux_sym_continue_statement_token1] = ACTIONS(1172), + [aux_sym_break_statement_token1] = ACTIONS(1172), + [sym_integer] = ACTIONS(1172), + [aux_sym_return_statement_token1] = ACTIONS(1172), + [aux_sym_throw_expression_token1] = ACTIONS(1172), + [aux_sym_while_statement_token1] = ACTIONS(1172), + [aux_sym_while_statement_token2] = ACTIONS(1172), + [aux_sym_do_statement_token1] = ACTIONS(1172), + [aux_sym_for_statement_token1] = ACTIONS(1172), + [aux_sym_for_statement_token2] = ACTIONS(1172), + [aux_sym_foreach_statement_token1] = ACTIONS(1172), + [aux_sym_foreach_statement_token2] = ACTIONS(1172), + [aux_sym_if_statement_token1] = ACTIONS(1172), + [aux_sym_if_statement_token2] = ACTIONS(1172), + [aux_sym_else_if_clause_token1] = ACTIONS(1172), + [aux_sym_else_clause_token1] = ACTIONS(1172), + [aux_sym_match_expression_token1] = ACTIONS(1172), + [aux_sym_match_default_expression_token1] = ACTIONS(1172), + [aux_sym_switch_statement_token1] = ACTIONS(1172), + [aux_sym_switch_block_token1] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1170), + [aux_sym_clone_expression_token1] = ACTIONS(1172), + [aux_sym_print_intrinsic_token1] = ACTIONS(1172), + [aux_sym_object_creation_expression_token1] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), + [aux_sym__list_destructing_token1] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_self] = ACTIONS(1172), + [anon_sym_parent] = ACTIONS(1172), + [anon_sym_POUND_LBRACK] = ACTIONS(1170), + [anon_sym_SQUOTE] = ACTIONS(1170), + [aux_sym_encapsed_string_token1] = ACTIONS(1170), + [anon_sym_DQUOTE] = ACTIONS(1170), + [aux_sym_string_token1] = ACTIONS(1170), + [anon_sym_LT_LT_LT] = ACTIONS(1170), + [anon_sym_BQUOTE] = ACTIONS(1170), + [sym_boolean] = ACTIONS(1172), + [sym_null] = ACTIONS(1172), + [anon_sym_DOLLAR] = ACTIONS(1170), + [aux_sym_yield_expression_token1] = ACTIONS(1172), + [aux_sym_include_expression_token1] = ACTIONS(1172), + [aux_sym_include_once_expression_token1] = ACTIONS(1172), + [aux_sym_require_expression_token1] = ACTIONS(1172), + [aux_sym_require_once_expression_token1] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + }, + [476] = { + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_name] = ACTIONS(1176), + [anon_sym_QMARK_GT] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1174), + [aux_sym_function_static_declaration_token1] = ACTIONS(1176), + [aux_sym_global_declaration_token1] = ACTIONS(1176), + [aux_sym_namespace_definition_token1] = ACTIONS(1176), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1176), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1176), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1176), + [anon_sym_BSLASH] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1174), + [aux_sym_trait_declaration_token1] = ACTIONS(1176), + [aux_sym_interface_declaration_token1] = ACTIONS(1176), + [aux_sym_enum_declaration_token1] = ACTIONS(1176), + [aux_sym_enum_case_token1] = ACTIONS(1176), + [aux_sym_class_declaration_token1] = ACTIONS(1176), + [aux_sym_final_modifier_token1] = ACTIONS(1176), + [aux_sym_abstract_modifier_token1] = ACTIONS(1176), + [aux_sym_readonly_modifier_token1] = ACTIONS(1176), + [aux_sym_visibility_modifier_token1] = ACTIONS(1176), + [aux_sym_visibility_modifier_token2] = ACTIONS(1176), + [aux_sym_visibility_modifier_token3] = ACTIONS(1176), + [aux_sym__arrow_function_header_token1] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1174), + [aux_sym_cast_type_token1] = ACTIONS(1176), + [aux_sym_echo_statement_token1] = ACTIONS(1176), + [anon_sym_unset] = ACTIONS(1176), + [aux_sym_declare_statement_token1] = ACTIONS(1176), + [aux_sym_declare_statement_token2] = ACTIONS(1176), + [sym_float] = ACTIONS(1176), + [aux_sym_try_statement_token1] = ACTIONS(1176), + [aux_sym_goto_statement_token1] = ACTIONS(1176), + [aux_sym_continue_statement_token1] = ACTIONS(1176), + [aux_sym_break_statement_token1] = ACTIONS(1176), + [sym_integer] = ACTIONS(1176), + [aux_sym_return_statement_token1] = ACTIONS(1176), + [aux_sym_throw_expression_token1] = ACTIONS(1176), + [aux_sym_while_statement_token1] = ACTIONS(1176), + [aux_sym_while_statement_token2] = ACTIONS(1176), + [aux_sym_do_statement_token1] = ACTIONS(1176), + [aux_sym_for_statement_token1] = ACTIONS(1176), + [aux_sym_for_statement_token2] = ACTIONS(1176), + [aux_sym_foreach_statement_token1] = ACTIONS(1176), + [aux_sym_foreach_statement_token2] = ACTIONS(1176), + [aux_sym_if_statement_token1] = ACTIONS(1176), + [aux_sym_if_statement_token2] = ACTIONS(1176), + [aux_sym_else_if_clause_token1] = ACTIONS(1176), + [aux_sym_else_clause_token1] = ACTIONS(1176), + [aux_sym_match_expression_token1] = ACTIONS(1176), + [aux_sym_match_default_expression_token1] = ACTIONS(1176), + [aux_sym_switch_statement_token1] = ACTIONS(1176), + [aux_sym_switch_block_token1] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1174), + [aux_sym_clone_expression_token1] = ACTIONS(1176), + [aux_sym_print_intrinsic_token1] = ACTIONS(1176), + [aux_sym_object_creation_expression_token1] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1174), + [aux_sym__list_destructing_token1] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_self] = ACTIONS(1176), + [anon_sym_parent] = ACTIONS(1176), + [anon_sym_POUND_LBRACK] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1174), + [aux_sym_encapsed_string_token1] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1174), + [aux_sym_string_token1] = ACTIONS(1174), + [anon_sym_LT_LT_LT] = ACTIONS(1174), + [anon_sym_BQUOTE] = ACTIONS(1174), + [sym_boolean] = ACTIONS(1176), + [sym_null] = ACTIONS(1176), + [anon_sym_DOLLAR] = ACTIONS(1174), + [aux_sym_yield_expression_token1] = ACTIONS(1176), + [aux_sym_include_expression_token1] = ACTIONS(1176), + [aux_sym_include_once_expression_token1] = ACTIONS(1176), + [aux_sym_require_expression_token1] = ACTIONS(1176), + [aux_sym_require_once_expression_token1] = ACTIONS(1176), + [sym_comment] = ACTIONS(3), + }, + [477] = { + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_name] = ACTIONS(1176), + [anon_sym_QMARK_GT] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1174), + [aux_sym_function_static_declaration_token1] = ACTIONS(1176), + [aux_sym_global_declaration_token1] = ACTIONS(1176), + [aux_sym_namespace_definition_token1] = ACTIONS(1176), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1176), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1176), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1176), + [anon_sym_BSLASH] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1174), + [aux_sym_trait_declaration_token1] = ACTIONS(1176), + [aux_sym_interface_declaration_token1] = ACTIONS(1176), + [aux_sym_enum_declaration_token1] = ACTIONS(1176), + [aux_sym_enum_case_token1] = ACTIONS(1176), + [aux_sym_class_declaration_token1] = ACTIONS(1176), + [aux_sym_final_modifier_token1] = ACTIONS(1176), + [aux_sym_abstract_modifier_token1] = ACTIONS(1176), + [aux_sym_readonly_modifier_token1] = ACTIONS(1176), + [aux_sym_visibility_modifier_token1] = ACTIONS(1176), + [aux_sym_visibility_modifier_token2] = ACTIONS(1176), + [aux_sym_visibility_modifier_token3] = ACTIONS(1176), + [aux_sym__arrow_function_header_token1] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1174), + [aux_sym_cast_type_token1] = ACTIONS(1176), + [aux_sym_echo_statement_token1] = ACTIONS(1176), + [anon_sym_unset] = ACTIONS(1176), + [aux_sym_declare_statement_token1] = ACTIONS(1176), + [aux_sym_declare_statement_token2] = ACTIONS(1176), + [sym_float] = ACTIONS(1176), + [aux_sym_try_statement_token1] = ACTIONS(1176), + [aux_sym_goto_statement_token1] = ACTIONS(1176), + [aux_sym_continue_statement_token1] = ACTIONS(1176), + [aux_sym_break_statement_token1] = ACTIONS(1176), + [sym_integer] = ACTIONS(1176), + [aux_sym_return_statement_token1] = ACTIONS(1176), + [aux_sym_throw_expression_token1] = ACTIONS(1176), + [aux_sym_while_statement_token1] = ACTIONS(1176), + [aux_sym_while_statement_token2] = ACTIONS(1176), + [aux_sym_do_statement_token1] = ACTIONS(1176), + [aux_sym_for_statement_token1] = ACTIONS(1176), + [aux_sym_for_statement_token2] = ACTIONS(1176), + [aux_sym_foreach_statement_token1] = ACTIONS(1176), + [aux_sym_foreach_statement_token2] = ACTIONS(1176), + [aux_sym_if_statement_token1] = ACTIONS(1176), + [aux_sym_if_statement_token2] = ACTIONS(1176), + [aux_sym_else_if_clause_token1] = ACTIONS(1176), + [aux_sym_else_clause_token1] = ACTIONS(1176), + [aux_sym_match_expression_token1] = ACTIONS(1176), + [aux_sym_match_default_expression_token1] = ACTIONS(1176), + [aux_sym_switch_statement_token1] = ACTIONS(1176), + [aux_sym_switch_block_token1] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1174), + [aux_sym_clone_expression_token1] = ACTIONS(1176), + [aux_sym_print_intrinsic_token1] = ACTIONS(1176), + [aux_sym_object_creation_expression_token1] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1174), + [aux_sym__list_destructing_token1] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_self] = ACTIONS(1176), + [anon_sym_parent] = ACTIONS(1176), + [anon_sym_POUND_LBRACK] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1174), + [aux_sym_encapsed_string_token1] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1174), + [aux_sym_string_token1] = ACTIONS(1174), + [anon_sym_LT_LT_LT] = ACTIONS(1174), + [anon_sym_BQUOTE] = ACTIONS(1174), + [sym_boolean] = ACTIONS(1176), + [sym_null] = ACTIONS(1176), + [anon_sym_DOLLAR] = ACTIONS(1174), + [aux_sym_yield_expression_token1] = ACTIONS(1176), + [aux_sym_include_expression_token1] = ACTIONS(1176), + [aux_sym_include_once_expression_token1] = ACTIONS(1176), + [aux_sym_require_expression_token1] = ACTIONS(1176), + [aux_sym_require_once_expression_token1] = ACTIONS(1176), + [sym_comment] = ACTIONS(3), + }, + [478] = { + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_name] = ACTIONS(1180), + [anon_sym_QMARK_GT] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1178), + [aux_sym_function_static_declaration_token1] = ACTIONS(1180), + [aux_sym_global_declaration_token1] = ACTIONS(1180), + [aux_sym_namespace_definition_token1] = ACTIONS(1180), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1180), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1180), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1180), + [anon_sym_BSLASH] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [aux_sym_trait_declaration_token1] = ACTIONS(1180), + [aux_sym_interface_declaration_token1] = ACTIONS(1180), + [aux_sym_enum_declaration_token1] = ACTIONS(1180), + [aux_sym_enum_case_token1] = ACTIONS(1180), + [aux_sym_class_declaration_token1] = ACTIONS(1180), + [aux_sym_final_modifier_token1] = ACTIONS(1180), + [aux_sym_abstract_modifier_token1] = ACTIONS(1180), + [aux_sym_readonly_modifier_token1] = ACTIONS(1180), + [aux_sym_visibility_modifier_token1] = ACTIONS(1180), + [aux_sym_visibility_modifier_token2] = ACTIONS(1180), + [aux_sym_visibility_modifier_token3] = ACTIONS(1180), + [aux_sym__arrow_function_header_token1] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1178), + [aux_sym_cast_type_token1] = ACTIONS(1180), + [aux_sym_echo_statement_token1] = ACTIONS(1180), + [anon_sym_unset] = ACTIONS(1180), + [aux_sym_declare_statement_token1] = ACTIONS(1180), + [aux_sym_declare_statement_token2] = ACTIONS(1180), + [sym_float] = ACTIONS(1180), + [aux_sym_try_statement_token1] = ACTIONS(1180), + [aux_sym_goto_statement_token1] = ACTIONS(1180), + [aux_sym_continue_statement_token1] = ACTIONS(1180), + [aux_sym_break_statement_token1] = ACTIONS(1180), + [sym_integer] = ACTIONS(1180), + [aux_sym_return_statement_token1] = ACTIONS(1180), + [aux_sym_throw_expression_token1] = ACTIONS(1180), + [aux_sym_while_statement_token1] = ACTIONS(1180), + [aux_sym_while_statement_token2] = ACTIONS(1180), + [aux_sym_do_statement_token1] = ACTIONS(1180), + [aux_sym_for_statement_token1] = ACTIONS(1180), + [aux_sym_for_statement_token2] = ACTIONS(1180), + [aux_sym_foreach_statement_token1] = ACTIONS(1180), + [aux_sym_foreach_statement_token2] = ACTIONS(1180), + [aux_sym_if_statement_token1] = ACTIONS(1180), + [aux_sym_if_statement_token2] = ACTIONS(1180), + [aux_sym_else_if_clause_token1] = ACTIONS(1180), + [aux_sym_else_clause_token1] = ACTIONS(1180), + [aux_sym_match_expression_token1] = ACTIONS(1180), + [aux_sym_match_default_expression_token1] = ACTIONS(1180), + [aux_sym_switch_statement_token1] = ACTIONS(1180), + [aux_sym_switch_block_token1] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [aux_sym_clone_expression_token1] = ACTIONS(1180), + [aux_sym_print_intrinsic_token1] = ACTIONS(1180), + [aux_sym_object_creation_expression_token1] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1178), + [aux_sym__list_destructing_token1] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_self] = ACTIONS(1180), + [anon_sym_parent] = ACTIONS(1180), + [anon_sym_POUND_LBRACK] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1178), + [aux_sym_encapsed_string_token1] = ACTIONS(1178), + [anon_sym_DQUOTE] = ACTIONS(1178), + [aux_sym_string_token1] = ACTIONS(1178), + [anon_sym_LT_LT_LT] = ACTIONS(1178), + [anon_sym_BQUOTE] = ACTIONS(1178), + [sym_boolean] = ACTIONS(1180), + [sym_null] = ACTIONS(1180), + [anon_sym_DOLLAR] = ACTIONS(1178), + [aux_sym_yield_expression_token1] = ACTIONS(1180), + [aux_sym_include_expression_token1] = ACTIONS(1180), + [aux_sym_include_once_expression_token1] = ACTIONS(1180), + [aux_sym_require_expression_token1] = ACTIONS(1180), + [aux_sym_require_once_expression_token1] = ACTIONS(1180), + [sym_comment] = ACTIONS(3), + }, + [479] = { + [ts_builtin_sym_end] = ACTIONS(1182), + [sym_name] = ACTIONS(1184), + [anon_sym_QMARK_GT] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1182), + [aux_sym_function_static_declaration_token1] = ACTIONS(1184), + [aux_sym_global_declaration_token1] = ACTIONS(1184), + [aux_sym_namespace_definition_token1] = ACTIONS(1184), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1184), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1184), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1184), + [anon_sym_BSLASH] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(1182), + [aux_sym_trait_declaration_token1] = ACTIONS(1184), + [aux_sym_interface_declaration_token1] = ACTIONS(1184), + [aux_sym_enum_declaration_token1] = ACTIONS(1184), + [aux_sym_enum_case_token1] = ACTIONS(1184), + [aux_sym_class_declaration_token1] = ACTIONS(1184), + [aux_sym_final_modifier_token1] = ACTIONS(1184), + [aux_sym_abstract_modifier_token1] = ACTIONS(1184), + [aux_sym_readonly_modifier_token1] = ACTIONS(1184), + [aux_sym_visibility_modifier_token1] = ACTIONS(1184), + [aux_sym_visibility_modifier_token2] = ACTIONS(1184), + [aux_sym_visibility_modifier_token3] = ACTIONS(1184), + [aux_sym__arrow_function_header_token1] = ACTIONS(1184), + [anon_sym_LPAREN] = ACTIONS(1182), + [aux_sym_cast_type_token1] = ACTIONS(1184), + [aux_sym_echo_statement_token1] = ACTIONS(1184), + [anon_sym_unset] = ACTIONS(1184), + [aux_sym_declare_statement_token1] = ACTIONS(1184), + [aux_sym_declare_statement_token2] = ACTIONS(1184), + [sym_float] = ACTIONS(1184), + [aux_sym_try_statement_token1] = ACTIONS(1184), + [aux_sym_goto_statement_token1] = ACTIONS(1184), + [aux_sym_continue_statement_token1] = ACTIONS(1184), + [aux_sym_break_statement_token1] = ACTIONS(1184), + [sym_integer] = ACTIONS(1184), + [aux_sym_return_statement_token1] = ACTIONS(1184), + [aux_sym_throw_expression_token1] = ACTIONS(1184), + [aux_sym_while_statement_token1] = ACTIONS(1184), + [aux_sym_while_statement_token2] = ACTIONS(1184), + [aux_sym_do_statement_token1] = ACTIONS(1184), + [aux_sym_for_statement_token1] = ACTIONS(1184), + [aux_sym_for_statement_token2] = ACTIONS(1184), + [aux_sym_foreach_statement_token1] = ACTIONS(1184), + [aux_sym_foreach_statement_token2] = ACTIONS(1184), + [aux_sym_if_statement_token1] = ACTIONS(1184), + [aux_sym_if_statement_token2] = ACTIONS(1184), + [aux_sym_else_if_clause_token1] = ACTIONS(1184), + [aux_sym_else_clause_token1] = ACTIONS(1184), + [aux_sym_match_expression_token1] = ACTIONS(1184), + [aux_sym_match_default_expression_token1] = ACTIONS(1184), + [aux_sym_switch_statement_token1] = ACTIONS(1184), + [aux_sym_switch_block_token1] = ACTIONS(1184), + [anon_sym_AT] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_TILDE] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1182), + [aux_sym_clone_expression_token1] = ACTIONS(1184), + [aux_sym_print_intrinsic_token1] = ACTIONS(1184), + [aux_sym_object_creation_expression_token1] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [aux_sym__list_destructing_token1] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_self] = ACTIONS(1184), + [anon_sym_parent] = ACTIONS(1184), + [anon_sym_POUND_LBRACK] = ACTIONS(1182), + [anon_sym_SQUOTE] = ACTIONS(1182), + [aux_sym_encapsed_string_token1] = ACTIONS(1182), + [anon_sym_DQUOTE] = ACTIONS(1182), + [aux_sym_string_token1] = ACTIONS(1182), + [anon_sym_LT_LT_LT] = ACTIONS(1182), + [anon_sym_BQUOTE] = ACTIONS(1182), + [sym_boolean] = ACTIONS(1184), + [sym_null] = ACTIONS(1184), + [anon_sym_DOLLAR] = ACTIONS(1182), + [aux_sym_yield_expression_token1] = ACTIONS(1184), + [aux_sym_include_expression_token1] = ACTIONS(1184), + [aux_sym_include_once_expression_token1] = ACTIONS(1184), + [aux_sym_require_expression_token1] = ACTIONS(1184), + [aux_sym_require_once_expression_token1] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + }, + [480] = { + [ts_builtin_sym_end] = ACTIONS(1186), + [sym_name] = ACTIONS(1188), + [anon_sym_QMARK_GT] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1186), + [aux_sym_function_static_declaration_token1] = ACTIONS(1188), + [aux_sym_global_declaration_token1] = ACTIONS(1188), + [aux_sym_namespace_definition_token1] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1188), + [anon_sym_BSLASH] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_RBRACE] = ACTIONS(1186), + [aux_sym_trait_declaration_token1] = ACTIONS(1188), + [aux_sym_interface_declaration_token1] = ACTIONS(1188), + [aux_sym_enum_declaration_token1] = ACTIONS(1188), + [aux_sym_enum_case_token1] = ACTIONS(1188), + [aux_sym_class_declaration_token1] = ACTIONS(1188), + [aux_sym_final_modifier_token1] = ACTIONS(1188), + [aux_sym_abstract_modifier_token1] = ACTIONS(1188), + [aux_sym_readonly_modifier_token1] = ACTIONS(1188), + [aux_sym_visibility_modifier_token1] = ACTIONS(1188), + [aux_sym_visibility_modifier_token2] = ACTIONS(1188), + [aux_sym_visibility_modifier_token3] = ACTIONS(1188), + [aux_sym__arrow_function_header_token1] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1186), + [aux_sym_cast_type_token1] = ACTIONS(1188), + [aux_sym_echo_statement_token1] = ACTIONS(1188), + [anon_sym_unset] = ACTIONS(1188), + [aux_sym_declare_statement_token1] = ACTIONS(1188), + [aux_sym_declare_statement_token2] = ACTIONS(1188), + [sym_float] = ACTIONS(1188), + [aux_sym_try_statement_token1] = ACTIONS(1188), + [aux_sym_goto_statement_token1] = ACTIONS(1188), + [aux_sym_continue_statement_token1] = ACTIONS(1188), + [aux_sym_break_statement_token1] = ACTIONS(1188), + [sym_integer] = ACTIONS(1188), + [aux_sym_return_statement_token1] = ACTIONS(1188), + [aux_sym_throw_expression_token1] = ACTIONS(1188), + [aux_sym_while_statement_token1] = ACTIONS(1188), + [aux_sym_while_statement_token2] = ACTIONS(1188), + [aux_sym_do_statement_token1] = ACTIONS(1188), + [aux_sym_for_statement_token1] = ACTIONS(1188), + [aux_sym_for_statement_token2] = ACTIONS(1188), + [aux_sym_foreach_statement_token1] = ACTIONS(1188), + [aux_sym_foreach_statement_token2] = ACTIONS(1188), + [aux_sym_if_statement_token1] = ACTIONS(1188), + [aux_sym_if_statement_token2] = ACTIONS(1188), + [aux_sym_else_if_clause_token1] = ACTIONS(1188), + [aux_sym_else_clause_token1] = ACTIONS(1188), + [aux_sym_match_expression_token1] = ACTIONS(1188), + [aux_sym_match_default_expression_token1] = ACTIONS(1188), + [aux_sym_switch_statement_token1] = ACTIONS(1188), + [aux_sym_switch_block_token1] = ACTIONS(1188), + [anon_sym_AT] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [aux_sym_clone_expression_token1] = ACTIONS(1188), + [aux_sym_print_intrinsic_token1] = ACTIONS(1188), + [aux_sym_object_creation_expression_token1] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1186), + [aux_sym__list_destructing_token1] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_self] = ACTIONS(1188), + [anon_sym_parent] = ACTIONS(1188), + [anon_sym_POUND_LBRACK] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(1186), + [aux_sym_encapsed_string_token1] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(1186), + [aux_sym_string_token1] = ACTIONS(1186), + [anon_sym_LT_LT_LT] = ACTIONS(1186), + [anon_sym_BQUOTE] = ACTIONS(1186), + [sym_boolean] = ACTIONS(1188), + [sym_null] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1186), + [aux_sym_yield_expression_token1] = ACTIONS(1188), + [aux_sym_include_expression_token1] = ACTIONS(1188), + [aux_sym_include_once_expression_token1] = ACTIONS(1188), + [aux_sym_require_expression_token1] = ACTIONS(1188), + [aux_sym_require_once_expression_token1] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + }, + [481] = { + [ts_builtin_sym_end] = ACTIONS(1190), + [sym_name] = ACTIONS(1192), + [anon_sym_QMARK_GT] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1190), + [aux_sym_function_static_declaration_token1] = ACTIONS(1192), + [aux_sym_global_declaration_token1] = ACTIONS(1192), + [aux_sym_namespace_definition_token1] = ACTIONS(1192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1192), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1192), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1192), + [anon_sym_BSLASH] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_RBRACE] = ACTIONS(1190), + [aux_sym_trait_declaration_token1] = ACTIONS(1192), + [aux_sym_interface_declaration_token1] = ACTIONS(1192), + [aux_sym_enum_declaration_token1] = ACTIONS(1192), + [aux_sym_enum_case_token1] = ACTIONS(1192), + [aux_sym_class_declaration_token1] = ACTIONS(1192), + [aux_sym_final_modifier_token1] = ACTIONS(1192), + [aux_sym_abstract_modifier_token1] = ACTIONS(1192), + [aux_sym_readonly_modifier_token1] = ACTIONS(1192), + [aux_sym_visibility_modifier_token1] = ACTIONS(1192), + [aux_sym_visibility_modifier_token2] = ACTIONS(1192), + [aux_sym_visibility_modifier_token3] = ACTIONS(1192), + [aux_sym__arrow_function_header_token1] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1190), + [aux_sym_cast_type_token1] = ACTIONS(1192), + [aux_sym_echo_statement_token1] = ACTIONS(1192), + [anon_sym_unset] = ACTIONS(1192), + [aux_sym_declare_statement_token1] = ACTIONS(1192), + [aux_sym_declare_statement_token2] = ACTIONS(1192), + [sym_float] = ACTIONS(1192), + [aux_sym_try_statement_token1] = ACTIONS(1192), + [aux_sym_goto_statement_token1] = ACTIONS(1192), + [aux_sym_continue_statement_token1] = ACTIONS(1192), + [aux_sym_break_statement_token1] = ACTIONS(1192), + [sym_integer] = ACTIONS(1192), + [aux_sym_return_statement_token1] = ACTIONS(1192), + [aux_sym_throw_expression_token1] = ACTIONS(1192), + [aux_sym_while_statement_token1] = ACTIONS(1192), + [aux_sym_while_statement_token2] = ACTIONS(1192), + [aux_sym_do_statement_token1] = ACTIONS(1192), + [aux_sym_for_statement_token1] = ACTIONS(1192), + [aux_sym_for_statement_token2] = ACTIONS(1192), + [aux_sym_foreach_statement_token1] = ACTIONS(1192), + [aux_sym_foreach_statement_token2] = ACTIONS(1192), + [aux_sym_if_statement_token1] = ACTIONS(1192), + [aux_sym_if_statement_token2] = ACTIONS(1192), + [aux_sym_else_if_clause_token1] = ACTIONS(1192), + [aux_sym_else_clause_token1] = ACTIONS(1192), + [aux_sym_match_expression_token1] = ACTIONS(1192), + [aux_sym_match_default_expression_token1] = ACTIONS(1192), + [aux_sym_switch_statement_token1] = ACTIONS(1192), + [aux_sym_switch_block_token1] = ACTIONS(1192), + [anon_sym_AT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1190), + [aux_sym_clone_expression_token1] = ACTIONS(1192), + [aux_sym_print_intrinsic_token1] = ACTIONS(1192), + [aux_sym_object_creation_expression_token1] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [aux_sym__list_destructing_token1] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_self] = ACTIONS(1192), + [anon_sym_parent] = ACTIONS(1192), + [anon_sym_POUND_LBRACK] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [aux_sym_encapsed_string_token1] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1190), + [aux_sym_string_token1] = ACTIONS(1190), + [anon_sym_LT_LT_LT] = ACTIONS(1190), + [anon_sym_BQUOTE] = ACTIONS(1190), + [sym_boolean] = ACTIONS(1192), + [sym_null] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1190), + [aux_sym_yield_expression_token1] = ACTIONS(1192), + [aux_sym_include_expression_token1] = ACTIONS(1192), + [aux_sym_include_once_expression_token1] = ACTIONS(1192), + [aux_sym_require_expression_token1] = ACTIONS(1192), + [aux_sym_require_once_expression_token1] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + }, + [482] = { + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_name] = ACTIONS(1196), + [anon_sym_QMARK_GT] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1194), + [aux_sym_function_static_declaration_token1] = ACTIONS(1196), + [aux_sym_global_declaration_token1] = ACTIONS(1196), + [aux_sym_namespace_definition_token1] = ACTIONS(1196), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1196), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1196), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [aux_sym_trait_declaration_token1] = ACTIONS(1196), + [aux_sym_interface_declaration_token1] = ACTIONS(1196), + [aux_sym_enum_declaration_token1] = ACTIONS(1196), + [aux_sym_enum_case_token1] = ACTIONS(1196), + [aux_sym_class_declaration_token1] = ACTIONS(1196), + [aux_sym_final_modifier_token1] = ACTIONS(1196), + [aux_sym_abstract_modifier_token1] = ACTIONS(1196), + [aux_sym_readonly_modifier_token1] = ACTIONS(1196), + [aux_sym_visibility_modifier_token1] = ACTIONS(1196), + [aux_sym_visibility_modifier_token2] = ACTIONS(1196), + [aux_sym_visibility_modifier_token3] = ACTIONS(1196), + [aux_sym__arrow_function_header_token1] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1194), + [aux_sym_cast_type_token1] = ACTIONS(1196), + [aux_sym_echo_statement_token1] = ACTIONS(1196), + [anon_sym_unset] = ACTIONS(1196), + [aux_sym_declare_statement_token1] = ACTIONS(1196), + [aux_sym_declare_statement_token2] = ACTIONS(1196), + [sym_float] = ACTIONS(1196), + [aux_sym_try_statement_token1] = ACTIONS(1196), + [aux_sym_goto_statement_token1] = ACTIONS(1196), + [aux_sym_continue_statement_token1] = ACTIONS(1196), + [aux_sym_break_statement_token1] = ACTIONS(1196), + [sym_integer] = ACTIONS(1196), + [aux_sym_return_statement_token1] = ACTIONS(1196), + [aux_sym_throw_expression_token1] = ACTIONS(1196), + [aux_sym_while_statement_token1] = ACTIONS(1196), + [aux_sym_while_statement_token2] = ACTIONS(1196), + [aux_sym_do_statement_token1] = ACTIONS(1196), + [aux_sym_for_statement_token1] = ACTIONS(1196), + [aux_sym_for_statement_token2] = ACTIONS(1196), + [aux_sym_foreach_statement_token1] = ACTIONS(1196), + [aux_sym_foreach_statement_token2] = ACTIONS(1196), + [aux_sym_if_statement_token1] = ACTIONS(1196), + [aux_sym_if_statement_token2] = ACTIONS(1196), + [aux_sym_else_if_clause_token1] = ACTIONS(1196), + [aux_sym_else_clause_token1] = ACTIONS(1196), + [aux_sym_match_expression_token1] = ACTIONS(1196), + [aux_sym_match_default_expression_token1] = ACTIONS(1196), + [aux_sym_switch_statement_token1] = ACTIONS(1196), + [aux_sym_switch_block_token1] = ACTIONS(1196), + [anon_sym_AT] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1194), + [aux_sym_clone_expression_token1] = ACTIONS(1196), + [aux_sym_print_intrinsic_token1] = ACTIONS(1196), + [aux_sym_object_creation_expression_token1] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym__list_destructing_token1] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_self] = ACTIONS(1196), + [anon_sym_parent] = ACTIONS(1196), + [anon_sym_POUND_LBRACK] = ACTIONS(1194), + [anon_sym_SQUOTE] = ACTIONS(1194), + [aux_sym_encapsed_string_token1] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1194), + [aux_sym_string_token1] = ACTIONS(1194), + [anon_sym_LT_LT_LT] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1194), + [sym_boolean] = ACTIONS(1196), + [sym_null] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1194), + [aux_sym_yield_expression_token1] = ACTIONS(1196), + [aux_sym_include_expression_token1] = ACTIONS(1196), + [aux_sym_include_once_expression_token1] = ACTIONS(1196), + [aux_sym_require_expression_token1] = ACTIONS(1196), + [aux_sym_require_once_expression_token1] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + }, + [483] = { + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_name] = ACTIONS(1200), + [anon_sym_QMARK_GT] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [aux_sym_function_static_declaration_token1] = ACTIONS(1200), + [aux_sym_global_declaration_token1] = ACTIONS(1200), + [aux_sym_namespace_definition_token1] = ACTIONS(1200), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1200), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1200), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1200), + [anon_sym_BSLASH] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [aux_sym_trait_declaration_token1] = ACTIONS(1200), + [aux_sym_interface_declaration_token1] = ACTIONS(1200), + [aux_sym_enum_declaration_token1] = ACTIONS(1200), + [aux_sym_enum_case_token1] = ACTIONS(1200), + [aux_sym_class_declaration_token1] = ACTIONS(1200), + [aux_sym_final_modifier_token1] = ACTIONS(1200), + [aux_sym_abstract_modifier_token1] = ACTIONS(1200), + [aux_sym_readonly_modifier_token1] = ACTIONS(1200), + [aux_sym_visibility_modifier_token1] = ACTIONS(1200), + [aux_sym_visibility_modifier_token2] = ACTIONS(1200), + [aux_sym_visibility_modifier_token3] = ACTIONS(1200), + [aux_sym__arrow_function_header_token1] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1198), + [aux_sym_cast_type_token1] = ACTIONS(1200), + [aux_sym_echo_statement_token1] = ACTIONS(1200), + [anon_sym_unset] = ACTIONS(1200), + [aux_sym_declare_statement_token1] = ACTIONS(1200), + [aux_sym_declare_statement_token2] = ACTIONS(1200), + [sym_float] = ACTIONS(1200), + [aux_sym_try_statement_token1] = ACTIONS(1200), + [aux_sym_goto_statement_token1] = ACTIONS(1200), + [aux_sym_continue_statement_token1] = ACTIONS(1200), + [aux_sym_break_statement_token1] = ACTIONS(1200), + [sym_integer] = ACTIONS(1200), + [aux_sym_return_statement_token1] = ACTIONS(1200), + [aux_sym_throw_expression_token1] = ACTIONS(1200), + [aux_sym_while_statement_token1] = ACTIONS(1200), + [aux_sym_while_statement_token2] = ACTIONS(1200), + [aux_sym_do_statement_token1] = ACTIONS(1200), + [aux_sym_for_statement_token1] = ACTIONS(1200), + [aux_sym_for_statement_token2] = ACTIONS(1200), + [aux_sym_foreach_statement_token1] = ACTIONS(1200), + [aux_sym_foreach_statement_token2] = ACTIONS(1200), + [aux_sym_if_statement_token1] = ACTIONS(1200), + [aux_sym_if_statement_token2] = ACTIONS(1200), + [aux_sym_else_if_clause_token1] = ACTIONS(1200), + [aux_sym_else_clause_token1] = ACTIONS(1200), + [aux_sym_match_expression_token1] = ACTIONS(1200), + [aux_sym_match_default_expression_token1] = ACTIONS(1200), + [aux_sym_switch_statement_token1] = ACTIONS(1200), + [aux_sym_switch_block_token1] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [aux_sym_clone_expression_token1] = ACTIONS(1200), + [aux_sym_print_intrinsic_token1] = ACTIONS(1200), + [aux_sym_object_creation_expression_token1] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [aux_sym__list_destructing_token1] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_self] = ACTIONS(1200), + [anon_sym_parent] = ACTIONS(1200), + [anon_sym_POUND_LBRACK] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [aux_sym_encapsed_string_token1] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [aux_sym_string_token1] = ACTIONS(1198), + [anon_sym_LT_LT_LT] = ACTIONS(1198), + [anon_sym_BQUOTE] = ACTIONS(1198), + [sym_boolean] = ACTIONS(1200), + [sym_null] = ACTIONS(1200), + [anon_sym_DOLLAR] = ACTIONS(1198), + [aux_sym_yield_expression_token1] = ACTIONS(1200), + [aux_sym_include_expression_token1] = ACTIONS(1200), + [aux_sym_include_once_expression_token1] = ACTIONS(1200), + [aux_sym_require_expression_token1] = ACTIONS(1200), + [aux_sym_require_once_expression_token1] = ACTIONS(1200), + [sym_comment] = ACTIONS(3), + }, + [484] = { + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_name] = ACTIONS(1204), + [anon_sym_QMARK_GT] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [aux_sym_function_static_declaration_token1] = ACTIONS(1204), + [aux_sym_global_declaration_token1] = ACTIONS(1204), + [aux_sym_namespace_definition_token1] = ACTIONS(1204), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1204), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1204), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1204), + [anon_sym_BSLASH] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [aux_sym_trait_declaration_token1] = ACTIONS(1204), + [aux_sym_interface_declaration_token1] = ACTIONS(1204), + [aux_sym_enum_declaration_token1] = ACTIONS(1204), + [aux_sym_enum_case_token1] = ACTIONS(1204), + [aux_sym_class_declaration_token1] = ACTIONS(1204), + [aux_sym_final_modifier_token1] = ACTIONS(1204), + [aux_sym_abstract_modifier_token1] = ACTIONS(1204), + [aux_sym_readonly_modifier_token1] = ACTIONS(1204), + [aux_sym_visibility_modifier_token1] = ACTIONS(1204), + [aux_sym_visibility_modifier_token2] = ACTIONS(1204), + [aux_sym_visibility_modifier_token3] = ACTIONS(1204), + [aux_sym__arrow_function_header_token1] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1202), + [aux_sym_cast_type_token1] = ACTIONS(1204), + [aux_sym_echo_statement_token1] = ACTIONS(1204), + [anon_sym_unset] = ACTIONS(1204), + [aux_sym_declare_statement_token1] = ACTIONS(1204), + [aux_sym_declare_statement_token2] = ACTIONS(1204), + [sym_float] = ACTIONS(1204), + [aux_sym_try_statement_token1] = ACTIONS(1204), + [aux_sym_goto_statement_token1] = ACTIONS(1204), + [aux_sym_continue_statement_token1] = ACTIONS(1204), + [aux_sym_break_statement_token1] = ACTIONS(1204), + [sym_integer] = ACTIONS(1204), + [aux_sym_return_statement_token1] = ACTIONS(1204), + [aux_sym_throw_expression_token1] = ACTIONS(1204), + [aux_sym_while_statement_token1] = ACTIONS(1204), + [aux_sym_while_statement_token2] = ACTIONS(1204), + [aux_sym_do_statement_token1] = ACTIONS(1204), + [aux_sym_for_statement_token1] = ACTIONS(1204), + [aux_sym_for_statement_token2] = ACTIONS(1204), + [aux_sym_foreach_statement_token1] = ACTIONS(1204), + [aux_sym_foreach_statement_token2] = ACTIONS(1204), + [aux_sym_if_statement_token1] = ACTIONS(1204), + [aux_sym_if_statement_token2] = ACTIONS(1204), + [aux_sym_else_if_clause_token1] = ACTIONS(1204), + [aux_sym_else_clause_token1] = ACTIONS(1204), + [aux_sym_match_expression_token1] = ACTIONS(1204), + [aux_sym_match_default_expression_token1] = ACTIONS(1204), + [aux_sym_switch_statement_token1] = ACTIONS(1204), + [aux_sym_switch_block_token1] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [aux_sym_clone_expression_token1] = ACTIONS(1204), + [aux_sym_print_intrinsic_token1] = ACTIONS(1204), + [aux_sym_object_creation_expression_token1] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [aux_sym__list_destructing_token1] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_self] = ACTIONS(1204), + [anon_sym_parent] = ACTIONS(1204), + [anon_sym_POUND_LBRACK] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [aux_sym_encapsed_string_token1] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [aux_sym_string_token1] = ACTIONS(1202), + [anon_sym_LT_LT_LT] = ACTIONS(1202), + [anon_sym_BQUOTE] = ACTIONS(1202), + [sym_boolean] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), + [anon_sym_DOLLAR] = ACTIONS(1202), + [aux_sym_yield_expression_token1] = ACTIONS(1204), + [aux_sym_include_expression_token1] = ACTIONS(1204), + [aux_sym_include_once_expression_token1] = ACTIONS(1204), + [aux_sym_require_expression_token1] = ACTIONS(1204), + [aux_sym_require_once_expression_token1] = ACTIONS(1204), + [sym_comment] = ACTIONS(3), + }, + [485] = { + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_name] = ACTIONS(1208), + [anon_sym_QMARK_GT] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1206), + [aux_sym_function_static_declaration_token1] = ACTIONS(1208), + [aux_sym_global_declaration_token1] = ACTIONS(1208), + [aux_sym_namespace_definition_token1] = ACTIONS(1208), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1208), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1208), + [anon_sym_BSLASH] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [aux_sym_trait_declaration_token1] = ACTIONS(1208), + [aux_sym_interface_declaration_token1] = ACTIONS(1208), + [aux_sym_enum_declaration_token1] = ACTIONS(1208), + [aux_sym_enum_case_token1] = ACTIONS(1208), + [aux_sym_class_declaration_token1] = ACTIONS(1208), + [aux_sym_final_modifier_token1] = ACTIONS(1208), + [aux_sym_abstract_modifier_token1] = ACTIONS(1208), + [aux_sym_readonly_modifier_token1] = ACTIONS(1208), + [aux_sym_visibility_modifier_token1] = ACTIONS(1208), + [aux_sym_visibility_modifier_token2] = ACTIONS(1208), + [aux_sym_visibility_modifier_token3] = ACTIONS(1208), + [aux_sym__arrow_function_header_token1] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [aux_sym_cast_type_token1] = ACTIONS(1208), + [aux_sym_echo_statement_token1] = ACTIONS(1208), + [anon_sym_unset] = ACTIONS(1208), + [aux_sym_declare_statement_token1] = ACTIONS(1208), + [aux_sym_declare_statement_token2] = ACTIONS(1208), + [sym_float] = ACTIONS(1208), + [aux_sym_try_statement_token1] = ACTIONS(1208), + [aux_sym_goto_statement_token1] = ACTIONS(1208), + [aux_sym_continue_statement_token1] = ACTIONS(1208), + [aux_sym_break_statement_token1] = ACTIONS(1208), + [sym_integer] = ACTIONS(1208), + [aux_sym_return_statement_token1] = ACTIONS(1208), + [aux_sym_throw_expression_token1] = ACTIONS(1208), + [aux_sym_while_statement_token1] = ACTIONS(1208), + [aux_sym_while_statement_token2] = ACTIONS(1208), + [aux_sym_do_statement_token1] = ACTIONS(1208), + [aux_sym_for_statement_token1] = ACTIONS(1208), + [aux_sym_for_statement_token2] = ACTIONS(1208), + [aux_sym_foreach_statement_token1] = ACTIONS(1208), + [aux_sym_foreach_statement_token2] = ACTIONS(1208), + [aux_sym_if_statement_token1] = ACTIONS(1208), + [aux_sym_if_statement_token2] = ACTIONS(1208), + [aux_sym_else_if_clause_token1] = ACTIONS(1208), + [aux_sym_else_clause_token1] = ACTIONS(1208), + [aux_sym_match_expression_token1] = ACTIONS(1208), + [aux_sym_match_default_expression_token1] = ACTIONS(1208), + [aux_sym_switch_statement_token1] = ACTIONS(1208), + [aux_sym_switch_block_token1] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [aux_sym_clone_expression_token1] = ACTIONS(1208), + [aux_sym_print_intrinsic_token1] = ACTIONS(1208), + [aux_sym_object_creation_expression_token1] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [aux_sym__list_destructing_token1] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_self] = ACTIONS(1208), + [anon_sym_parent] = ACTIONS(1208), + [anon_sym_POUND_LBRACK] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [aux_sym_encapsed_string_token1] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [aux_sym_string_token1] = ACTIONS(1206), + [anon_sym_LT_LT_LT] = ACTIONS(1206), + [anon_sym_BQUOTE] = ACTIONS(1206), + [sym_boolean] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [anon_sym_DOLLAR] = ACTIONS(1206), + [aux_sym_yield_expression_token1] = ACTIONS(1208), + [aux_sym_include_expression_token1] = ACTIONS(1208), + [aux_sym_include_once_expression_token1] = ACTIONS(1208), + [aux_sym_require_expression_token1] = ACTIONS(1208), + [aux_sym_require_once_expression_token1] = ACTIONS(1208), + [sym_comment] = ACTIONS(3), + }, + [486] = { + [ts_builtin_sym_end] = ACTIONS(1210), + [sym_name] = ACTIONS(1212), + [anon_sym_QMARK_GT] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [aux_sym_function_static_declaration_token1] = ACTIONS(1212), + [aux_sym_global_declaration_token1] = ACTIONS(1212), + [aux_sym_namespace_definition_token1] = ACTIONS(1212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1212), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1212), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [aux_sym_trait_declaration_token1] = ACTIONS(1212), + [aux_sym_interface_declaration_token1] = ACTIONS(1212), + [aux_sym_enum_declaration_token1] = ACTIONS(1212), + [aux_sym_enum_case_token1] = ACTIONS(1212), + [aux_sym_class_declaration_token1] = ACTIONS(1212), + [aux_sym_final_modifier_token1] = ACTIONS(1212), + [aux_sym_abstract_modifier_token1] = ACTIONS(1212), + [aux_sym_readonly_modifier_token1] = ACTIONS(1212), + [aux_sym_visibility_modifier_token1] = ACTIONS(1212), + [aux_sym_visibility_modifier_token2] = ACTIONS(1212), + [aux_sym_visibility_modifier_token3] = ACTIONS(1212), + [aux_sym__arrow_function_header_token1] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1210), + [aux_sym_cast_type_token1] = ACTIONS(1212), + [aux_sym_echo_statement_token1] = ACTIONS(1212), + [anon_sym_unset] = ACTIONS(1212), + [aux_sym_declare_statement_token1] = ACTIONS(1212), + [aux_sym_declare_statement_token2] = ACTIONS(1212), + [sym_float] = ACTIONS(1212), + [aux_sym_try_statement_token1] = ACTIONS(1212), + [aux_sym_goto_statement_token1] = ACTIONS(1212), + [aux_sym_continue_statement_token1] = ACTIONS(1212), + [aux_sym_break_statement_token1] = ACTIONS(1212), + [sym_integer] = ACTIONS(1212), + [aux_sym_return_statement_token1] = ACTIONS(1212), + [aux_sym_throw_expression_token1] = ACTIONS(1212), + [aux_sym_while_statement_token1] = ACTIONS(1212), + [aux_sym_while_statement_token2] = ACTIONS(1212), + [aux_sym_do_statement_token1] = ACTIONS(1212), + [aux_sym_for_statement_token1] = ACTIONS(1212), + [aux_sym_for_statement_token2] = ACTIONS(1212), + [aux_sym_foreach_statement_token1] = ACTIONS(1212), + [aux_sym_foreach_statement_token2] = ACTIONS(1212), + [aux_sym_if_statement_token1] = ACTIONS(1212), + [aux_sym_if_statement_token2] = ACTIONS(1212), + [aux_sym_else_if_clause_token1] = ACTIONS(1212), + [aux_sym_else_clause_token1] = ACTIONS(1212), + [aux_sym_match_expression_token1] = ACTIONS(1212), + [aux_sym_match_default_expression_token1] = ACTIONS(1212), + [aux_sym_switch_statement_token1] = ACTIONS(1212), + [aux_sym_switch_block_token1] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [aux_sym_clone_expression_token1] = ACTIONS(1212), + [aux_sym_print_intrinsic_token1] = ACTIONS(1212), + [aux_sym_object_creation_expression_token1] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [aux_sym__list_destructing_token1] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_self] = ACTIONS(1212), + [anon_sym_parent] = ACTIONS(1212), + [anon_sym_POUND_LBRACK] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [aux_sym_encapsed_string_token1] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [aux_sym_string_token1] = ACTIONS(1210), + [anon_sym_LT_LT_LT] = ACTIONS(1210), + [anon_sym_BQUOTE] = ACTIONS(1210), + [sym_boolean] = ACTIONS(1212), + [sym_null] = ACTIONS(1212), + [anon_sym_DOLLAR] = ACTIONS(1210), + [aux_sym_yield_expression_token1] = ACTIONS(1212), + [aux_sym_include_expression_token1] = ACTIONS(1212), + [aux_sym_include_once_expression_token1] = ACTIONS(1212), + [aux_sym_require_expression_token1] = ACTIONS(1212), + [aux_sym_require_once_expression_token1] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + }, + [487] = { + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_name] = ACTIONS(1216), + [anon_sym_QMARK_GT] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [aux_sym_function_static_declaration_token1] = ACTIONS(1216), + [aux_sym_global_declaration_token1] = ACTIONS(1216), + [aux_sym_namespace_definition_token1] = ACTIONS(1216), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1216), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1216), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [aux_sym_trait_declaration_token1] = ACTIONS(1216), + [aux_sym_interface_declaration_token1] = ACTIONS(1216), + [aux_sym_enum_declaration_token1] = ACTIONS(1216), + [aux_sym_enum_case_token1] = ACTIONS(1216), + [aux_sym_class_declaration_token1] = ACTIONS(1216), + [aux_sym_final_modifier_token1] = ACTIONS(1216), + [aux_sym_abstract_modifier_token1] = ACTIONS(1216), + [aux_sym_readonly_modifier_token1] = ACTIONS(1216), + [aux_sym_visibility_modifier_token1] = ACTIONS(1216), + [aux_sym_visibility_modifier_token2] = ACTIONS(1216), + [aux_sym_visibility_modifier_token3] = ACTIONS(1216), + [aux_sym__arrow_function_header_token1] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1214), + [aux_sym_cast_type_token1] = ACTIONS(1216), + [aux_sym_echo_statement_token1] = ACTIONS(1216), + [anon_sym_unset] = ACTIONS(1216), + [aux_sym_declare_statement_token1] = ACTIONS(1216), + [aux_sym_declare_statement_token2] = ACTIONS(1216), + [sym_float] = ACTIONS(1216), + [aux_sym_try_statement_token1] = ACTIONS(1216), + [aux_sym_goto_statement_token1] = ACTIONS(1216), + [aux_sym_continue_statement_token1] = ACTIONS(1216), + [aux_sym_break_statement_token1] = ACTIONS(1216), + [sym_integer] = ACTIONS(1216), + [aux_sym_return_statement_token1] = ACTIONS(1216), + [aux_sym_throw_expression_token1] = ACTIONS(1216), + [aux_sym_while_statement_token1] = ACTIONS(1216), + [aux_sym_while_statement_token2] = ACTIONS(1216), + [aux_sym_do_statement_token1] = ACTIONS(1216), + [aux_sym_for_statement_token1] = ACTIONS(1216), + [aux_sym_for_statement_token2] = ACTIONS(1216), + [aux_sym_foreach_statement_token1] = ACTIONS(1216), + [aux_sym_foreach_statement_token2] = ACTIONS(1216), + [aux_sym_if_statement_token1] = ACTIONS(1216), + [aux_sym_if_statement_token2] = ACTIONS(1216), + [aux_sym_else_if_clause_token1] = ACTIONS(1216), + [aux_sym_else_clause_token1] = ACTIONS(1216), + [aux_sym_match_expression_token1] = ACTIONS(1216), + [aux_sym_match_default_expression_token1] = ACTIONS(1216), + [aux_sym_switch_statement_token1] = ACTIONS(1216), + [aux_sym_switch_block_token1] = ACTIONS(1216), + [anon_sym_AT] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [aux_sym_clone_expression_token1] = ACTIONS(1216), + [aux_sym_print_intrinsic_token1] = ACTIONS(1216), + [aux_sym_object_creation_expression_token1] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [aux_sym__list_destructing_token1] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_self] = ACTIONS(1216), + [anon_sym_parent] = ACTIONS(1216), + [anon_sym_POUND_LBRACK] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [aux_sym_encapsed_string_token1] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [aux_sym_string_token1] = ACTIONS(1214), + [anon_sym_LT_LT_LT] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [sym_boolean] = ACTIONS(1216), + [sym_null] = ACTIONS(1216), + [anon_sym_DOLLAR] = ACTIONS(1214), + [aux_sym_yield_expression_token1] = ACTIONS(1216), + [aux_sym_include_expression_token1] = ACTIONS(1216), + [aux_sym_include_once_expression_token1] = ACTIONS(1216), + [aux_sym_require_expression_token1] = ACTIONS(1216), + [aux_sym_require_once_expression_token1] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), + }, + [488] = { + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_name] = ACTIONS(1220), + [anon_sym_QMARK_GT] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [aux_sym_function_static_declaration_token1] = ACTIONS(1220), + [aux_sym_global_declaration_token1] = ACTIONS(1220), + [aux_sym_namespace_definition_token1] = ACTIONS(1220), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1220), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1220), + [anon_sym_BSLASH] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [aux_sym_trait_declaration_token1] = ACTIONS(1220), + [aux_sym_interface_declaration_token1] = ACTIONS(1220), + [aux_sym_enum_declaration_token1] = ACTIONS(1220), + [aux_sym_enum_case_token1] = ACTIONS(1220), + [aux_sym_class_declaration_token1] = ACTIONS(1220), + [aux_sym_final_modifier_token1] = ACTIONS(1220), + [aux_sym_abstract_modifier_token1] = ACTIONS(1220), + [aux_sym_readonly_modifier_token1] = ACTIONS(1220), + [aux_sym_visibility_modifier_token1] = ACTIONS(1220), + [aux_sym_visibility_modifier_token2] = ACTIONS(1220), + [aux_sym_visibility_modifier_token3] = ACTIONS(1220), + [aux_sym__arrow_function_header_token1] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1218), + [aux_sym_cast_type_token1] = ACTIONS(1220), + [aux_sym_echo_statement_token1] = ACTIONS(1220), + [anon_sym_unset] = ACTIONS(1220), + [aux_sym_declare_statement_token1] = ACTIONS(1220), + [aux_sym_declare_statement_token2] = ACTIONS(1220), + [sym_float] = ACTIONS(1220), + [aux_sym_try_statement_token1] = ACTIONS(1220), + [aux_sym_goto_statement_token1] = ACTIONS(1220), + [aux_sym_continue_statement_token1] = ACTIONS(1220), + [aux_sym_break_statement_token1] = ACTIONS(1220), + [sym_integer] = ACTIONS(1220), + [aux_sym_return_statement_token1] = ACTIONS(1220), + [aux_sym_throw_expression_token1] = ACTIONS(1220), + [aux_sym_while_statement_token1] = ACTIONS(1220), + [aux_sym_while_statement_token2] = ACTIONS(1220), + [aux_sym_do_statement_token1] = ACTIONS(1220), + [aux_sym_for_statement_token1] = ACTIONS(1220), + [aux_sym_for_statement_token2] = ACTIONS(1220), + [aux_sym_foreach_statement_token1] = ACTIONS(1220), + [aux_sym_foreach_statement_token2] = ACTIONS(1220), + [aux_sym_if_statement_token1] = ACTIONS(1220), + [aux_sym_if_statement_token2] = ACTIONS(1220), + [aux_sym_else_if_clause_token1] = ACTIONS(1220), + [aux_sym_else_clause_token1] = ACTIONS(1220), + [aux_sym_match_expression_token1] = ACTIONS(1220), + [aux_sym_match_default_expression_token1] = ACTIONS(1220), + [aux_sym_switch_statement_token1] = ACTIONS(1220), + [aux_sym_switch_block_token1] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [aux_sym_clone_expression_token1] = ACTIONS(1220), + [aux_sym_print_intrinsic_token1] = ACTIONS(1220), + [aux_sym_object_creation_expression_token1] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [aux_sym__list_destructing_token1] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_self] = ACTIONS(1220), + [anon_sym_parent] = ACTIONS(1220), + [anon_sym_POUND_LBRACK] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [aux_sym_encapsed_string_token1] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [aux_sym_string_token1] = ACTIONS(1218), + [anon_sym_LT_LT_LT] = ACTIONS(1218), + [anon_sym_BQUOTE] = ACTIONS(1218), + [sym_boolean] = ACTIONS(1220), + [sym_null] = ACTIONS(1220), + [anon_sym_DOLLAR] = ACTIONS(1218), + [aux_sym_yield_expression_token1] = ACTIONS(1220), + [aux_sym_include_expression_token1] = ACTIONS(1220), + [aux_sym_include_once_expression_token1] = ACTIONS(1220), + [aux_sym_require_expression_token1] = ACTIONS(1220), + [aux_sym_require_once_expression_token1] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + }, + [489] = { + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_name] = ACTIONS(1224), + [anon_sym_QMARK_GT] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [aux_sym_function_static_declaration_token1] = ACTIONS(1224), + [aux_sym_global_declaration_token1] = ACTIONS(1224), + [aux_sym_namespace_definition_token1] = ACTIONS(1224), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1224), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1224), + [anon_sym_BSLASH] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [aux_sym_trait_declaration_token1] = ACTIONS(1224), + [aux_sym_interface_declaration_token1] = ACTIONS(1224), + [aux_sym_enum_declaration_token1] = ACTIONS(1224), + [aux_sym_enum_case_token1] = ACTIONS(1224), + [aux_sym_class_declaration_token1] = ACTIONS(1224), + [aux_sym_final_modifier_token1] = ACTIONS(1224), + [aux_sym_abstract_modifier_token1] = ACTIONS(1224), + [aux_sym_readonly_modifier_token1] = ACTIONS(1224), + [aux_sym_visibility_modifier_token1] = ACTIONS(1224), + [aux_sym_visibility_modifier_token2] = ACTIONS(1224), + [aux_sym_visibility_modifier_token3] = ACTIONS(1224), + [aux_sym__arrow_function_header_token1] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1222), + [aux_sym_cast_type_token1] = ACTIONS(1224), + [aux_sym_echo_statement_token1] = ACTIONS(1224), + [anon_sym_unset] = ACTIONS(1224), + [aux_sym_declare_statement_token1] = ACTIONS(1224), + [aux_sym_declare_statement_token2] = ACTIONS(1224), + [sym_float] = ACTIONS(1224), + [aux_sym_try_statement_token1] = ACTIONS(1224), + [aux_sym_goto_statement_token1] = ACTIONS(1224), + [aux_sym_continue_statement_token1] = ACTIONS(1224), + [aux_sym_break_statement_token1] = ACTIONS(1224), + [sym_integer] = ACTIONS(1224), + [aux_sym_return_statement_token1] = ACTIONS(1224), + [aux_sym_throw_expression_token1] = ACTIONS(1224), + [aux_sym_while_statement_token1] = ACTIONS(1224), + [aux_sym_while_statement_token2] = ACTIONS(1224), + [aux_sym_do_statement_token1] = ACTIONS(1224), + [aux_sym_for_statement_token1] = ACTIONS(1224), + [aux_sym_for_statement_token2] = ACTIONS(1224), + [aux_sym_foreach_statement_token1] = ACTIONS(1224), + [aux_sym_foreach_statement_token2] = ACTIONS(1224), + [aux_sym_if_statement_token1] = ACTIONS(1224), + [aux_sym_if_statement_token2] = ACTIONS(1224), + [aux_sym_else_if_clause_token1] = ACTIONS(1224), + [aux_sym_else_clause_token1] = ACTIONS(1224), + [aux_sym_match_expression_token1] = ACTIONS(1224), + [aux_sym_match_default_expression_token1] = ACTIONS(1224), + [aux_sym_switch_statement_token1] = ACTIONS(1224), + [aux_sym_switch_block_token1] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [aux_sym_clone_expression_token1] = ACTIONS(1224), + [aux_sym_print_intrinsic_token1] = ACTIONS(1224), + [aux_sym_object_creation_expression_token1] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [aux_sym__list_destructing_token1] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_self] = ACTIONS(1224), + [anon_sym_parent] = ACTIONS(1224), + [anon_sym_POUND_LBRACK] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [aux_sym_encapsed_string_token1] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [aux_sym_string_token1] = ACTIONS(1222), + [anon_sym_LT_LT_LT] = ACTIONS(1222), + [anon_sym_BQUOTE] = ACTIONS(1222), + [sym_boolean] = ACTIONS(1224), + [sym_null] = ACTIONS(1224), + [anon_sym_DOLLAR] = ACTIONS(1222), + [aux_sym_yield_expression_token1] = ACTIONS(1224), + [aux_sym_include_expression_token1] = ACTIONS(1224), + [aux_sym_include_once_expression_token1] = ACTIONS(1224), + [aux_sym_require_expression_token1] = ACTIONS(1224), + [aux_sym_require_once_expression_token1] = ACTIONS(1224), + [sym_comment] = ACTIONS(3), + }, + [490] = { + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_name] = ACTIONS(1228), + [anon_sym_QMARK_GT] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [aux_sym_function_static_declaration_token1] = ACTIONS(1228), + [aux_sym_global_declaration_token1] = ACTIONS(1228), + [aux_sym_namespace_definition_token1] = ACTIONS(1228), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1228), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1228), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1228), + [anon_sym_BSLASH] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [aux_sym_trait_declaration_token1] = ACTIONS(1228), + [aux_sym_interface_declaration_token1] = ACTIONS(1228), + [aux_sym_enum_declaration_token1] = ACTIONS(1228), + [aux_sym_enum_case_token1] = ACTIONS(1228), + [aux_sym_class_declaration_token1] = ACTIONS(1228), + [aux_sym_final_modifier_token1] = ACTIONS(1228), + [aux_sym_abstract_modifier_token1] = ACTIONS(1228), + [aux_sym_readonly_modifier_token1] = ACTIONS(1228), + [aux_sym_visibility_modifier_token1] = ACTIONS(1228), + [aux_sym_visibility_modifier_token2] = ACTIONS(1228), + [aux_sym_visibility_modifier_token3] = ACTIONS(1228), + [aux_sym__arrow_function_header_token1] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1226), + [aux_sym_cast_type_token1] = ACTIONS(1228), + [aux_sym_echo_statement_token1] = ACTIONS(1228), + [anon_sym_unset] = ACTIONS(1228), + [aux_sym_declare_statement_token1] = ACTIONS(1228), + [aux_sym_declare_statement_token2] = ACTIONS(1228), + [sym_float] = ACTIONS(1228), + [aux_sym_try_statement_token1] = ACTIONS(1228), + [aux_sym_goto_statement_token1] = ACTIONS(1228), + [aux_sym_continue_statement_token1] = ACTIONS(1228), + [aux_sym_break_statement_token1] = ACTIONS(1228), + [sym_integer] = ACTIONS(1228), + [aux_sym_return_statement_token1] = ACTIONS(1228), + [aux_sym_throw_expression_token1] = ACTIONS(1228), + [aux_sym_while_statement_token1] = ACTIONS(1228), + [aux_sym_while_statement_token2] = ACTIONS(1228), + [aux_sym_do_statement_token1] = ACTIONS(1228), + [aux_sym_for_statement_token1] = ACTIONS(1228), + [aux_sym_for_statement_token2] = ACTIONS(1228), + [aux_sym_foreach_statement_token1] = ACTIONS(1228), + [aux_sym_foreach_statement_token2] = ACTIONS(1228), + [aux_sym_if_statement_token1] = ACTIONS(1228), + [aux_sym_if_statement_token2] = ACTIONS(1228), + [aux_sym_else_if_clause_token1] = ACTIONS(1228), + [aux_sym_else_clause_token1] = ACTIONS(1228), + [aux_sym_match_expression_token1] = ACTIONS(1228), + [aux_sym_match_default_expression_token1] = ACTIONS(1228), + [aux_sym_switch_statement_token1] = ACTIONS(1228), + [aux_sym_switch_block_token1] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [aux_sym_clone_expression_token1] = ACTIONS(1228), + [aux_sym_print_intrinsic_token1] = ACTIONS(1228), + [aux_sym_object_creation_expression_token1] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [aux_sym__list_destructing_token1] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_self] = ACTIONS(1228), + [anon_sym_parent] = ACTIONS(1228), + [anon_sym_POUND_LBRACK] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [aux_sym_encapsed_string_token1] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [aux_sym_string_token1] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_BQUOTE] = ACTIONS(1226), + [sym_boolean] = ACTIONS(1228), + [sym_null] = ACTIONS(1228), + [anon_sym_DOLLAR] = ACTIONS(1226), + [aux_sym_yield_expression_token1] = ACTIONS(1228), + [aux_sym_include_expression_token1] = ACTIONS(1228), + [aux_sym_include_once_expression_token1] = ACTIONS(1228), + [aux_sym_require_expression_token1] = ACTIONS(1228), + [aux_sym_require_once_expression_token1] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + }, + [491] = { + [ts_builtin_sym_end] = ACTIONS(1230), + [sym_name] = ACTIONS(1232), + [anon_sym_QMARK_GT] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1230), + [aux_sym_function_static_declaration_token1] = ACTIONS(1232), + [aux_sym_global_declaration_token1] = ACTIONS(1232), + [aux_sym_namespace_definition_token1] = ACTIONS(1232), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1232), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1232), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1232), + [anon_sym_BSLASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [aux_sym_trait_declaration_token1] = ACTIONS(1232), + [aux_sym_interface_declaration_token1] = ACTIONS(1232), + [aux_sym_enum_declaration_token1] = ACTIONS(1232), + [aux_sym_enum_case_token1] = ACTIONS(1232), + [aux_sym_class_declaration_token1] = ACTIONS(1232), + [aux_sym_final_modifier_token1] = ACTIONS(1232), + [aux_sym_abstract_modifier_token1] = ACTIONS(1232), + [aux_sym_readonly_modifier_token1] = ACTIONS(1232), + [aux_sym_visibility_modifier_token1] = ACTIONS(1232), + [aux_sym_visibility_modifier_token2] = ACTIONS(1232), + [aux_sym_visibility_modifier_token3] = ACTIONS(1232), + [aux_sym__arrow_function_header_token1] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1230), + [aux_sym_cast_type_token1] = ACTIONS(1232), + [aux_sym_echo_statement_token1] = ACTIONS(1232), + [anon_sym_unset] = ACTIONS(1232), + [aux_sym_declare_statement_token1] = ACTIONS(1232), + [aux_sym_declare_statement_token2] = ACTIONS(1232), + [sym_float] = ACTIONS(1232), + [aux_sym_try_statement_token1] = ACTIONS(1232), + [aux_sym_goto_statement_token1] = ACTIONS(1232), + [aux_sym_continue_statement_token1] = ACTIONS(1232), + [aux_sym_break_statement_token1] = ACTIONS(1232), + [sym_integer] = ACTIONS(1232), + [aux_sym_return_statement_token1] = ACTIONS(1232), + [aux_sym_throw_expression_token1] = ACTIONS(1232), + [aux_sym_while_statement_token1] = ACTIONS(1232), + [aux_sym_while_statement_token2] = ACTIONS(1232), + [aux_sym_do_statement_token1] = ACTIONS(1232), + [aux_sym_for_statement_token1] = ACTIONS(1232), + [aux_sym_for_statement_token2] = ACTIONS(1232), + [aux_sym_foreach_statement_token1] = ACTIONS(1232), + [aux_sym_foreach_statement_token2] = ACTIONS(1232), + [aux_sym_if_statement_token1] = ACTIONS(1232), + [aux_sym_if_statement_token2] = ACTIONS(1232), + [aux_sym_else_if_clause_token1] = ACTIONS(1232), + [aux_sym_else_clause_token1] = ACTIONS(1232), + [aux_sym_match_expression_token1] = ACTIONS(1232), + [aux_sym_match_default_expression_token1] = ACTIONS(1232), + [aux_sym_switch_statement_token1] = ACTIONS(1232), + [aux_sym_switch_block_token1] = ACTIONS(1232), + [anon_sym_AT] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [aux_sym_clone_expression_token1] = ACTIONS(1232), + [aux_sym_print_intrinsic_token1] = ACTIONS(1232), + [aux_sym_object_creation_expression_token1] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [aux_sym__list_destructing_token1] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_self] = ACTIONS(1232), + [anon_sym_parent] = ACTIONS(1232), + [anon_sym_POUND_LBRACK] = ACTIONS(1230), + [anon_sym_SQUOTE] = ACTIONS(1230), + [aux_sym_encapsed_string_token1] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1230), + [aux_sym_string_token1] = ACTIONS(1230), + [anon_sym_LT_LT_LT] = ACTIONS(1230), + [anon_sym_BQUOTE] = ACTIONS(1230), + [sym_boolean] = ACTIONS(1232), + [sym_null] = ACTIONS(1232), + [anon_sym_DOLLAR] = ACTIONS(1230), + [aux_sym_yield_expression_token1] = ACTIONS(1232), + [aux_sym_include_expression_token1] = ACTIONS(1232), + [aux_sym_include_once_expression_token1] = ACTIONS(1232), + [aux_sym_require_expression_token1] = ACTIONS(1232), + [aux_sym_require_once_expression_token1] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + }, + [492] = { + [ts_builtin_sym_end] = ACTIONS(1234), + [sym_name] = ACTIONS(1236), + [anon_sym_QMARK_GT] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [aux_sym_function_static_declaration_token1] = ACTIONS(1236), + [aux_sym_global_declaration_token1] = ACTIONS(1236), + [aux_sym_namespace_definition_token1] = ACTIONS(1236), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1236), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1236), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1236), + [anon_sym_BSLASH] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [aux_sym_trait_declaration_token1] = ACTIONS(1236), + [aux_sym_interface_declaration_token1] = ACTIONS(1236), + [aux_sym_enum_declaration_token1] = ACTIONS(1236), + [aux_sym_enum_case_token1] = ACTIONS(1236), + [aux_sym_class_declaration_token1] = ACTIONS(1236), + [aux_sym_final_modifier_token1] = ACTIONS(1236), + [aux_sym_abstract_modifier_token1] = ACTIONS(1236), + [aux_sym_readonly_modifier_token1] = ACTIONS(1236), + [aux_sym_visibility_modifier_token1] = ACTIONS(1236), + [aux_sym_visibility_modifier_token2] = ACTIONS(1236), + [aux_sym_visibility_modifier_token3] = ACTIONS(1236), + [aux_sym__arrow_function_header_token1] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1234), + [aux_sym_cast_type_token1] = ACTIONS(1236), + [aux_sym_echo_statement_token1] = ACTIONS(1236), + [anon_sym_unset] = ACTIONS(1236), + [aux_sym_declare_statement_token1] = ACTIONS(1236), + [aux_sym_declare_statement_token2] = ACTIONS(1236), + [sym_float] = ACTIONS(1236), + [aux_sym_try_statement_token1] = ACTIONS(1236), + [aux_sym_goto_statement_token1] = ACTIONS(1236), + [aux_sym_continue_statement_token1] = ACTIONS(1236), + [aux_sym_break_statement_token1] = ACTIONS(1236), + [sym_integer] = ACTIONS(1236), + [aux_sym_return_statement_token1] = ACTIONS(1236), + [aux_sym_throw_expression_token1] = ACTIONS(1236), + [aux_sym_while_statement_token1] = ACTIONS(1236), + [aux_sym_while_statement_token2] = ACTIONS(1236), + [aux_sym_do_statement_token1] = ACTIONS(1236), + [aux_sym_for_statement_token1] = ACTIONS(1236), + [aux_sym_for_statement_token2] = ACTIONS(1236), + [aux_sym_foreach_statement_token1] = ACTIONS(1236), + [aux_sym_foreach_statement_token2] = ACTIONS(1236), + [aux_sym_if_statement_token1] = ACTIONS(1236), + [aux_sym_if_statement_token2] = ACTIONS(1236), + [aux_sym_else_if_clause_token1] = ACTIONS(1236), + [aux_sym_else_clause_token1] = ACTIONS(1236), + [aux_sym_match_expression_token1] = ACTIONS(1236), + [aux_sym_match_default_expression_token1] = ACTIONS(1236), + [aux_sym_switch_statement_token1] = ACTIONS(1236), + [aux_sym_switch_block_token1] = ACTIONS(1236), + [anon_sym_AT] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [aux_sym_clone_expression_token1] = ACTIONS(1236), + [aux_sym_print_intrinsic_token1] = ACTIONS(1236), + [aux_sym_object_creation_expression_token1] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [aux_sym__list_destructing_token1] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_self] = ACTIONS(1236), + [anon_sym_parent] = ACTIONS(1236), + [anon_sym_POUND_LBRACK] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [aux_sym_encapsed_string_token1] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [aux_sym_string_token1] = ACTIONS(1234), + [anon_sym_LT_LT_LT] = ACTIONS(1234), + [anon_sym_BQUOTE] = ACTIONS(1234), + [sym_boolean] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DOLLAR] = ACTIONS(1234), + [aux_sym_yield_expression_token1] = ACTIONS(1236), + [aux_sym_include_expression_token1] = ACTIONS(1236), + [aux_sym_include_once_expression_token1] = ACTIONS(1236), + [aux_sym_require_expression_token1] = ACTIONS(1236), + [aux_sym_require_once_expression_token1] = ACTIONS(1236), + [sym_comment] = ACTIONS(3), + }, + [493] = { + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_name] = ACTIONS(1240), + [anon_sym_QMARK_GT] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [aux_sym_function_static_declaration_token1] = ACTIONS(1240), + [aux_sym_global_declaration_token1] = ACTIONS(1240), + [aux_sym_namespace_definition_token1] = ACTIONS(1240), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1240), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1240), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1240), + [anon_sym_BSLASH] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [aux_sym_trait_declaration_token1] = ACTIONS(1240), + [aux_sym_interface_declaration_token1] = ACTIONS(1240), + [aux_sym_enum_declaration_token1] = ACTIONS(1240), + [aux_sym_enum_case_token1] = ACTIONS(1240), + [aux_sym_class_declaration_token1] = ACTIONS(1240), + [aux_sym_final_modifier_token1] = ACTIONS(1240), + [aux_sym_abstract_modifier_token1] = ACTIONS(1240), + [aux_sym_readonly_modifier_token1] = ACTIONS(1240), + [aux_sym_visibility_modifier_token1] = ACTIONS(1240), + [aux_sym_visibility_modifier_token2] = ACTIONS(1240), + [aux_sym_visibility_modifier_token3] = ACTIONS(1240), + [aux_sym__arrow_function_header_token1] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1238), + [aux_sym_cast_type_token1] = ACTIONS(1240), + [aux_sym_echo_statement_token1] = ACTIONS(1240), + [anon_sym_unset] = ACTIONS(1240), + [aux_sym_declare_statement_token1] = ACTIONS(1240), + [aux_sym_declare_statement_token2] = ACTIONS(1240), + [sym_float] = ACTIONS(1240), + [aux_sym_try_statement_token1] = ACTIONS(1240), + [aux_sym_goto_statement_token1] = ACTIONS(1240), + [aux_sym_continue_statement_token1] = ACTIONS(1240), + [aux_sym_break_statement_token1] = ACTIONS(1240), + [sym_integer] = ACTIONS(1240), + [aux_sym_return_statement_token1] = ACTIONS(1240), + [aux_sym_throw_expression_token1] = ACTIONS(1240), + [aux_sym_while_statement_token1] = ACTIONS(1240), + [aux_sym_while_statement_token2] = ACTIONS(1240), + [aux_sym_do_statement_token1] = ACTIONS(1240), + [aux_sym_for_statement_token1] = ACTIONS(1240), + [aux_sym_for_statement_token2] = ACTIONS(1240), + [aux_sym_foreach_statement_token1] = ACTIONS(1240), + [aux_sym_foreach_statement_token2] = ACTIONS(1240), + [aux_sym_if_statement_token1] = ACTIONS(1240), + [aux_sym_if_statement_token2] = ACTIONS(1240), + [aux_sym_else_if_clause_token1] = ACTIONS(1240), + [aux_sym_else_clause_token1] = ACTIONS(1240), + [aux_sym_match_expression_token1] = ACTIONS(1240), + [aux_sym_match_default_expression_token1] = ACTIONS(1240), + [aux_sym_switch_statement_token1] = ACTIONS(1240), + [aux_sym_switch_block_token1] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [aux_sym_clone_expression_token1] = ACTIONS(1240), + [aux_sym_print_intrinsic_token1] = ACTIONS(1240), + [aux_sym_object_creation_expression_token1] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [aux_sym__list_destructing_token1] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_self] = ACTIONS(1240), + [anon_sym_parent] = ACTIONS(1240), + [anon_sym_POUND_LBRACK] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [aux_sym_encapsed_string_token1] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1238), + [aux_sym_string_token1] = ACTIONS(1238), + [anon_sym_LT_LT_LT] = ACTIONS(1238), + [anon_sym_BQUOTE] = ACTIONS(1238), + [sym_boolean] = ACTIONS(1240), + [sym_null] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1238), + [aux_sym_yield_expression_token1] = ACTIONS(1240), + [aux_sym_include_expression_token1] = ACTIONS(1240), + [aux_sym_include_once_expression_token1] = ACTIONS(1240), + [aux_sym_require_expression_token1] = ACTIONS(1240), + [aux_sym_require_once_expression_token1] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + }, + [494] = { + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_name] = ACTIONS(1244), + [anon_sym_QMARK_GT] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [aux_sym_function_static_declaration_token1] = ACTIONS(1244), + [aux_sym_global_declaration_token1] = ACTIONS(1244), + [aux_sym_namespace_definition_token1] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [aux_sym_trait_declaration_token1] = ACTIONS(1244), + [aux_sym_interface_declaration_token1] = ACTIONS(1244), + [aux_sym_enum_declaration_token1] = ACTIONS(1244), + [aux_sym_enum_case_token1] = ACTIONS(1244), + [aux_sym_class_declaration_token1] = ACTIONS(1244), + [aux_sym_final_modifier_token1] = ACTIONS(1244), + [aux_sym_abstract_modifier_token1] = ACTIONS(1244), + [aux_sym_readonly_modifier_token1] = ACTIONS(1244), + [aux_sym_visibility_modifier_token1] = ACTIONS(1244), + [aux_sym_visibility_modifier_token2] = ACTIONS(1244), + [aux_sym_visibility_modifier_token3] = ACTIONS(1244), + [aux_sym__arrow_function_header_token1] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1242), + [aux_sym_cast_type_token1] = ACTIONS(1244), + [aux_sym_echo_statement_token1] = ACTIONS(1244), + [anon_sym_unset] = ACTIONS(1244), + [aux_sym_declare_statement_token1] = ACTIONS(1244), + [aux_sym_declare_statement_token2] = ACTIONS(1244), + [sym_float] = ACTIONS(1244), + [aux_sym_try_statement_token1] = ACTIONS(1244), + [aux_sym_goto_statement_token1] = ACTIONS(1244), + [aux_sym_continue_statement_token1] = ACTIONS(1244), + [aux_sym_break_statement_token1] = ACTIONS(1244), + [sym_integer] = ACTIONS(1244), + [aux_sym_return_statement_token1] = ACTIONS(1244), + [aux_sym_throw_expression_token1] = ACTIONS(1244), + [aux_sym_while_statement_token1] = ACTIONS(1244), + [aux_sym_while_statement_token2] = ACTIONS(1244), + [aux_sym_do_statement_token1] = ACTIONS(1244), + [aux_sym_for_statement_token1] = ACTIONS(1244), + [aux_sym_for_statement_token2] = ACTIONS(1244), + [aux_sym_foreach_statement_token1] = ACTIONS(1244), + [aux_sym_foreach_statement_token2] = ACTIONS(1244), + [aux_sym_if_statement_token1] = ACTIONS(1244), + [aux_sym_if_statement_token2] = ACTIONS(1244), + [aux_sym_else_if_clause_token1] = ACTIONS(1244), + [aux_sym_else_clause_token1] = ACTIONS(1244), + [aux_sym_match_expression_token1] = ACTIONS(1244), + [aux_sym_match_default_expression_token1] = ACTIONS(1244), + [aux_sym_switch_statement_token1] = ACTIONS(1244), + [aux_sym_switch_block_token1] = ACTIONS(1244), + [anon_sym_AT] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [aux_sym_clone_expression_token1] = ACTIONS(1244), + [aux_sym_print_intrinsic_token1] = ACTIONS(1244), + [aux_sym_object_creation_expression_token1] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [aux_sym__list_destructing_token1] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_self] = ACTIONS(1244), + [anon_sym_parent] = ACTIONS(1244), + [anon_sym_POUND_LBRACK] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [aux_sym_encapsed_string_token1] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [aux_sym_string_token1] = ACTIONS(1242), + [anon_sym_LT_LT_LT] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_boolean] = ACTIONS(1244), + [sym_null] = ACTIONS(1244), + [anon_sym_DOLLAR] = ACTIONS(1242), + [aux_sym_yield_expression_token1] = ACTIONS(1244), + [aux_sym_include_expression_token1] = ACTIONS(1244), + [aux_sym_include_once_expression_token1] = ACTIONS(1244), + [aux_sym_require_expression_token1] = ACTIONS(1244), + [aux_sym_require_once_expression_token1] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + }, + [495] = { + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_name] = ACTIONS(1248), + [anon_sym_QMARK_GT] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [aux_sym_function_static_declaration_token1] = ACTIONS(1248), + [aux_sym_global_declaration_token1] = ACTIONS(1248), + [aux_sym_namespace_definition_token1] = ACTIONS(1248), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1248), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1248), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1248), + [anon_sym_BSLASH] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [aux_sym_trait_declaration_token1] = ACTIONS(1248), + [aux_sym_interface_declaration_token1] = ACTIONS(1248), + [aux_sym_enum_declaration_token1] = ACTIONS(1248), + [aux_sym_enum_case_token1] = ACTIONS(1248), + [aux_sym_class_declaration_token1] = ACTIONS(1248), + [aux_sym_final_modifier_token1] = ACTIONS(1248), + [aux_sym_abstract_modifier_token1] = ACTIONS(1248), + [aux_sym_readonly_modifier_token1] = ACTIONS(1248), + [aux_sym_visibility_modifier_token1] = ACTIONS(1248), + [aux_sym_visibility_modifier_token2] = ACTIONS(1248), + [aux_sym_visibility_modifier_token3] = ACTIONS(1248), + [aux_sym__arrow_function_header_token1] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1246), + [aux_sym_cast_type_token1] = ACTIONS(1248), + [aux_sym_echo_statement_token1] = ACTIONS(1248), + [anon_sym_unset] = ACTIONS(1248), + [aux_sym_declare_statement_token1] = ACTIONS(1248), + [aux_sym_declare_statement_token2] = ACTIONS(1248), + [sym_float] = ACTIONS(1248), + [aux_sym_try_statement_token1] = ACTIONS(1248), + [aux_sym_goto_statement_token1] = ACTIONS(1248), + [aux_sym_continue_statement_token1] = ACTIONS(1248), + [aux_sym_break_statement_token1] = ACTIONS(1248), + [sym_integer] = ACTIONS(1248), + [aux_sym_return_statement_token1] = ACTIONS(1248), + [aux_sym_throw_expression_token1] = ACTIONS(1248), + [aux_sym_while_statement_token1] = ACTIONS(1248), + [aux_sym_while_statement_token2] = ACTIONS(1248), + [aux_sym_do_statement_token1] = ACTIONS(1248), + [aux_sym_for_statement_token1] = ACTIONS(1248), + [aux_sym_for_statement_token2] = ACTIONS(1248), + [aux_sym_foreach_statement_token1] = ACTIONS(1248), + [aux_sym_foreach_statement_token2] = ACTIONS(1248), + [aux_sym_if_statement_token1] = ACTIONS(1248), + [aux_sym_if_statement_token2] = ACTIONS(1248), + [aux_sym_else_if_clause_token1] = ACTIONS(1248), + [aux_sym_else_clause_token1] = ACTIONS(1248), + [aux_sym_match_expression_token1] = ACTIONS(1248), + [aux_sym_match_default_expression_token1] = ACTIONS(1248), + [aux_sym_switch_statement_token1] = ACTIONS(1248), + [aux_sym_switch_block_token1] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [aux_sym_clone_expression_token1] = ACTIONS(1248), + [aux_sym_print_intrinsic_token1] = ACTIONS(1248), + [aux_sym_object_creation_expression_token1] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [aux_sym__list_destructing_token1] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_self] = ACTIONS(1248), + [anon_sym_parent] = ACTIONS(1248), + [anon_sym_POUND_LBRACK] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [aux_sym_encapsed_string_token1] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [aux_sym_string_token1] = ACTIONS(1246), + [anon_sym_LT_LT_LT] = ACTIONS(1246), + [anon_sym_BQUOTE] = ACTIONS(1246), + [sym_boolean] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1246), + [aux_sym_yield_expression_token1] = ACTIONS(1248), + [aux_sym_include_expression_token1] = ACTIONS(1248), + [aux_sym_include_once_expression_token1] = ACTIONS(1248), + [aux_sym_require_expression_token1] = ACTIONS(1248), + [aux_sym_require_once_expression_token1] = ACTIONS(1248), + [sym_comment] = ACTIONS(3), + }, + [496] = { + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_name] = ACTIONS(1252), + [anon_sym_QMARK_GT] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [aux_sym_function_static_declaration_token1] = ACTIONS(1252), + [aux_sym_global_declaration_token1] = ACTIONS(1252), + [aux_sym_namespace_definition_token1] = ACTIONS(1252), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1252), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1252), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1252), + [anon_sym_BSLASH] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [aux_sym_trait_declaration_token1] = ACTIONS(1252), + [aux_sym_interface_declaration_token1] = ACTIONS(1252), + [aux_sym_enum_declaration_token1] = ACTIONS(1252), + [aux_sym_enum_case_token1] = ACTIONS(1252), + [aux_sym_class_declaration_token1] = ACTIONS(1252), + [aux_sym_final_modifier_token1] = ACTIONS(1252), + [aux_sym_abstract_modifier_token1] = ACTIONS(1252), + [aux_sym_readonly_modifier_token1] = ACTIONS(1252), + [aux_sym_visibility_modifier_token1] = ACTIONS(1252), + [aux_sym_visibility_modifier_token2] = ACTIONS(1252), + [aux_sym_visibility_modifier_token3] = ACTIONS(1252), + [aux_sym__arrow_function_header_token1] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1250), + [aux_sym_cast_type_token1] = ACTIONS(1252), + [aux_sym_echo_statement_token1] = ACTIONS(1252), + [anon_sym_unset] = ACTIONS(1252), + [aux_sym_declare_statement_token1] = ACTIONS(1252), + [aux_sym_declare_statement_token2] = ACTIONS(1252), + [sym_float] = ACTIONS(1252), + [aux_sym_try_statement_token1] = ACTIONS(1252), + [aux_sym_goto_statement_token1] = ACTIONS(1252), + [aux_sym_continue_statement_token1] = ACTIONS(1252), + [aux_sym_break_statement_token1] = ACTIONS(1252), + [sym_integer] = ACTIONS(1252), + [aux_sym_return_statement_token1] = ACTIONS(1252), + [aux_sym_throw_expression_token1] = ACTIONS(1252), + [aux_sym_while_statement_token1] = ACTIONS(1252), + [aux_sym_while_statement_token2] = ACTIONS(1252), + [aux_sym_do_statement_token1] = ACTIONS(1252), + [aux_sym_for_statement_token1] = ACTIONS(1252), + [aux_sym_for_statement_token2] = ACTIONS(1252), + [aux_sym_foreach_statement_token1] = ACTIONS(1252), + [aux_sym_foreach_statement_token2] = ACTIONS(1252), + [aux_sym_if_statement_token1] = ACTIONS(1252), + [aux_sym_if_statement_token2] = ACTIONS(1252), + [aux_sym_else_if_clause_token1] = ACTIONS(1252), + [aux_sym_else_clause_token1] = ACTIONS(1252), + [aux_sym_match_expression_token1] = ACTIONS(1252), + [aux_sym_match_default_expression_token1] = ACTIONS(1252), + [aux_sym_switch_statement_token1] = ACTIONS(1252), + [aux_sym_switch_block_token1] = ACTIONS(1252), + [anon_sym_AT] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [aux_sym_clone_expression_token1] = ACTIONS(1252), + [aux_sym_print_intrinsic_token1] = ACTIONS(1252), + [aux_sym_object_creation_expression_token1] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [aux_sym__list_destructing_token1] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_self] = ACTIONS(1252), + [anon_sym_parent] = ACTIONS(1252), + [anon_sym_POUND_LBRACK] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [aux_sym_encapsed_string_token1] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [aux_sym_string_token1] = ACTIONS(1250), + [anon_sym_LT_LT_LT] = ACTIONS(1250), + [anon_sym_BQUOTE] = ACTIONS(1250), + [sym_boolean] = ACTIONS(1252), + [sym_null] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1250), + [aux_sym_yield_expression_token1] = ACTIONS(1252), + [aux_sym_include_expression_token1] = ACTIONS(1252), + [aux_sym_include_once_expression_token1] = ACTIONS(1252), + [aux_sym_require_expression_token1] = ACTIONS(1252), + [aux_sym_require_once_expression_token1] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + }, + [497] = { + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_name] = ACTIONS(1256), + [anon_sym_QMARK_GT] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [aux_sym_function_static_declaration_token1] = ACTIONS(1256), + [aux_sym_global_declaration_token1] = ACTIONS(1256), + [aux_sym_namespace_definition_token1] = ACTIONS(1256), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1256), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1256), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1256), + [anon_sym_BSLASH] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [aux_sym_trait_declaration_token1] = ACTIONS(1256), + [aux_sym_interface_declaration_token1] = ACTIONS(1256), + [aux_sym_enum_declaration_token1] = ACTIONS(1256), + [aux_sym_enum_case_token1] = ACTIONS(1256), + [aux_sym_class_declaration_token1] = ACTIONS(1256), + [aux_sym_final_modifier_token1] = ACTIONS(1256), + [aux_sym_abstract_modifier_token1] = ACTIONS(1256), + [aux_sym_readonly_modifier_token1] = ACTIONS(1256), + [aux_sym_visibility_modifier_token1] = ACTIONS(1256), + [aux_sym_visibility_modifier_token2] = ACTIONS(1256), + [aux_sym_visibility_modifier_token3] = ACTIONS(1256), + [aux_sym__arrow_function_header_token1] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1254), + [aux_sym_cast_type_token1] = ACTIONS(1256), + [aux_sym_echo_statement_token1] = ACTIONS(1256), + [anon_sym_unset] = ACTIONS(1256), + [aux_sym_declare_statement_token1] = ACTIONS(1256), + [aux_sym_declare_statement_token2] = ACTIONS(1256), + [sym_float] = ACTIONS(1256), + [aux_sym_try_statement_token1] = ACTIONS(1256), + [aux_sym_goto_statement_token1] = ACTIONS(1256), + [aux_sym_continue_statement_token1] = ACTIONS(1256), + [aux_sym_break_statement_token1] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [aux_sym_return_statement_token1] = ACTIONS(1256), + [aux_sym_throw_expression_token1] = ACTIONS(1256), + [aux_sym_while_statement_token1] = ACTIONS(1256), + [aux_sym_while_statement_token2] = ACTIONS(1256), + [aux_sym_do_statement_token1] = ACTIONS(1256), + [aux_sym_for_statement_token1] = ACTIONS(1256), + [aux_sym_for_statement_token2] = ACTIONS(1256), + [aux_sym_foreach_statement_token1] = ACTIONS(1256), + [aux_sym_foreach_statement_token2] = ACTIONS(1256), + [aux_sym_if_statement_token1] = ACTIONS(1256), + [aux_sym_if_statement_token2] = ACTIONS(1256), + [aux_sym_else_if_clause_token1] = ACTIONS(1256), + [aux_sym_else_clause_token1] = ACTIONS(1256), + [aux_sym_match_expression_token1] = ACTIONS(1256), + [aux_sym_match_default_expression_token1] = ACTIONS(1256), + [aux_sym_switch_statement_token1] = ACTIONS(1256), + [aux_sym_switch_block_token1] = ACTIONS(1256), + [anon_sym_AT] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [aux_sym_clone_expression_token1] = ACTIONS(1256), + [aux_sym_print_intrinsic_token1] = ACTIONS(1256), + [aux_sym_object_creation_expression_token1] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [aux_sym__list_destructing_token1] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_self] = ACTIONS(1256), + [anon_sym_parent] = ACTIONS(1256), + [anon_sym_POUND_LBRACK] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [aux_sym_encapsed_string_token1] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [aux_sym_string_token1] = ACTIONS(1254), + [anon_sym_LT_LT_LT] = ACTIONS(1254), + [anon_sym_BQUOTE] = ACTIONS(1254), + [sym_boolean] = ACTIONS(1256), + [sym_null] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1254), + [aux_sym_yield_expression_token1] = ACTIONS(1256), + [aux_sym_include_expression_token1] = ACTIONS(1256), + [aux_sym_include_once_expression_token1] = ACTIONS(1256), + [aux_sym_require_expression_token1] = ACTIONS(1256), + [aux_sym_require_once_expression_token1] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + }, + [498] = { + [ts_builtin_sym_end] = ACTIONS(983), + [sym_name] = ACTIONS(985), + [anon_sym_QMARK_GT] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(983), + [aux_sym_function_static_declaration_token1] = ACTIONS(985), + [aux_sym_global_declaration_token1] = ACTIONS(985), + [aux_sym_namespace_definition_token1] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(985), + [anon_sym_BSLASH] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [aux_sym_trait_declaration_token1] = ACTIONS(985), + [aux_sym_interface_declaration_token1] = ACTIONS(985), + [aux_sym_enum_declaration_token1] = ACTIONS(985), + [aux_sym_enum_case_token1] = ACTIONS(985), + [aux_sym_class_declaration_token1] = ACTIONS(985), + [aux_sym_final_modifier_token1] = ACTIONS(985), + [aux_sym_abstract_modifier_token1] = ACTIONS(985), + [aux_sym_readonly_modifier_token1] = ACTIONS(985), + [aux_sym_visibility_modifier_token1] = ACTIONS(985), + [aux_sym_visibility_modifier_token2] = ACTIONS(985), + [aux_sym_visibility_modifier_token3] = ACTIONS(985), + [aux_sym__arrow_function_header_token1] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(983), + [aux_sym_cast_type_token1] = ACTIONS(985), + [aux_sym_echo_statement_token1] = ACTIONS(985), + [anon_sym_unset] = ACTIONS(985), + [aux_sym_declare_statement_token1] = ACTIONS(985), + [aux_sym_declare_statement_token2] = ACTIONS(985), + [sym_float] = ACTIONS(985), + [aux_sym_try_statement_token1] = ACTIONS(985), + [aux_sym_goto_statement_token1] = ACTIONS(985), + [aux_sym_continue_statement_token1] = ACTIONS(985), + [aux_sym_break_statement_token1] = ACTIONS(985), + [sym_integer] = ACTIONS(985), + [aux_sym_return_statement_token1] = ACTIONS(985), + [aux_sym_throw_expression_token1] = ACTIONS(985), + [aux_sym_while_statement_token1] = ACTIONS(985), + [aux_sym_while_statement_token2] = ACTIONS(985), + [aux_sym_do_statement_token1] = ACTIONS(985), + [aux_sym_for_statement_token1] = ACTIONS(985), + [aux_sym_for_statement_token2] = ACTIONS(985), + [aux_sym_foreach_statement_token1] = ACTIONS(985), + [aux_sym_foreach_statement_token2] = ACTIONS(985), + [aux_sym_if_statement_token1] = ACTIONS(985), + [aux_sym_if_statement_token2] = ACTIONS(985), + [aux_sym_else_if_clause_token1] = ACTIONS(985), + [aux_sym_else_clause_token1] = ACTIONS(985), + [aux_sym_match_expression_token1] = ACTIONS(985), + [aux_sym_match_default_expression_token1] = ACTIONS(985), + [aux_sym_switch_statement_token1] = ACTIONS(985), + [aux_sym_switch_block_token1] = ACTIONS(985), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [aux_sym_clone_expression_token1] = ACTIONS(985), + [aux_sym_print_intrinsic_token1] = ACTIONS(985), + [aux_sym_object_creation_expression_token1] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym__list_destructing_token1] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_self] = ACTIONS(985), + [anon_sym_parent] = ACTIONS(985), + [anon_sym_POUND_LBRACK] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [aux_sym_encapsed_string_token1] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [aux_sym_string_token1] = ACTIONS(983), + [anon_sym_LT_LT_LT] = ACTIONS(983), + [anon_sym_BQUOTE] = ACTIONS(983), + [sym_boolean] = ACTIONS(985), + [sym_null] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(983), + [aux_sym_yield_expression_token1] = ACTIONS(985), + [aux_sym_include_expression_token1] = ACTIONS(985), + [aux_sym_include_once_expression_token1] = ACTIONS(985), + [aux_sym_require_expression_token1] = ACTIONS(985), + [aux_sym_require_once_expression_token1] = ACTIONS(985), + [sym_comment] = ACTIONS(3), + }, + [499] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_name] = ACTIONS(1260), + [anon_sym_QMARK_GT] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [aux_sym_function_static_declaration_token1] = ACTIONS(1260), + [aux_sym_global_declaration_token1] = ACTIONS(1260), + [aux_sym_namespace_definition_token1] = ACTIONS(1260), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1260), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1260), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1260), + [anon_sym_BSLASH] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [aux_sym_trait_declaration_token1] = ACTIONS(1260), + [aux_sym_interface_declaration_token1] = ACTIONS(1260), + [aux_sym_enum_declaration_token1] = ACTIONS(1260), + [aux_sym_enum_case_token1] = ACTIONS(1260), + [aux_sym_class_declaration_token1] = ACTIONS(1260), + [aux_sym_final_modifier_token1] = ACTIONS(1260), + [aux_sym_abstract_modifier_token1] = ACTIONS(1260), + [aux_sym_readonly_modifier_token1] = ACTIONS(1260), + [aux_sym_visibility_modifier_token1] = ACTIONS(1260), + [aux_sym_visibility_modifier_token2] = ACTIONS(1260), + [aux_sym_visibility_modifier_token3] = ACTIONS(1260), + [aux_sym__arrow_function_header_token1] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1258), + [aux_sym_cast_type_token1] = ACTIONS(1260), + [aux_sym_echo_statement_token1] = ACTIONS(1260), + [anon_sym_unset] = ACTIONS(1260), + [aux_sym_declare_statement_token1] = ACTIONS(1260), + [aux_sym_declare_statement_token2] = ACTIONS(1260), + [sym_float] = ACTIONS(1260), + [aux_sym_try_statement_token1] = ACTIONS(1260), + [aux_sym_goto_statement_token1] = ACTIONS(1260), + [aux_sym_continue_statement_token1] = ACTIONS(1260), + [aux_sym_break_statement_token1] = ACTIONS(1260), + [sym_integer] = ACTIONS(1260), + [aux_sym_return_statement_token1] = ACTIONS(1260), + [aux_sym_throw_expression_token1] = ACTIONS(1260), + [aux_sym_while_statement_token1] = ACTIONS(1260), + [aux_sym_while_statement_token2] = ACTIONS(1260), + [aux_sym_do_statement_token1] = ACTIONS(1260), + [aux_sym_for_statement_token1] = ACTIONS(1260), + [aux_sym_for_statement_token2] = ACTIONS(1260), + [aux_sym_foreach_statement_token1] = ACTIONS(1260), + [aux_sym_foreach_statement_token2] = ACTIONS(1260), + [aux_sym_if_statement_token1] = ACTIONS(1260), + [aux_sym_if_statement_token2] = ACTIONS(1260), + [aux_sym_else_if_clause_token1] = ACTIONS(1260), + [aux_sym_else_clause_token1] = ACTIONS(1260), + [aux_sym_match_expression_token1] = ACTIONS(1260), + [aux_sym_match_default_expression_token1] = ACTIONS(1260), + [aux_sym_switch_statement_token1] = ACTIONS(1260), + [aux_sym_switch_block_token1] = ACTIONS(1260), + [anon_sym_AT] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [aux_sym_clone_expression_token1] = ACTIONS(1260), + [aux_sym_print_intrinsic_token1] = ACTIONS(1260), + [aux_sym_object_creation_expression_token1] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [aux_sym__list_destructing_token1] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_self] = ACTIONS(1260), + [anon_sym_parent] = ACTIONS(1260), + [anon_sym_POUND_LBRACK] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [aux_sym_encapsed_string_token1] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [aux_sym_string_token1] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(1258), + [sym_boolean] = ACTIONS(1260), + [sym_null] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1258), + [aux_sym_yield_expression_token1] = ACTIONS(1260), + [aux_sym_include_expression_token1] = ACTIONS(1260), + [aux_sym_include_once_expression_token1] = ACTIONS(1260), + [aux_sym_require_expression_token1] = ACTIONS(1260), + [aux_sym_require_once_expression_token1] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + }, + [500] = { + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_name] = ACTIONS(1264), + [anon_sym_QMARK_GT] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [aux_sym_function_static_declaration_token1] = ACTIONS(1264), + [aux_sym_global_declaration_token1] = ACTIONS(1264), + [aux_sym_namespace_definition_token1] = ACTIONS(1264), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1264), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1264), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1264), + [anon_sym_BSLASH] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [aux_sym_trait_declaration_token1] = ACTIONS(1264), + [aux_sym_interface_declaration_token1] = ACTIONS(1264), + [aux_sym_enum_declaration_token1] = ACTIONS(1264), + [aux_sym_enum_case_token1] = ACTIONS(1264), + [aux_sym_class_declaration_token1] = ACTIONS(1264), + [aux_sym_final_modifier_token1] = ACTIONS(1264), + [aux_sym_abstract_modifier_token1] = ACTIONS(1264), + [aux_sym_readonly_modifier_token1] = ACTIONS(1264), + [aux_sym_visibility_modifier_token1] = ACTIONS(1264), + [aux_sym_visibility_modifier_token2] = ACTIONS(1264), + [aux_sym_visibility_modifier_token3] = ACTIONS(1264), + [aux_sym__arrow_function_header_token1] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1262), + [aux_sym_cast_type_token1] = ACTIONS(1264), + [aux_sym_echo_statement_token1] = ACTIONS(1264), + [anon_sym_unset] = ACTIONS(1264), + [aux_sym_declare_statement_token1] = ACTIONS(1264), + [aux_sym_declare_statement_token2] = ACTIONS(1264), + [sym_float] = ACTIONS(1264), + [aux_sym_try_statement_token1] = ACTIONS(1264), + [aux_sym_goto_statement_token1] = ACTIONS(1264), + [aux_sym_continue_statement_token1] = ACTIONS(1264), + [aux_sym_break_statement_token1] = ACTIONS(1264), + [sym_integer] = ACTIONS(1264), + [aux_sym_return_statement_token1] = ACTIONS(1264), + [aux_sym_throw_expression_token1] = ACTIONS(1264), + [aux_sym_while_statement_token1] = ACTIONS(1264), + [aux_sym_while_statement_token2] = ACTIONS(1264), + [aux_sym_do_statement_token1] = ACTIONS(1264), + [aux_sym_for_statement_token1] = ACTIONS(1264), + [aux_sym_for_statement_token2] = ACTIONS(1264), + [aux_sym_foreach_statement_token1] = ACTIONS(1264), + [aux_sym_foreach_statement_token2] = ACTIONS(1264), + [aux_sym_if_statement_token1] = ACTIONS(1264), + [aux_sym_if_statement_token2] = ACTIONS(1264), + [aux_sym_else_if_clause_token1] = ACTIONS(1264), + [aux_sym_else_clause_token1] = ACTIONS(1264), + [aux_sym_match_expression_token1] = ACTIONS(1264), + [aux_sym_match_default_expression_token1] = ACTIONS(1264), + [aux_sym_switch_statement_token1] = ACTIONS(1264), + [aux_sym_switch_block_token1] = ACTIONS(1264), + [anon_sym_AT] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [aux_sym_clone_expression_token1] = ACTIONS(1264), + [aux_sym_print_intrinsic_token1] = ACTIONS(1264), + [aux_sym_object_creation_expression_token1] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [aux_sym__list_destructing_token1] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1262), + [anon_sym_self] = ACTIONS(1264), + [anon_sym_parent] = ACTIONS(1264), + [anon_sym_POUND_LBRACK] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [aux_sym_encapsed_string_token1] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [aux_sym_string_token1] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [sym_boolean] = ACTIONS(1264), + [sym_null] = ACTIONS(1264), + [anon_sym_DOLLAR] = ACTIONS(1262), + [aux_sym_yield_expression_token1] = ACTIONS(1264), + [aux_sym_include_expression_token1] = ACTIONS(1264), + [aux_sym_include_once_expression_token1] = ACTIONS(1264), + [aux_sym_require_expression_token1] = ACTIONS(1264), + [aux_sym_require_once_expression_token1] = ACTIONS(1264), + [sym_comment] = ACTIONS(3), + }, + [501] = { + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_name] = ACTIONS(1268), + [anon_sym_QMARK_GT] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [aux_sym_function_static_declaration_token1] = ACTIONS(1268), + [aux_sym_global_declaration_token1] = ACTIONS(1268), + [aux_sym_namespace_definition_token1] = ACTIONS(1268), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1268), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1268), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1268), + [anon_sym_BSLASH] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [aux_sym_trait_declaration_token1] = ACTIONS(1268), + [aux_sym_interface_declaration_token1] = ACTIONS(1268), + [aux_sym_enum_declaration_token1] = ACTIONS(1268), + [aux_sym_enum_case_token1] = ACTIONS(1268), + [aux_sym_class_declaration_token1] = ACTIONS(1268), + [aux_sym_final_modifier_token1] = ACTIONS(1268), + [aux_sym_abstract_modifier_token1] = ACTIONS(1268), + [aux_sym_readonly_modifier_token1] = ACTIONS(1268), + [aux_sym_visibility_modifier_token1] = ACTIONS(1268), + [aux_sym_visibility_modifier_token2] = ACTIONS(1268), + [aux_sym_visibility_modifier_token3] = ACTIONS(1268), + [aux_sym__arrow_function_header_token1] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1266), + [aux_sym_cast_type_token1] = ACTIONS(1268), + [aux_sym_echo_statement_token1] = ACTIONS(1268), + [anon_sym_unset] = ACTIONS(1268), + [aux_sym_declare_statement_token1] = ACTIONS(1268), + [aux_sym_declare_statement_token2] = ACTIONS(1268), + [sym_float] = ACTIONS(1268), + [aux_sym_try_statement_token1] = ACTIONS(1268), + [aux_sym_goto_statement_token1] = ACTIONS(1268), + [aux_sym_continue_statement_token1] = ACTIONS(1268), + [aux_sym_break_statement_token1] = ACTIONS(1268), + [sym_integer] = ACTIONS(1268), + [aux_sym_return_statement_token1] = ACTIONS(1268), + [aux_sym_throw_expression_token1] = ACTIONS(1268), + [aux_sym_while_statement_token1] = ACTIONS(1268), + [aux_sym_while_statement_token2] = ACTIONS(1268), + [aux_sym_do_statement_token1] = ACTIONS(1268), + [aux_sym_for_statement_token1] = ACTIONS(1268), + [aux_sym_for_statement_token2] = ACTIONS(1268), + [aux_sym_foreach_statement_token1] = ACTIONS(1268), + [aux_sym_foreach_statement_token2] = ACTIONS(1268), + [aux_sym_if_statement_token1] = ACTIONS(1268), + [aux_sym_if_statement_token2] = ACTIONS(1268), + [aux_sym_else_if_clause_token1] = ACTIONS(1268), + [aux_sym_else_clause_token1] = ACTIONS(1268), + [aux_sym_match_expression_token1] = ACTIONS(1268), + [aux_sym_match_default_expression_token1] = ACTIONS(1268), + [aux_sym_switch_statement_token1] = ACTIONS(1268), + [aux_sym_switch_block_token1] = ACTIONS(1268), + [anon_sym_AT] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [aux_sym_clone_expression_token1] = ACTIONS(1268), + [aux_sym_print_intrinsic_token1] = ACTIONS(1268), + [aux_sym_object_creation_expression_token1] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [aux_sym__list_destructing_token1] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_self] = ACTIONS(1268), + [anon_sym_parent] = ACTIONS(1268), + [anon_sym_POUND_LBRACK] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [aux_sym_encapsed_string_token1] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [aux_sym_string_token1] = ACTIONS(1266), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [sym_boolean] = ACTIONS(1268), + [sym_null] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1266), + [aux_sym_yield_expression_token1] = ACTIONS(1268), + [aux_sym_include_expression_token1] = ACTIONS(1268), + [aux_sym_include_once_expression_token1] = ACTIONS(1268), + [aux_sym_require_expression_token1] = ACTIONS(1268), + [aux_sym_require_once_expression_token1] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + }, + [502] = { + [ts_builtin_sym_end] = ACTIONS(1270), + [sym_name] = ACTIONS(1272), + [anon_sym_QMARK_GT] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [aux_sym_function_static_declaration_token1] = ACTIONS(1272), + [aux_sym_global_declaration_token1] = ACTIONS(1272), + [aux_sym_namespace_definition_token1] = ACTIONS(1272), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1272), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1272), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1272), + [anon_sym_BSLASH] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [aux_sym_trait_declaration_token1] = ACTIONS(1272), + [aux_sym_interface_declaration_token1] = ACTIONS(1272), + [aux_sym_enum_declaration_token1] = ACTIONS(1272), + [aux_sym_enum_case_token1] = ACTIONS(1272), + [aux_sym_class_declaration_token1] = ACTIONS(1272), + [aux_sym_final_modifier_token1] = ACTIONS(1272), + [aux_sym_abstract_modifier_token1] = ACTIONS(1272), + [aux_sym_readonly_modifier_token1] = ACTIONS(1272), + [aux_sym_visibility_modifier_token1] = ACTIONS(1272), + [aux_sym_visibility_modifier_token2] = ACTIONS(1272), + [aux_sym_visibility_modifier_token3] = ACTIONS(1272), + [aux_sym__arrow_function_header_token1] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1270), + [aux_sym_cast_type_token1] = ACTIONS(1272), + [aux_sym_echo_statement_token1] = ACTIONS(1272), + [anon_sym_unset] = ACTIONS(1272), + [aux_sym_declare_statement_token1] = ACTIONS(1272), + [aux_sym_declare_statement_token2] = ACTIONS(1272), + [sym_float] = ACTIONS(1272), + [aux_sym_try_statement_token1] = ACTIONS(1272), + [aux_sym_goto_statement_token1] = ACTIONS(1272), + [aux_sym_continue_statement_token1] = ACTIONS(1272), + [aux_sym_break_statement_token1] = ACTIONS(1272), + [sym_integer] = ACTIONS(1272), + [aux_sym_return_statement_token1] = ACTIONS(1272), + [aux_sym_throw_expression_token1] = ACTIONS(1272), + [aux_sym_while_statement_token1] = ACTIONS(1272), + [aux_sym_while_statement_token2] = ACTIONS(1272), + [aux_sym_do_statement_token1] = ACTIONS(1272), + [aux_sym_for_statement_token1] = ACTIONS(1272), + [aux_sym_for_statement_token2] = ACTIONS(1272), + [aux_sym_foreach_statement_token1] = ACTIONS(1272), + [aux_sym_foreach_statement_token2] = ACTIONS(1272), + [aux_sym_if_statement_token1] = ACTIONS(1272), + [aux_sym_if_statement_token2] = ACTIONS(1272), + [aux_sym_else_if_clause_token1] = ACTIONS(1272), + [aux_sym_else_clause_token1] = ACTIONS(1272), + [aux_sym_match_expression_token1] = ACTIONS(1272), + [aux_sym_match_default_expression_token1] = ACTIONS(1272), + [aux_sym_switch_statement_token1] = ACTIONS(1272), + [aux_sym_switch_block_token1] = ACTIONS(1272), + [anon_sym_AT] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [aux_sym_clone_expression_token1] = ACTIONS(1272), + [aux_sym_print_intrinsic_token1] = ACTIONS(1272), + [aux_sym_object_creation_expression_token1] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [aux_sym__list_destructing_token1] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_self] = ACTIONS(1272), + [anon_sym_parent] = ACTIONS(1272), + [anon_sym_POUND_LBRACK] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [aux_sym_encapsed_string_token1] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [aux_sym_string_token1] = ACTIONS(1270), + [anon_sym_LT_LT_LT] = ACTIONS(1270), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_boolean] = ACTIONS(1272), + [sym_null] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1270), + [aux_sym_yield_expression_token1] = ACTIONS(1272), + [aux_sym_include_expression_token1] = ACTIONS(1272), + [aux_sym_include_once_expression_token1] = ACTIONS(1272), + [aux_sym_require_expression_token1] = ACTIONS(1272), + [aux_sym_require_once_expression_token1] = ACTIONS(1272), + [sym_comment] = ACTIONS(3), + }, + [503] = { + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_name] = ACTIONS(1276), + [anon_sym_QMARK_GT] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [aux_sym_function_static_declaration_token1] = ACTIONS(1276), + [aux_sym_global_declaration_token1] = ACTIONS(1276), + [aux_sym_namespace_definition_token1] = ACTIONS(1276), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1276), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1276), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1276), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [aux_sym_trait_declaration_token1] = ACTIONS(1276), + [aux_sym_interface_declaration_token1] = ACTIONS(1276), + [aux_sym_enum_declaration_token1] = ACTIONS(1276), + [aux_sym_enum_case_token1] = ACTIONS(1276), + [aux_sym_class_declaration_token1] = ACTIONS(1276), + [aux_sym_final_modifier_token1] = ACTIONS(1276), + [aux_sym_abstract_modifier_token1] = ACTIONS(1276), + [aux_sym_readonly_modifier_token1] = ACTIONS(1276), + [aux_sym_visibility_modifier_token1] = ACTIONS(1276), + [aux_sym_visibility_modifier_token2] = ACTIONS(1276), + [aux_sym_visibility_modifier_token3] = ACTIONS(1276), + [aux_sym__arrow_function_header_token1] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1274), + [aux_sym_cast_type_token1] = ACTIONS(1276), + [aux_sym_echo_statement_token1] = ACTIONS(1276), + [anon_sym_unset] = ACTIONS(1276), + [aux_sym_declare_statement_token1] = ACTIONS(1276), + [aux_sym_declare_statement_token2] = ACTIONS(1276), + [sym_float] = ACTIONS(1276), + [aux_sym_try_statement_token1] = ACTIONS(1276), + [aux_sym_goto_statement_token1] = ACTIONS(1276), + [aux_sym_continue_statement_token1] = ACTIONS(1276), + [aux_sym_break_statement_token1] = ACTIONS(1276), + [sym_integer] = ACTIONS(1276), + [aux_sym_return_statement_token1] = ACTIONS(1276), + [aux_sym_throw_expression_token1] = ACTIONS(1276), + [aux_sym_while_statement_token1] = ACTIONS(1276), + [aux_sym_while_statement_token2] = ACTIONS(1276), + [aux_sym_do_statement_token1] = ACTIONS(1276), + [aux_sym_for_statement_token1] = ACTIONS(1276), + [aux_sym_for_statement_token2] = ACTIONS(1276), + [aux_sym_foreach_statement_token1] = ACTIONS(1276), + [aux_sym_foreach_statement_token2] = ACTIONS(1276), + [aux_sym_if_statement_token1] = ACTIONS(1276), + [aux_sym_if_statement_token2] = ACTIONS(1276), + [aux_sym_else_if_clause_token1] = ACTIONS(1276), + [aux_sym_else_clause_token1] = ACTIONS(1276), + [aux_sym_match_expression_token1] = ACTIONS(1276), + [aux_sym_match_default_expression_token1] = ACTIONS(1276), + [aux_sym_switch_statement_token1] = ACTIONS(1276), + [aux_sym_switch_block_token1] = ACTIONS(1276), + [anon_sym_AT] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [aux_sym_clone_expression_token1] = ACTIONS(1276), + [aux_sym_print_intrinsic_token1] = ACTIONS(1276), + [aux_sym_object_creation_expression_token1] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [aux_sym__list_destructing_token1] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_self] = ACTIONS(1276), + [anon_sym_parent] = ACTIONS(1276), + [anon_sym_POUND_LBRACK] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [aux_sym_encapsed_string_token1] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [aux_sym_string_token1] = ACTIONS(1274), + [anon_sym_LT_LT_LT] = ACTIONS(1274), + [anon_sym_BQUOTE] = ACTIONS(1274), + [sym_boolean] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [anon_sym_DOLLAR] = ACTIONS(1274), + [aux_sym_yield_expression_token1] = ACTIONS(1276), + [aux_sym_include_expression_token1] = ACTIONS(1276), + [aux_sym_include_once_expression_token1] = ACTIONS(1276), + [aux_sym_require_expression_token1] = ACTIONS(1276), + [aux_sym_require_once_expression_token1] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), + }, + [504] = { + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_name] = ACTIONS(1280), + [anon_sym_QMARK_GT] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [aux_sym_function_static_declaration_token1] = ACTIONS(1280), + [aux_sym_global_declaration_token1] = ACTIONS(1280), + [aux_sym_namespace_definition_token1] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1280), + [anon_sym_BSLASH] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [aux_sym_trait_declaration_token1] = ACTIONS(1280), + [aux_sym_interface_declaration_token1] = ACTIONS(1280), + [aux_sym_enum_declaration_token1] = ACTIONS(1280), + [aux_sym_enum_case_token1] = ACTIONS(1280), + [aux_sym_class_declaration_token1] = ACTIONS(1280), + [aux_sym_final_modifier_token1] = ACTIONS(1280), + [aux_sym_abstract_modifier_token1] = ACTIONS(1280), + [aux_sym_readonly_modifier_token1] = ACTIONS(1280), + [aux_sym_visibility_modifier_token1] = ACTIONS(1280), + [aux_sym_visibility_modifier_token2] = ACTIONS(1280), + [aux_sym_visibility_modifier_token3] = ACTIONS(1280), + [aux_sym__arrow_function_header_token1] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1278), + [aux_sym_cast_type_token1] = ACTIONS(1280), + [aux_sym_echo_statement_token1] = ACTIONS(1280), + [anon_sym_unset] = ACTIONS(1280), + [aux_sym_declare_statement_token1] = ACTIONS(1280), + [aux_sym_declare_statement_token2] = ACTIONS(1280), + [sym_float] = ACTIONS(1280), + [aux_sym_try_statement_token1] = ACTIONS(1280), + [aux_sym_goto_statement_token1] = ACTIONS(1280), + [aux_sym_continue_statement_token1] = ACTIONS(1280), + [aux_sym_break_statement_token1] = ACTIONS(1280), + [sym_integer] = ACTIONS(1280), + [aux_sym_return_statement_token1] = ACTIONS(1280), + [aux_sym_throw_expression_token1] = ACTIONS(1280), + [aux_sym_while_statement_token1] = ACTIONS(1280), + [aux_sym_while_statement_token2] = ACTIONS(1280), + [aux_sym_do_statement_token1] = ACTIONS(1280), + [aux_sym_for_statement_token1] = ACTIONS(1280), + [aux_sym_for_statement_token2] = ACTIONS(1280), + [aux_sym_foreach_statement_token1] = ACTIONS(1280), + [aux_sym_foreach_statement_token2] = ACTIONS(1280), + [aux_sym_if_statement_token1] = ACTIONS(1280), + [aux_sym_if_statement_token2] = ACTIONS(1280), + [aux_sym_else_if_clause_token1] = ACTIONS(1280), + [aux_sym_else_clause_token1] = ACTIONS(1280), + [aux_sym_match_expression_token1] = ACTIONS(1280), + [aux_sym_match_default_expression_token1] = ACTIONS(1280), + [aux_sym_switch_statement_token1] = ACTIONS(1280), + [aux_sym_switch_block_token1] = ACTIONS(1280), + [anon_sym_AT] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [aux_sym_clone_expression_token1] = ACTIONS(1280), + [aux_sym_print_intrinsic_token1] = ACTIONS(1280), + [aux_sym_object_creation_expression_token1] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [aux_sym__list_destructing_token1] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_self] = ACTIONS(1280), + [anon_sym_parent] = ACTIONS(1280), + [anon_sym_POUND_LBRACK] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [aux_sym_encapsed_string_token1] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [aux_sym_string_token1] = ACTIONS(1278), + [anon_sym_LT_LT_LT] = ACTIONS(1278), + [anon_sym_BQUOTE] = ACTIONS(1278), + [sym_boolean] = ACTIONS(1280), + [sym_null] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1278), + [aux_sym_yield_expression_token1] = ACTIONS(1280), + [aux_sym_include_expression_token1] = ACTIONS(1280), + [aux_sym_include_once_expression_token1] = ACTIONS(1280), + [aux_sym_require_expression_token1] = ACTIONS(1280), + [aux_sym_require_once_expression_token1] = ACTIONS(1280), + [sym_comment] = ACTIONS(3), + }, + [505] = { + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_name] = ACTIONS(1284), + [anon_sym_QMARK_GT] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [aux_sym_function_static_declaration_token1] = ACTIONS(1284), + [aux_sym_global_declaration_token1] = ACTIONS(1284), + [aux_sym_namespace_definition_token1] = ACTIONS(1284), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1284), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1284), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [aux_sym_trait_declaration_token1] = ACTIONS(1284), + [aux_sym_interface_declaration_token1] = ACTIONS(1284), + [aux_sym_enum_declaration_token1] = ACTIONS(1284), + [aux_sym_enum_case_token1] = ACTIONS(1284), + [aux_sym_class_declaration_token1] = ACTIONS(1284), + [aux_sym_final_modifier_token1] = ACTIONS(1284), + [aux_sym_abstract_modifier_token1] = ACTIONS(1284), + [aux_sym_readonly_modifier_token1] = ACTIONS(1284), + [aux_sym_visibility_modifier_token1] = ACTIONS(1284), + [aux_sym_visibility_modifier_token2] = ACTIONS(1284), + [aux_sym_visibility_modifier_token3] = ACTIONS(1284), + [aux_sym__arrow_function_header_token1] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1282), + [aux_sym_cast_type_token1] = ACTIONS(1284), + [aux_sym_echo_statement_token1] = ACTIONS(1284), + [anon_sym_unset] = ACTIONS(1284), + [aux_sym_declare_statement_token1] = ACTIONS(1284), + [aux_sym_declare_statement_token2] = ACTIONS(1284), + [sym_float] = ACTIONS(1284), + [aux_sym_try_statement_token1] = ACTIONS(1284), + [aux_sym_goto_statement_token1] = ACTIONS(1284), + [aux_sym_continue_statement_token1] = ACTIONS(1284), + [aux_sym_break_statement_token1] = ACTIONS(1284), + [sym_integer] = ACTIONS(1284), + [aux_sym_return_statement_token1] = ACTIONS(1284), + [aux_sym_throw_expression_token1] = ACTIONS(1284), + [aux_sym_while_statement_token1] = ACTIONS(1284), + [aux_sym_while_statement_token2] = ACTIONS(1284), + [aux_sym_do_statement_token1] = ACTIONS(1284), + [aux_sym_for_statement_token1] = ACTIONS(1284), + [aux_sym_for_statement_token2] = ACTIONS(1284), + [aux_sym_foreach_statement_token1] = ACTIONS(1284), + [aux_sym_foreach_statement_token2] = ACTIONS(1284), + [aux_sym_if_statement_token1] = ACTIONS(1284), + [aux_sym_if_statement_token2] = ACTIONS(1284), + [aux_sym_else_if_clause_token1] = ACTIONS(1284), + [aux_sym_else_clause_token1] = ACTIONS(1284), + [aux_sym_match_expression_token1] = ACTIONS(1284), + [aux_sym_match_default_expression_token1] = ACTIONS(1284), + [aux_sym_switch_statement_token1] = ACTIONS(1284), + [aux_sym_switch_block_token1] = ACTIONS(1284), + [anon_sym_AT] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [aux_sym_clone_expression_token1] = ACTIONS(1284), + [aux_sym_print_intrinsic_token1] = ACTIONS(1284), + [aux_sym_object_creation_expression_token1] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [aux_sym__list_destructing_token1] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_self] = ACTIONS(1284), + [anon_sym_parent] = ACTIONS(1284), + [anon_sym_POUND_LBRACK] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [aux_sym_encapsed_string_token1] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [aux_sym_string_token1] = ACTIONS(1282), + [anon_sym_LT_LT_LT] = ACTIONS(1282), + [anon_sym_BQUOTE] = ACTIONS(1282), + [sym_boolean] = ACTIONS(1284), + [sym_null] = ACTIONS(1284), + [anon_sym_DOLLAR] = ACTIONS(1282), + [aux_sym_yield_expression_token1] = ACTIONS(1284), + [aux_sym_include_expression_token1] = ACTIONS(1284), + [aux_sym_include_once_expression_token1] = ACTIONS(1284), + [aux_sym_require_expression_token1] = ACTIONS(1284), + [aux_sym_require_once_expression_token1] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + }, + [506] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_name] = ACTIONS(1288), + [anon_sym_QMARK_GT] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [aux_sym_function_static_declaration_token1] = ACTIONS(1288), + [aux_sym_global_declaration_token1] = ACTIONS(1288), + [aux_sym_namespace_definition_token1] = ACTIONS(1288), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1288), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1288), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1288), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [aux_sym_trait_declaration_token1] = ACTIONS(1288), + [aux_sym_interface_declaration_token1] = ACTIONS(1288), + [aux_sym_enum_declaration_token1] = ACTIONS(1288), + [aux_sym_enum_case_token1] = ACTIONS(1288), + [aux_sym_class_declaration_token1] = ACTIONS(1288), + [aux_sym_final_modifier_token1] = ACTIONS(1288), + [aux_sym_abstract_modifier_token1] = ACTIONS(1288), + [aux_sym_readonly_modifier_token1] = ACTIONS(1288), + [aux_sym_visibility_modifier_token1] = ACTIONS(1288), + [aux_sym_visibility_modifier_token2] = ACTIONS(1288), + [aux_sym_visibility_modifier_token3] = ACTIONS(1288), + [aux_sym__arrow_function_header_token1] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1286), + [aux_sym_cast_type_token1] = ACTIONS(1288), + [aux_sym_echo_statement_token1] = ACTIONS(1288), + [anon_sym_unset] = ACTIONS(1288), + [aux_sym_declare_statement_token1] = ACTIONS(1288), + [aux_sym_declare_statement_token2] = ACTIONS(1288), + [sym_float] = ACTIONS(1288), + [aux_sym_try_statement_token1] = ACTIONS(1288), + [aux_sym_goto_statement_token1] = ACTIONS(1288), + [aux_sym_continue_statement_token1] = ACTIONS(1288), + [aux_sym_break_statement_token1] = ACTIONS(1288), + [sym_integer] = ACTIONS(1288), + [aux_sym_return_statement_token1] = ACTIONS(1288), + [aux_sym_throw_expression_token1] = ACTIONS(1288), + [aux_sym_while_statement_token1] = ACTIONS(1288), + [aux_sym_while_statement_token2] = ACTIONS(1288), + [aux_sym_do_statement_token1] = ACTIONS(1288), + [aux_sym_for_statement_token1] = ACTIONS(1288), + [aux_sym_for_statement_token2] = ACTIONS(1288), + [aux_sym_foreach_statement_token1] = ACTIONS(1288), + [aux_sym_foreach_statement_token2] = ACTIONS(1288), + [aux_sym_if_statement_token1] = ACTIONS(1288), + [aux_sym_if_statement_token2] = ACTIONS(1288), + [aux_sym_else_if_clause_token1] = ACTIONS(1288), + [aux_sym_else_clause_token1] = ACTIONS(1288), + [aux_sym_match_expression_token1] = ACTIONS(1288), + [aux_sym_match_default_expression_token1] = ACTIONS(1288), + [aux_sym_switch_statement_token1] = ACTIONS(1288), + [aux_sym_switch_block_token1] = ACTIONS(1288), + [anon_sym_AT] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [aux_sym_clone_expression_token1] = ACTIONS(1288), + [aux_sym_print_intrinsic_token1] = ACTIONS(1288), + [aux_sym_object_creation_expression_token1] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [aux_sym__list_destructing_token1] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_self] = ACTIONS(1288), + [anon_sym_parent] = ACTIONS(1288), + [anon_sym_POUND_LBRACK] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [aux_sym_encapsed_string_token1] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [aux_sym_string_token1] = ACTIONS(1286), + [anon_sym_LT_LT_LT] = ACTIONS(1286), + [anon_sym_BQUOTE] = ACTIONS(1286), + [sym_boolean] = ACTIONS(1288), + [sym_null] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1286), + [aux_sym_yield_expression_token1] = ACTIONS(1288), + [aux_sym_include_expression_token1] = ACTIONS(1288), + [aux_sym_include_once_expression_token1] = ACTIONS(1288), + [aux_sym_require_expression_token1] = ACTIONS(1288), + [aux_sym_require_once_expression_token1] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + }, + [507] = { + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_name] = ACTIONS(1292), + [anon_sym_QMARK_GT] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [aux_sym_function_static_declaration_token1] = ACTIONS(1292), + [aux_sym_global_declaration_token1] = ACTIONS(1292), + [aux_sym_namespace_definition_token1] = ACTIONS(1292), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1292), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1292), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [aux_sym_trait_declaration_token1] = ACTIONS(1292), + [aux_sym_interface_declaration_token1] = ACTIONS(1292), + [aux_sym_enum_declaration_token1] = ACTIONS(1292), + [aux_sym_enum_case_token1] = ACTIONS(1292), + [aux_sym_class_declaration_token1] = ACTIONS(1292), + [aux_sym_final_modifier_token1] = ACTIONS(1292), + [aux_sym_abstract_modifier_token1] = ACTIONS(1292), + [aux_sym_readonly_modifier_token1] = ACTIONS(1292), + [aux_sym_visibility_modifier_token1] = ACTIONS(1292), + [aux_sym_visibility_modifier_token2] = ACTIONS(1292), + [aux_sym_visibility_modifier_token3] = ACTIONS(1292), + [aux_sym__arrow_function_header_token1] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1290), + [aux_sym_cast_type_token1] = ACTIONS(1292), + [aux_sym_echo_statement_token1] = ACTIONS(1292), + [anon_sym_unset] = ACTIONS(1292), + [aux_sym_declare_statement_token1] = ACTIONS(1292), + [aux_sym_declare_statement_token2] = ACTIONS(1292), + [sym_float] = ACTIONS(1292), + [aux_sym_try_statement_token1] = ACTIONS(1292), + [aux_sym_goto_statement_token1] = ACTIONS(1292), + [aux_sym_continue_statement_token1] = ACTIONS(1292), + [aux_sym_break_statement_token1] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [aux_sym_return_statement_token1] = ACTIONS(1292), + [aux_sym_throw_expression_token1] = ACTIONS(1292), + [aux_sym_while_statement_token1] = ACTIONS(1292), + [aux_sym_while_statement_token2] = ACTIONS(1292), + [aux_sym_do_statement_token1] = ACTIONS(1292), + [aux_sym_for_statement_token1] = ACTIONS(1292), + [aux_sym_for_statement_token2] = ACTIONS(1292), + [aux_sym_foreach_statement_token1] = ACTIONS(1292), + [aux_sym_foreach_statement_token2] = ACTIONS(1292), + [aux_sym_if_statement_token1] = ACTIONS(1292), + [aux_sym_if_statement_token2] = ACTIONS(1292), + [aux_sym_else_if_clause_token1] = ACTIONS(1292), + [aux_sym_else_clause_token1] = ACTIONS(1292), + [aux_sym_match_expression_token1] = ACTIONS(1292), + [aux_sym_match_default_expression_token1] = ACTIONS(1292), + [aux_sym_switch_statement_token1] = ACTIONS(1292), + [aux_sym_switch_block_token1] = ACTIONS(1292), + [anon_sym_AT] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [aux_sym_clone_expression_token1] = ACTIONS(1292), + [aux_sym_print_intrinsic_token1] = ACTIONS(1292), + [aux_sym_object_creation_expression_token1] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [aux_sym__list_destructing_token1] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_self] = ACTIONS(1292), + [anon_sym_parent] = ACTIONS(1292), + [anon_sym_POUND_LBRACK] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [aux_sym_encapsed_string_token1] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [aux_sym_string_token1] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [sym_boolean] = ACTIONS(1292), + [sym_null] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1290), + [aux_sym_yield_expression_token1] = ACTIONS(1292), + [aux_sym_include_expression_token1] = ACTIONS(1292), + [aux_sym_include_once_expression_token1] = ACTIONS(1292), + [aux_sym_require_expression_token1] = ACTIONS(1292), + [aux_sym_require_once_expression_token1] = ACTIONS(1292), + [sym_comment] = ACTIONS(3), + }, + [508] = { + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_name] = ACTIONS(1296), + [anon_sym_QMARK_GT] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [aux_sym_function_static_declaration_token1] = ACTIONS(1296), + [aux_sym_global_declaration_token1] = ACTIONS(1296), + [aux_sym_namespace_definition_token1] = ACTIONS(1296), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1296), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1296), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1296), + [anon_sym_BSLASH] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [aux_sym_trait_declaration_token1] = ACTIONS(1296), + [aux_sym_interface_declaration_token1] = ACTIONS(1296), + [aux_sym_enum_declaration_token1] = ACTIONS(1296), + [aux_sym_enum_case_token1] = ACTIONS(1296), + [aux_sym_class_declaration_token1] = ACTIONS(1296), + [aux_sym_final_modifier_token1] = ACTIONS(1296), + [aux_sym_abstract_modifier_token1] = ACTIONS(1296), + [aux_sym_readonly_modifier_token1] = ACTIONS(1296), + [aux_sym_visibility_modifier_token1] = ACTIONS(1296), + [aux_sym_visibility_modifier_token2] = ACTIONS(1296), + [aux_sym_visibility_modifier_token3] = ACTIONS(1296), + [aux_sym__arrow_function_header_token1] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1294), + [aux_sym_cast_type_token1] = ACTIONS(1296), + [aux_sym_echo_statement_token1] = ACTIONS(1296), + [anon_sym_unset] = ACTIONS(1296), + [aux_sym_declare_statement_token1] = ACTIONS(1296), + [aux_sym_declare_statement_token2] = ACTIONS(1296), + [sym_float] = ACTIONS(1296), + [aux_sym_try_statement_token1] = ACTIONS(1296), + [aux_sym_goto_statement_token1] = ACTIONS(1296), + [aux_sym_continue_statement_token1] = ACTIONS(1296), + [aux_sym_break_statement_token1] = ACTIONS(1296), + [sym_integer] = ACTIONS(1296), + [aux_sym_return_statement_token1] = ACTIONS(1296), + [aux_sym_throw_expression_token1] = ACTIONS(1296), + [aux_sym_while_statement_token1] = ACTIONS(1296), + [aux_sym_while_statement_token2] = ACTIONS(1296), + [aux_sym_do_statement_token1] = ACTIONS(1296), + [aux_sym_for_statement_token1] = ACTIONS(1296), + [aux_sym_for_statement_token2] = ACTIONS(1296), + [aux_sym_foreach_statement_token1] = ACTIONS(1296), + [aux_sym_foreach_statement_token2] = ACTIONS(1296), + [aux_sym_if_statement_token1] = ACTIONS(1296), + [aux_sym_if_statement_token2] = ACTIONS(1296), + [aux_sym_else_if_clause_token1] = ACTIONS(1296), + [aux_sym_else_clause_token1] = ACTIONS(1296), + [aux_sym_match_expression_token1] = ACTIONS(1296), + [aux_sym_match_default_expression_token1] = ACTIONS(1296), + [aux_sym_switch_statement_token1] = ACTIONS(1296), + [aux_sym_switch_block_token1] = ACTIONS(1296), + [anon_sym_AT] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [aux_sym_clone_expression_token1] = ACTIONS(1296), + [aux_sym_print_intrinsic_token1] = ACTIONS(1296), + [aux_sym_object_creation_expression_token1] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [aux_sym__list_destructing_token1] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1294), + [anon_sym_self] = ACTIONS(1296), + [anon_sym_parent] = ACTIONS(1296), + [anon_sym_POUND_LBRACK] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [aux_sym_encapsed_string_token1] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [aux_sym_string_token1] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [sym_boolean] = ACTIONS(1296), + [sym_null] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [aux_sym_yield_expression_token1] = ACTIONS(1296), + [aux_sym_include_expression_token1] = ACTIONS(1296), + [aux_sym_include_once_expression_token1] = ACTIONS(1296), + [aux_sym_require_expression_token1] = ACTIONS(1296), + [aux_sym_require_once_expression_token1] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + }, + [509] = { + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_name] = ACTIONS(1300), + [anon_sym_QMARK_GT] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [aux_sym_function_static_declaration_token1] = ACTIONS(1300), + [aux_sym_global_declaration_token1] = ACTIONS(1300), + [aux_sym_namespace_definition_token1] = ACTIONS(1300), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1300), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1300), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1300), + [anon_sym_BSLASH] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [aux_sym_trait_declaration_token1] = ACTIONS(1300), + [aux_sym_interface_declaration_token1] = ACTIONS(1300), + [aux_sym_enum_declaration_token1] = ACTIONS(1300), + [aux_sym_enum_case_token1] = ACTIONS(1300), + [aux_sym_class_declaration_token1] = ACTIONS(1300), + [aux_sym_final_modifier_token1] = ACTIONS(1300), + [aux_sym_abstract_modifier_token1] = ACTIONS(1300), + [aux_sym_readonly_modifier_token1] = ACTIONS(1300), + [aux_sym_visibility_modifier_token1] = ACTIONS(1300), + [aux_sym_visibility_modifier_token2] = ACTIONS(1300), + [aux_sym_visibility_modifier_token3] = ACTIONS(1300), + [aux_sym__arrow_function_header_token1] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1298), + [aux_sym_cast_type_token1] = ACTIONS(1300), + [aux_sym_echo_statement_token1] = ACTIONS(1300), + [anon_sym_unset] = ACTIONS(1300), + [aux_sym_declare_statement_token1] = ACTIONS(1300), + [aux_sym_declare_statement_token2] = ACTIONS(1300), + [sym_float] = ACTIONS(1300), + [aux_sym_try_statement_token1] = ACTIONS(1300), + [aux_sym_goto_statement_token1] = ACTIONS(1300), + [aux_sym_continue_statement_token1] = ACTIONS(1300), + [aux_sym_break_statement_token1] = ACTIONS(1300), + [sym_integer] = ACTIONS(1300), + [aux_sym_return_statement_token1] = ACTIONS(1300), + [aux_sym_throw_expression_token1] = ACTIONS(1300), + [aux_sym_while_statement_token1] = ACTIONS(1300), + [aux_sym_while_statement_token2] = ACTIONS(1300), + [aux_sym_do_statement_token1] = ACTIONS(1300), + [aux_sym_for_statement_token1] = ACTIONS(1300), + [aux_sym_for_statement_token2] = ACTIONS(1300), + [aux_sym_foreach_statement_token1] = ACTIONS(1300), + [aux_sym_foreach_statement_token2] = ACTIONS(1300), + [aux_sym_if_statement_token1] = ACTIONS(1300), + [aux_sym_if_statement_token2] = ACTIONS(1300), + [aux_sym_else_if_clause_token1] = ACTIONS(1300), + [aux_sym_else_clause_token1] = ACTIONS(1300), + [aux_sym_match_expression_token1] = ACTIONS(1300), + [aux_sym_match_default_expression_token1] = ACTIONS(1300), + [aux_sym_switch_statement_token1] = ACTIONS(1300), + [aux_sym_switch_block_token1] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [aux_sym_clone_expression_token1] = ACTIONS(1300), + [aux_sym_print_intrinsic_token1] = ACTIONS(1300), + [aux_sym_object_creation_expression_token1] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [aux_sym__list_destructing_token1] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1298), + [anon_sym_self] = ACTIONS(1300), + [anon_sym_parent] = ACTIONS(1300), + [anon_sym_POUND_LBRACK] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [aux_sym_encapsed_string_token1] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [aux_sym_string_token1] = ACTIONS(1298), + [anon_sym_LT_LT_LT] = ACTIONS(1298), + [anon_sym_BQUOTE] = ACTIONS(1298), + [sym_boolean] = ACTIONS(1300), + [sym_null] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1298), + [aux_sym_yield_expression_token1] = ACTIONS(1300), + [aux_sym_include_expression_token1] = ACTIONS(1300), + [aux_sym_include_once_expression_token1] = ACTIONS(1300), + [aux_sym_require_expression_token1] = ACTIONS(1300), + [aux_sym_require_once_expression_token1] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + }, + [510] = { + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_name] = ACTIONS(1304), + [anon_sym_QMARK_GT] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [aux_sym_function_static_declaration_token1] = ACTIONS(1304), + [aux_sym_global_declaration_token1] = ACTIONS(1304), + [aux_sym_namespace_definition_token1] = ACTIONS(1304), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1304), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1304), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1304), + [anon_sym_BSLASH] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [aux_sym_trait_declaration_token1] = ACTIONS(1304), + [aux_sym_interface_declaration_token1] = ACTIONS(1304), + [aux_sym_enum_declaration_token1] = ACTIONS(1304), + [aux_sym_enum_case_token1] = ACTIONS(1304), + [aux_sym_class_declaration_token1] = ACTIONS(1304), + [aux_sym_final_modifier_token1] = ACTIONS(1304), + [aux_sym_abstract_modifier_token1] = ACTIONS(1304), + [aux_sym_readonly_modifier_token1] = ACTIONS(1304), + [aux_sym_visibility_modifier_token1] = ACTIONS(1304), + [aux_sym_visibility_modifier_token2] = ACTIONS(1304), + [aux_sym_visibility_modifier_token3] = ACTIONS(1304), + [aux_sym__arrow_function_header_token1] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1302), + [aux_sym_cast_type_token1] = ACTIONS(1304), + [aux_sym_echo_statement_token1] = ACTIONS(1304), + [anon_sym_unset] = ACTIONS(1304), + [aux_sym_declare_statement_token1] = ACTIONS(1304), + [aux_sym_declare_statement_token2] = ACTIONS(1304), + [sym_float] = ACTIONS(1304), + [aux_sym_try_statement_token1] = ACTIONS(1304), + [aux_sym_goto_statement_token1] = ACTIONS(1304), + [aux_sym_continue_statement_token1] = ACTIONS(1304), + [aux_sym_break_statement_token1] = ACTIONS(1304), + [sym_integer] = ACTIONS(1304), + [aux_sym_return_statement_token1] = ACTIONS(1304), + [aux_sym_throw_expression_token1] = ACTIONS(1304), + [aux_sym_while_statement_token1] = ACTIONS(1304), + [aux_sym_while_statement_token2] = ACTIONS(1304), + [aux_sym_do_statement_token1] = ACTIONS(1304), + [aux_sym_for_statement_token1] = ACTIONS(1304), + [aux_sym_for_statement_token2] = ACTIONS(1304), + [aux_sym_foreach_statement_token1] = ACTIONS(1304), + [aux_sym_foreach_statement_token2] = ACTIONS(1304), + [aux_sym_if_statement_token1] = ACTIONS(1304), + [aux_sym_if_statement_token2] = ACTIONS(1304), + [aux_sym_else_if_clause_token1] = ACTIONS(1304), + [aux_sym_else_clause_token1] = ACTIONS(1304), + [aux_sym_match_expression_token1] = ACTIONS(1304), + [aux_sym_match_default_expression_token1] = ACTIONS(1304), + [aux_sym_switch_statement_token1] = ACTIONS(1304), + [aux_sym_switch_block_token1] = ACTIONS(1304), + [anon_sym_AT] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [aux_sym_clone_expression_token1] = ACTIONS(1304), + [aux_sym_print_intrinsic_token1] = ACTIONS(1304), + [aux_sym_object_creation_expression_token1] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [aux_sym__list_destructing_token1] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_self] = ACTIONS(1304), + [anon_sym_parent] = ACTIONS(1304), + [anon_sym_POUND_LBRACK] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [aux_sym_encapsed_string_token1] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [aux_sym_string_token1] = ACTIONS(1302), + [anon_sym_LT_LT_LT] = ACTIONS(1302), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_boolean] = ACTIONS(1304), + [sym_null] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1302), + [aux_sym_yield_expression_token1] = ACTIONS(1304), + [aux_sym_include_expression_token1] = ACTIONS(1304), + [aux_sym_include_once_expression_token1] = ACTIONS(1304), + [aux_sym_require_expression_token1] = ACTIONS(1304), + [aux_sym_require_once_expression_token1] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + }, + [511] = { + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_name] = ACTIONS(1308), + [anon_sym_QMARK_GT] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [aux_sym_function_static_declaration_token1] = ACTIONS(1308), + [aux_sym_global_declaration_token1] = ACTIONS(1308), + [aux_sym_namespace_definition_token1] = ACTIONS(1308), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1308), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1308), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1308), + [anon_sym_BSLASH] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [aux_sym_trait_declaration_token1] = ACTIONS(1308), + [aux_sym_interface_declaration_token1] = ACTIONS(1308), + [aux_sym_enum_declaration_token1] = ACTIONS(1308), + [aux_sym_enum_case_token1] = ACTIONS(1308), + [aux_sym_class_declaration_token1] = ACTIONS(1308), + [aux_sym_final_modifier_token1] = ACTIONS(1308), + [aux_sym_abstract_modifier_token1] = ACTIONS(1308), + [aux_sym_readonly_modifier_token1] = ACTIONS(1308), + [aux_sym_visibility_modifier_token1] = ACTIONS(1308), + [aux_sym_visibility_modifier_token2] = ACTIONS(1308), + [aux_sym_visibility_modifier_token3] = ACTIONS(1308), + [aux_sym__arrow_function_header_token1] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1306), + [aux_sym_cast_type_token1] = ACTIONS(1308), + [aux_sym_echo_statement_token1] = ACTIONS(1308), + [anon_sym_unset] = ACTIONS(1308), + [aux_sym_declare_statement_token1] = ACTIONS(1308), + [aux_sym_declare_statement_token2] = ACTIONS(1308), + [sym_float] = ACTIONS(1308), + [aux_sym_try_statement_token1] = ACTIONS(1308), + [aux_sym_goto_statement_token1] = ACTIONS(1308), + [aux_sym_continue_statement_token1] = ACTIONS(1308), + [aux_sym_break_statement_token1] = ACTIONS(1308), + [sym_integer] = ACTIONS(1308), + [aux_sym_return_statement_token1] = ACTIONS(1308), + [aux_sym_throw_expression_token1] = ACTIONS(1308), + [aux_sym_while_statement_token1] = ACTIONS(1308), + [aux_sym_while_statement_token2] = ACTIONS(1308), + [aux_sym_do_statement_token1] = ACTIONS(1308), + [aux_sym_for_statement_token1] = ACTIONS(1308), + [aux_sym_for_statement_token2] = ACTIONS(1308), + [aux_sym_foreach_statement_token1] = ACTIONS(1308), + [aux_sym_foreach_statement_token2] = ACTIONS(1308), + [aux_sym_if_statement_token1] = ACTIONS(1308), + [aux_sym_if_statement_token2] = ACTIONS(1308), + [aux_sym_else_if_clause_token1] = ACTIONS(1308), + [aux_sym_else_clause_token1] = ACTIONS(1308), + [aux_sym_match_expression_token1] = ACTIONS(1308), + [aux_sym_match_default_expression_token1] = ACTIONS(1308), + [aux_sym_switch_statement_token1] = ACTIONS(1308), + [aux_sym_switch_block_token1] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [aux_sym_clone_expression_token1] = ACTIONS(1308), + [aux_sym_print_intrinsic_token1] = ACTIONS(1308), + [aux_sym_object_creation_expression_token1] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [aux_sym__list_destructing_token1] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1306), + [anon_sym_self] = ACTIONS(1308), + [anon_sym_parent] = ACTIONS(1308), + [anon_sym_POUND_LBRACK] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [aux_sym_encapsed_string_token1] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [aux_sym_string_token1] = ACTIONS(1306), + [anon_sym_LT_LT_LT] = ACTIONS(1306), + [anon_sym_BQUOTE] = ACTIONS(1306), + [sym_boolean] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1306), + [aux_sym_yield_expression_token1] = ACTIONS(1308), + [aux_sym_include_expression_token1] = ACTIONS(1308), + [aux_sym_include_once_expression_token1] = ACTIONS(1308), + [aux_sym_require_expression_token1] = ACTIONS(1308), + [aux_sym_require_once_expression_token1] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + }, + [512] = { + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_name] = ACTIONS(1312), + [anon_sym_QMARK_GT] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [aux_sym_function_static_declaration_token1] = ACTIONS(1312), + [aux_sym_global_declaration_token1] = ACTIONS(1312), + [aux_sym_namespace_definition_token1] = ACTIONS(1312), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1312), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1312), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1312), + [anon_sym_BSLASH] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [aux_sym_trait_declaration_token1] = ACTIONS(1312), + [aux_sym_interface_declaration_token1] = ACTIONS(1312), + [aux_sym_enum_declaration_token1] = ACTIONS(1312), + [aux_sym_enum_case_token1] = ACTIONS(1312), + [aux_sym_class_declaration_token1] = ACTIONS(1312), + [aux_sym_final_modifier_token1] = ACTIONS(1312), + [aux_sym_abstract_modifier_token1] = ACTIONS(1312), + [aux_sym_readonly_modifier_token1] = ACTIONS(1312), + [aux_sym_visibility_modifier_token1] = ACTIONS(1312), + [aux_sym_visibility_modifier_token2] = ACTIONS(1312), + [aux_sym_visibility_modifier_token3] = ACTIONS(1312), + [aux_sym__arrow_function_header_token1] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1310), + [aux_sym_cast_type_token1] = ACTIONS(1312), + [aux_sym_echo_statement_token1] = ACTIONS(1312), + [anon_sym_unset] = ACTIONS(1312), + [aux_sym_declare_statement_token1] = ACTIONS(1312), + [aux_sym_declare_statement_token2] = ACTIONS(1312), + [sym_float] = ACTIONS(1312), + [aux_sym_try_statement_token1] = ACTIONS(1312), + [aux_sym_goto_statement_token1] = ACTIONS(1312), + [aux_sym_continue_statement_token1] = ACTIONS(1312), + [aux_sym_break_statement_token1] = ACTIONS(1312), + [sym_integer] = ACTIONS(1312), + [aux_sym_return_statement_token1] = ACTIONS(1312), + [aux_sym_throw_expression_token1] = ACTIONS(1312), + [aux_sym_while_statement_token1] = ACTIONS(1312), + [aux_sym_while_statement_token2] = ACTIONS(1312), + [aux_sym_do_statement_token1] = ACTIONS(1312), + [aux_sym_for_statement_token1] = ACTIONS(1312), + [aux_sym_for_statement_token2] = ACTIONS(1312), + [aux_sym_foreach_statement_token1] = ACTIONS(1312), + [aux_sym_foreach_statement_token2] = ACTIONS(1312), + [aux_sym_if_statement_token1] = ACTIONS(1312), + [aux_sym_if_statement_token2] = ACTIONS(1312), + [aux_sym_else_if_clause_token1] = ACTIONS(1312), + [aux_sym_else_clause_token1] = ACTIONS(1312), + [aux_sym_match_expression_token1] = ACTIONS(1312), + [aux_sym_match_default_expression_token1] = ACTIONS(1312), + [aux_sym_switch_statement_token1] = ACTIONS(1312), + [aux_sym_switch_block_token1] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [aux_sym_clone_expression_token1] = ACTIONS(1312), + [aux_sym_print_intrinsic_token1] = ACTIONS(1312), + [aux_sym_object_creation_expression_token1] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [aux_sym__list_destructing_token1] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_self] = ACTIONS(1312), + [anon_sym_parent] = ACTIONS(1312), + [anon_sym_POUND_LBRACK] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [aux_sym_encapsed_string_token1] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [aux_sym_string_token1] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_BQUOTE] = ACTIONS(1310), + [sym_boolean] = ACTIONS(1312), + [sym_null] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1310), + [aux_sym_yield_expression_token1] = ACTIONS(1312), + [aux_sym_include_expression_token1] = ACTIONS(1312), + [aux_sym_include_once_expression_token1] = ACTIONS(1312), + [aux_sym_require_expression_token1] = ACTIONS(1312), + [aux_sym_require_once_expression_token1] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + }, + [513] = { + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_name] = ACTIONS(1316), + [anon_sym_QMARK_GT] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [aux_sym_function_static_declaration_token1] = ACTIONS(1316), + [aux_sym_global_declaration_token1] = ACTIONS(1316), + [aux_sym_namespace_definition_token1] = ACTIONS(1316), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1316), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1316), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1316), + [anon_sym_BSLASH] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), + [aux_sym_trait_declaration_token1] = ACTIONS(1316), + [aux_sym_interface_declaration_token1] = ACTIONS(1316), + [aux_sym_enum_declaration_token1] = ACTIONS(1316), + [aux_sym_enum_case_token1] = ACTIONS(1316), + [aux_sym_class_declaration_token1] = ACTIONS(1316), + [aux_sym_final_modifier_token1] = ACTIONS(1316), + [aux_sym_abstract_modifier_token1] = ACTIONS(1316), + [aux_sym_readonly_modifier_token1] = ACTIONS(1316), + [aux_sym_visibility_modifier_token1] = ACTIONS(1316), + [aux_sym_visibility_modifier_token2] = ACTIONS(1316), + [aux_sym_visibility_modifier_token3] = ACTIONS(1316), + [aux_sym__arrow_function_header_token1] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1314), + [aux_sym_cast_type_token1] = ACTIONS(1316), + [aux_sym_echo_statement_token1] = ACTIONS(1316), + [anon_sym_unset] = ACTIONS(1316), + [aux_sym_declare_statement_token1] = ACTIONS(1316), + [aux_sym_declare_statement_token2] = ACTIONS(1316), + [sym_float] = ACTIONS(1316), + [aux_sym_try_statement_token1] = ACTIONS(1316), + [aux_sym_goto_statement_token1] = ACTIONS(1316), + [aux_sym_continue_statement_token1] = ACTIONS(1316), + [aux_sym_break_statement_token1] = ACTIONS(1316), + [sym_integer] = ACTIONS(1316), + [aux_sym_return_statement_token1] = ACTIONS(1316), + [aux_sym_throw_expression_token1] = ACTIONS(1316), + [aux_sym_while_statement_token1] = ACTIONS(1316), + [aux_sym_while_statement_token2] = ACTIONS(1316), + [aux_sym_do_statement_token1] = ACTIONS(1316), + [aux_sym_for_statement_token1] = ACTIONS(1316), + [aux_sym_for_statement_token2] = ACTIONS(1316), + [aux_sym_foreach_statement_token1] = ACTIONS(1316), + [aux_sym_foreach_statement_token2] = ACTIONS(1316), + [aux_sym_if_statement_token1] = ACTIONS(1316), + [aux_sym_if_statement_token2] = ACTIONS(1316), + [aux_sym_else_if_clause_token1] = ACTIONS(1316), + [aux_sym_else_clause_token1] = ACTIONS(1316), + [aux_sym_match_expression_token1] = ACTIONS(1316), + [aux_sym_match_default_expression_token1] = ACTIONS(1316), + [aux_sym_switch_statement_token1] = ACTIONS(1316), + [aux_sym_switch_block_token1] = ACTIONS(1316), + [anon_sym_AT] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [aux_sym_clone_expression_token1] = ACTIONS(1316), + [aux_sym_print_intrinsic_token1] = ACTIONS(1316), + [aux_sym_object_creation_expression_token1] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [aux_sym__list_destructing_token1] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1314), + [anon_sym_self] = ACTIONS(1316), + [anon_sym_parent] = ACTIONS(1316), + [anon_sym_POUND_LBRACK] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [aux_sym_encapsed_string_token1] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [aux_sym_string_token1] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1314), + [sym_boolean] = ACTIONS(1316), + [sym_null] = ACTIONS(1316), + [anon_sym_DOLLAR] = ACTIONS(1314), + [aux_sym_yield_expression_token1] = ACTIONS(1316), + [aux_sym_include_expression_token1] = ACTIONS(1316), + [aux_sym_include_once_expression_token1] = ACTIONS(1316), + [aux_sym_require_expression_token1] = ACTIONS(1316), + [aux_sym_require_once_expression_token1] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + }, + [514] = { + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_name] = ACTIONS(1320), + [anon_sym_QMARK_GT] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [aux_sym_function_static_declaration_token1] = ACTIONS(1320), + [aux_sym_global_declaration_token1] = ACTIONS(1320), + [aux_sym_namespace_definition_token1] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1320), + [anon_sym_BSLASH] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [aux_sym_trait_declaration_token1] = ACTIONS(1320), + [aux_sym_interface_declaration_token1] = ACTIONS(1320), + [aux_sym_enum_declaration_token1] = ACTIONS(1320), + [aux_sym_enum_case_token1] = ACTIONS(1320), + [aux_sym_class_declaration_token1] = ACTIONS(1320), + [aux_sym_final_modifier_token1] = ACTIONS(1320), + [aux_sym_abstract_modifier_token1] = ACTIONS(1320), + [aux_sym_readonly_modifier_token1] = ACTIONS(1320), + [aux_sym_visibility_modifier_token1] = ACTIONS(1320), + [aux_sym_visibility_modifier_token2] = ACTIONS(1320), + [aux_sym_visibility_modifier_token3] = ACTIONS(1320), + [aux_sym__arrow_function_header_token1] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1318), + [aux_sym_cast_type_token1] = ACTIONS(1320), + [aux_sym_echo_statement_token1] = ACTIONS(1320), + [anon_sym_unset] = ACTIONS(1320), + [aux_sym_declare_statement_token1] = ACTIONS(1320), + [aux_sym_declare_statement_token2] = ACTIONS(1320), + [sym_float] = ACTIONS(1320), + [aux_sym_try_statement_token1] = ACTIONS(1320), + [aux_sym_goto_statement_token1] = ACTIONS(1320), + [aux_sym_continue_statement_token1] = ACTIONS(1320), + [aux_sym_break_statement_token1] = ACTIONS(1320), + [sym_integer] = ACTIONS(1320), + [aux_sym_return_statement_token1] = ACTIONS(1320), + [aux_sym_throw_expression_token1] = ACTIONS(1320), + [aux_sym_while_statement_token1] = ACTIONS(1320), + [aux_sym_while_statement_token2] = ACTIONS(1320), + [aux_sym_do_statement_token1] = ACTIONS(1320), + [aux_sym_for_statement_token1] = ACTIONS(1320), + [aux_sym_for_statement_token2] = ACTIONS(1320), + [aux_sym_foreach_statement_token1] = ACTIONS(1320), + [aux_sym_foreach_statement_token2] = ACTIONS(1320), + [aux_sym_if_statement_token1] = ACTIONS(1320), + [aux_sym_if_statement_token2] = ACTIONS(1320), + [aux_sym_else_if_clause_token1] = ACTIONS(1320), + [aux_sym_else_clause_token1] = ACTIONS(1320), + [aux_sym_match_expression_token1] = ACTIONS(1320), + [aux_sym_match_default_expression_token1] = ACTIONS(1320), + [aux_sym_switch_statement_token1] = ACTIONS(1320), + [aux_sym_switch_block_token1] = ACTIONS(1320), + [anon_sym_AT] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [aux_sym_clone_expression_token1] = ACTIONS(1320), + [aux_sym_print_intrinsic_token1] = ACTIONS(1320), + [aux_sym_object_creation_expression_token1] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [aux_sym__list_destructing_token1] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_self] = ACTIONS(1320), + [anon_sym_parent] = ACTIONS(1320), + [anon_sym_POUND_LBRACK] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [aux_sym_encapsed_string_token1] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [aux_sym_string_token1] = ACTIONS(1318), + [anon_sym_LT_LT_LT] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [sym_boolean] = ACTIONS(1320), + [sym_null] = ACTIONS(1320), + [anon_sym_DOLLAR] = ACTIONS(1318), + [aux_sym_yield_expression_token1] = ACTIONS(1320), + [aux_sym_include_expression_token1] = ACTIONS(1320), + [aux_sym_include_once_expression_token1] = ACTIONS(1320), + [aux_sym_require_expression_token1] = ACTIONS(1320), + [aux_sym_require_once_expression_token1] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [515] = { + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_name] = ACTIONS(1324), + [anon_sym_QMARK_GT] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [aux_sym_function_static_declaration_token1] = ACTIONS(1324), + [aux_sym_global_declaration_token1] = ACTIONS(1324), + [aux_sym_namespace_definition_token1] = ACTIONS(1324), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1324), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1324), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1324), + [anon_sym_BSLASH] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [aux_sym_trait_declaration_token1] = ACTIONS(1324), + [aux_sym_interface_declaration_token1] = ACTIONS(1324), + [aux_sym_enum_declaration_token1] = ACTIONS(1324), + [aux_sym_enum_case_token1] = ACTIONS(1324), + [aux_sym_class_declaration_token1] = ACTIONS(1324), + [aux_sym_final_modifier_token1] = ACTIONS(1324), + [aux_sym_abstract_modifier_token1] = ACTIONS(1324), + [aux_sym_readonly_modifier_token1] = ACTIONS(1324), + [aux_sym_visibility_modifier_token1] = ACTIONS(1324), + [aux_sym_visibility_modifier_token2] = ACTIONS(1324), + [aux_sym_visibility_modifier_token3] = ACTIONS(1324), + [aux_sym__arrow_function_header_token1] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1322), + [aux_sym_cast_type_token1] = ACTIONS(1324), + [aux_sym_echo_statement_token1] = ACTIONS(1324), + [anon_sym_unset] = ACTIONS(1324), + [aux_sym_declare_statement_token1] = ACTIONS(1324), + [aux_sym_declare_statement_token2] = ACTIONS(1324), + [sym_float] = ACTIONS(1324), + [aux_sym_try_statement_token1] = ACTIONS(1324), + [aux_sym_goto_statement_token1] = ACTIONS(1324), + [aux_sym_continue_statement_token1] = ACTIONS(1324), + [aux_sym_break_statement_token1] = ACTIONS(1324), + [sym_integer] = ACTIONS(1324), + [aux_sym_return_statement_token1] = ACTIONS(1324), + [aux_sym_throw_expression_token1] = ACTIONS(1324), + [aux_sym_while_statement_token1] = ACTIONS(1324), + [aux_sym_while_statement_token2] = ACTIONS(1324), + [aux_sym_do_statement_token1] = ACTIONS(1324), + [aux_sym_for_statement_token1] = ACTIONS(1324), + [aux_sym_for_statement_token2] = ACTIONS(1324), + [aux_sym_foreach_statement_token1] = ACTIONS(1324), + [aux_sym_foreach_statement_token2] = ACTIONS(1324), + [aux_sym_if_statement_token1] = ACTIONS(1324), + [aux_sym_if_statement_token2] = ACTIONS(1324), + [aux_sym_else_if_clause_token1] = ACTIONS(1324), + [aux_sym_else_clause_token1] = ACTIONS(1324), + [aux_sym_match_expression_token1] = ACTIONS(1324), + [aux_sym_match_default_expression_token1] = ACTIONS(1324), + [aux_sym_switch_statement_token1] = ACTIONS(1324), + [aux_sym_switch_block_token1] = ACTIONS(1324), + [anon_sym_AT] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [aux_sym_clone_expression_token1] = ACTIONS(1324), + [aux_sym_print_intrinsic_token1] = ACTIONS(1324), + [aux_sym_object_creation_expression_token1] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [aux_sym__list_destructing_token1] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_self] = ACTIONS(1324), + [anon_sym_parent] = ACTIONS(1324), + [anon_sym_POUND_LBRACK] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [aux_sym_encapsed_string_token1] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [aux_sym_string_token1] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(1322), + [sym_boolean] = ACTIONS(1324), + [sym_null] = ACTIONS(1324), + [anon_sym_DOLLAR] = ACTIONS(1322), + [aux_sym_yield_expression_token1] = ACTIONS(1324), + [aux_sym_include_expression_token1] = ACTIONS(1324), + [aux_sym_include_once_expression_token1] = ACTIONS(1324), + [aux_sym_require_expression_token1] = ACTIONS(1324), + [aux_sym_require_once_expression_token1] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + }, + [516] = { + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_name] = ACTIONS(1280), + [anon_sym_QMARK_GT] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [aux_sym_function_static_declaration_token1] = ACTIONS(1280), + [aux_sym_global_declaration_token1] = ACTIONS(1280), + [aux_sym_namespace_definition_token1] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1280), + [anon_sym_BSLASH] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [aux_sym_trait_declaration_token1] = ACTIONS(1280), + [aux_sym_interface_declaration_token1] = ACTIONS(1280), + [aux_sym_enum_declaration_token1] = ACTIONS(1280), + [aux_sym_enum_case_token1] = ACTIONS(1280), + [aux_sym_class_declaration_token1] = ACTIONS(1280), + [aux_sym_final_modifier_token1] = ACTIONS(1280), + [aux_sym_abstract_modifier_token1] = ACTIONS(1280), + [aux_sym_readonly_modifier_token1] = ACTIONS(1280), + [aux_sym_visibility_modifier_token1] = ACTIONS(1280), + [aux_sym_visibility_modifier_token2] = ACTIONS(1280), + [aux_sym_visibility_modifier_token3] = ACTIONS(1280), + [aux_sym__arrow_function_header_token1] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1278), + [aux_sym_cast_type_token1] = ACTIONS(1280), + [aux_sym_echo_statement_token1] = ACTIONS(1280), + [anon_sym_unset] = ACTIONS(1280), + [aux_sym_declare_statement_token1] = ACTIONS(1280), + [aux_sym_declare_statement_token2] = ACTIONS(1280), + [sym_float] = ACTIONS(1280), + [aux_sym_try_statement_token1] = ACTIONS(1280), + [aux_sym_goto_statement_token1] = ACTIONS(1280), + [aux_sym_continue_statement_token1] = ACTIONS(1280), + [aux_sym_break_statement_token1] = ACTIONS(1280), + [sym_integer] = ACTIONS(1280), + [aux_sym_return_statement_token1] = ACTIONS(1280), + [aux_sym_throw_expression_token1] = ACTIONS(1280), + [aux_sym_while_statement_token1] = ACTIONS(1280), + [aux_sym_while_statement_token2] = ACTIONS(1280), + [aux_sym_do_statement_token1] = ACTIONS(1280), + [aux_sym_for_statement_token1] = ACTIONS(1280), + [aux_sym_for_statement_token2] = ACTIONS(1280), + [aux_sym_foreach_statement_token1] = ACTIONS(1280), + [aux_sym_foreach_statement_token2] = ACTIONS(1280), + [aux_sym_if_statement_token1] = ACTIONS(1280), + [aux_sym_if_statement_token2] = ACTIONS(1280), + [aux_sym_else_if_clause_token1] = ACTIONS(1280), + [aux_sym_else_clause_token1] = ACTIONS(1280), + [aux_sym_match_expression_token1] = ACTIONS(1280), + [aux_sym_match_default_expression_token1] = ACTIONS(1280), + [aux_sym_switch_statement_token1] = ACTIONS(1280), + [aux_sym_switch_block_token1] = ACTIONS(1280), + [anon_sym_AT] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [aux_sym_clone_expression_token1] = ACTIONS(1280), + [aux_sym_print_intrinsic_token1] = ACTIONS(1280), + [aux_sym_object_creation_expression_token1] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [aux_sym__list_destructing_token1] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_self] = ACTIONS(1280), + [anon_sym_parent] = ACTIONS(1280), + [anon_sym_POUND_LBRACK] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [aux_sym_encapsed_string_token1] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [aux_sym_string_token1] = ACTIONS(1278), + [anon_sym_LT_LT_LT] = ACTIONS(1278), + [anon_sym_BQUOTE] = ACTIONS(1278), + [sym_boolean] = ACTIONS(1280), + [sym_null] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1278), + [aux_sym_yield_expression_token1] = ACTIONS(1280), + [aux_sym_include_expression_token1] = ACTIONS(1280), + [aux_sym_include_once_expression_token1] = ACTIONS(1280), + [aux_sym_require_expression_token1] = ACTIONS(1280), + [aux_sym_require_once_expression_token1] = ACTIONS(1280), + [sym_comment] = ACTIONS(3), + }, + [517] = { + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_name] = ACTIONS(1328), + [anon_sym_QMARK_GT] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [aux_sym_function_static_declaration_token1] = ACTIONS(1328), + [aux_sym_global_declaration_token1] = ACTIONS(1328), + [aux_sym_namespace_definition_token1] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1328), + [anon_sym_BSLASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [aux_sym_trait_declaration_token1] = ACTIONS(1328), + [aux_sym_interface_declaration_token1] = ACTIONS(1328), + [aux_sym_enum_declaration_token1] = ACTIONS(1328), + [aux_sym_enum_case_token1] = ACTIONS(1328), + [aux_sym_class_declaration_token1] = ACTIONS(1328), + [aux_sym_final_modifier_token1] = ACTIONS(1328), + [aux_sym_abstract_modifier_token1] = ACTIONS(1328), + [aux_sym_readonly_modifier_token1] = ACTIONS(1328), + [aux_sym_visibility_modifier_token1] = ACTIONS(1328), + [aux_sym_visibility_modifier_token2] = ACTIONS(1328), + [aux_sym_visibility_modifier_token3] = ACTIONS(1328), + [aux_sym__arrow_function_header_token1] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_cast_type_token1] = ACTIONS(1328), + [aux_sym_echo_statement_token1] = ACTIONS(1328), + [anon_sym_unset] = ACTIONS(1328), + [aux_sym_declare_statement_token1] = ACTIONS(1328), + [aux_sym_declare_statement_token2] = ACTIONS(1328), + [sym_float] = ACTIONS(1328), + [aux_sym_try_statement_token1] = ACTIONS(1328), + [aux_sym_goto_statement_token1] = ACTIONS(1328), + [aux_sym_continue_statement_token1] = ACTIONS(1328), + [aux_sym_break_statement_token1] = ACTIONS(1328), + [sym_integer] = ACTIONS(1328), + [aux_sym_return_statement_token1] = ACTIONS(1328), + [aux_sym_throw_expression_token1] = ACTIONS(1328), + [aux_sym_while_statement_token1] = ACTIONS(1328), + [aux_sym_while_statement_token2] = ACTIONS(1328), + [aux_sym_do_statement_token1] = ACTIONS(1328), + [aux_sym_for_statement_token1] = ACTIONS(1328), + [aux_sym_for_statement_token2] = ACTIONS(1328), + [aux_sym_foreach_statement_token1] = ACTIONS(1328), + [aux_sym_foreach_statement_token2] = ACTIONS(1328), + [aux_sym_if_statement_token1] = ACTIONS(1328), + [aux_sym_if_statement_token2] = ACTIONS(1328), + [aux_sym_else_if_clause_token1] = ACTIONS(1328), + [aux_sym_else_clause_token1] = ACTIONS(1328), + [aux_sym_match_expression_token1] = ACTIONS(1328), + [aux_sym_match_default_expression_token1] = ACTIONS(1328), + [aux_sym_switch_statement_token1] = ACTIONS(1328), + [aux_sym_switch_block_token1] = ACTIONS(1328), + [anon_sym_AT] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [aux_sym_clone_expression_token1] = ACTIONS(1328), + [aux_sym_print_intrinsic_token1] = ACTIONS(1328), + [aux_sym_object_creation_expression_token1] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [aux_sym__list_destructing_token1] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_self] = ACTIONS(1328), + [anon_sym_parent] = ACTIONS(1328), + [anon_sym_POUND_LBRACK] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [aux_sym_encapsed_string_token1] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [aux_sym_string_token1] = ACTIONS(1326), + [anon_sym_LT_LT_LT] = ACTIONS(1326), + [anon_sym_BQUOTE] = ACTIONS(1326), + [sym_boolean] = ACTIONS(1328), + [sym_null] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1326), + [aux_sym_yield_expression_token1] = ACTIONS(1328), + [aux_sym_include_expression_token1] = ACTIONS(1328), + [aux_sym_include_once_expression_token1] = ACTIONS(1328), + [aux_sym_require_expression_token1] = ACTIONS(1328), + [aux_sym_require_once_expression_token1] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [518] = { + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_name] = ACTIONS(1332), + [anon_sym_QMARK_GT] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [aux_sym_function_static_declaration_token1] = ACTIONS(1332), + [aux_sym_global_declaration_token1] = ACTIONS(1332), + [aux_sym_namespace_definition_token1] = ACTIONS(1332), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1332), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1332), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1332), + [anon_sym_BSLASH] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [aux_sym_trait_declaration_token1] = ACTIONS(1332), + [aux_sym_interface_declaration_token1] = ACTIONS(1332), + [aux_sym_enum_declaration_token1] = ACTIONS(1332), + [aux_sym_enum_case_token1] = ACTIONS(1332), + [aux_sym_class_declaration_token1] = ACTIONS(1332), + [aux_sym_final_modifier_token1] = ACTIONS(1332), + [aux_sym_abstract_modifier_token1] = ACTIONS(1332), + [aux_sym_readonly_modifier_token1] = ACTIONS(1332), + [aux_sym_visibility_modifier_token1] = ACTIONS(1332), + [aux_sym_visibility_modifier_token2] = ACTIONS(1332), + [aux_sym_visibility_modifier_token3] = ACTIONS(1332), + [aux_sym__arrow_function_header_token1] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1330), + [aux_sym_cast_type_token1] = ACTIONS(1332), + [aux_sym_echo_statement_token1] = ACTIONS(1332), + [anon_sym_unset] = ACTIONS(1332), + [aux_sym_declare_statement_token1] = ACTIONS(1332), + [aux_sym_declare_statement_token2] = ACTIONS(1332), + [sym_float] = ACTIONS(1332), + [aux_sym_try_statement_token1] = ACTIONS(1332), + [aux_sym_goto_statement_token1] = ACTIONS(1332), + [aux_sym_continue_statement_token1] = ACTIONS(1332), + [aux_sym_break_statement_token1] = ACTIONS(1332), + [sym_integer] = ACTIONS(1332), + [aux_sym_return_statement_token1] = ACTIONS(1332), + [aux_sym_throw_expression_token1] = ACTIONS(1332), + [aux_sym_while_statement_token1] = ACTIONS(1332), + [aux_sym_while_statement_token2] = ACTIONS(1332), + [aux_sym_do_statement_token1] = ACTIONS(1332), + [aux_sym_for_statement_token1] = ACTIONS(1332), + [aux_sym_for_statement_token2] = ACTIONS(1332), + [aux_sym_foreach_statement_token1] = ACTIONS(1332), + [aux_sym_foreach_statement_token2] = ACTIONS(1332), + [aux_sym_if_statement_token1] = ACTIONS(1332), + [aux_sym_if_statement_token2] = ACTIONS(1332), + [aux_sym_else_if_clause_token1] = ACTIONS(1332), + [aux_sym_else_clause_token1] = ACTIONS(1332), + [aux_sym_match_expression_token1] = ACTIONS(1332), + [aux_sym_match_default_expression_token1] = ACTIONS(1332), + [aux_sym_switch_statement_token1] = ACTIONS(1332), + [aux_sym_switch_block_token1] = ACTIONS(1332), + [anon_sym_AT] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [aux_sym_clone_expression_token1] = ACTIONS(1332), + [aux_sym_print_intrinsic_token1] = ACTIONS(1332), + [aux_sym_object_creation_expression_token1] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [aux_sym__list_destructing_token1] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_self] = ACTIONS(1332), + [anon_sym_parent] = ACTIONS(1332), + [anon_sym_POUND_LBRACK] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [aux_sym_encapsed_string_token1] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [aux_sym_string_token1] = ACTIONS(1330), + [anon_sym_LT_LT_LT] = ACTIONS(1330), + [anon_sym_BQUOTE] = ACTIONS(1330), + [sym_boolean] = ACTIONS(1332), + [sym_null] = ACTIONS(1332), + [anon_sym_DOLLAR] = ACTIONS(1330), + [aux_sym_yield_expression_token1] = ACTIONS(1332), + [aux_sym_include_expression_token1] = ACTIONS(1332), + [aux_sym_include_once_expression_token1] = ACTIONS(1332), + [aux_sym_require_expression_token1] = ACTIONS(1332), + [aux_sym_require_once_expression_token1] = ACTIONS(1332), + [sym_comment] = ACTIONS(3), + }, + [519] = { + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_name] = ACTIONS(1336), + [anon_sym_QMARK_GT] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [aux_sym_function_static_declaration_token1] = ACTIONS(1336), + [aux_sym_global_declaration_token1] = ACTIONS(1336), + [aux_sym_namespace_definition_token1] = ACTIONS(1336), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1336), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1336), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1336), + [anon_sym_BSLASH] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [aux_sym_trait_declaration_token1] = ACTIONS(1336), + [aux_sym_interface_declaration_token1] = ACTIONS(1336), + [aux_sym_enum_declaration_token1] = ACTIONS(1336), + [aux_sym_enum_case_token1] = ACTIONS(1336), + [aux_sym_class_declaration_token1] = ACTIONS(1336), + [aux_sym_final_modifier_token1] = ACTIONS(1336), + [aux_sym_abstract_modifier_token1] = ACTIONS(1336), + [aux_sym_readonly_modifier_token1] = ACTIONS(1336), + [aux_sym_visibility_modifier_token1] = ACTIONS(1336), + [aux_sym_visibility_modifier_token2] = ACTIONS(1336), + [aux_sym_visibility_modifier_token3] = ACTIONS(1336), + [aux_sym__arrow_function_header_token1] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1334), + [aux_sym_cast_type_token1] = ACTIONS(1336), + [aux_sym_echo_statement_token1] = ACTIONS(1336), + [anon_sym_unset] = ACTIONS(1336), + [aux_sym_declare_statement_token1] = ACTIONS(1336), + [aux_sym_declare_statement_token2] = ACTIONS(1336), + [sym_float] = ACTIONS(1336), + [aux_sym_try_statement_token1] = ACTIONS(1336), + [aux_sym_goto_statement_token1] = ACTIONS(1336), + [aux_sym_continue_statement_token1] = ACTIONS(1336), + [aux_sym_break_statement_token1] = ACTIONS(1336), + [sym_integer] = ACTIONS(1336), + [aux_sym_return_statement_token1] = ACTIONS(1336), + [aux_sym_throw_expression_token1] = ACTIONS(1336), + [aux_sym_while_statement_token1] = ACTIONS(1336), + [aux_sym_while_statement_token2] = ACTIONS(1336), + [aux_sym_do_statement_token1] = ACTIONS(1336), + [aux_sym_for_statement_token1] = ACTIONS(1336), + [aux_sym_for_statement_token2] = ACTIONS(1336), + [aux_sym_foreach_statement_token1] = ACTIONS(1336), + [aux_sym_foreach_statement_token2] = ACTIONS(1336), + [aux_sym_if_statement_token1] = ACTIONS(1336), + [aux_sym_if_statement_token2] = ACTIONS(1336), + [aux_sym_else_if_clause_token1] = ACTIONS(1336), + [aux_sym_else_clause_token1] = ACTIONS(1336), + [aux_sym_match_expression_token1] = ACTIONS(1336), + [aux_sym_match_default_expression_token1] = ACTIONS(1336), + [aux_sym_switch_statement_token1] = ACTIONS(1336), + [aux_sym_switch_block_token1] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [aux_sym_clone_expression_token1] = ACTIONS(1336), + [aux_sym_print_intrinsic_token1] = ACTIONS(1336), + [aux_sym_object_creation_expression_token1] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [aux_sym__list_destructing_token1] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_self] = ACTIONS(1336), + [anon_sym_parent] = ACTIONS(1336), + [anon_sym_POUND_LBRACK] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [aux_sym_encapsed_string_token1] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [aux_sym_string_token1] = ACTIONS(1334), + [anon_sym_LT_LT_LT] = ACTIONS(1334), + [anon_sym_BQUOTE] = ACTIONS(1334), + [sym_boolean] = ACTIONS(1336), + [sym_null] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1334), + [aux_sym_yield_expression_token1] = ACTIONS(1336), + [aux_sym_include_expression_token1] = ACTIONS(1336), + [aux_sym_include_once_expression_token1] = ACTIONS(1336), + [aux_sym_require_expression_token1] = ACTIONS(1336), + [aux_sym_require_once_expression_token1] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + }, + [520] = { + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_name] = ACTIONS(1340), + [anon_sym_QMARK_GT] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [aux_sym_function_static_declaration_token1] = ACTIONS(1340), + [aux_sym_global_declaration_token1] = ACTIONS(1340), + [aux_sym_namespace_definition_token1] = ACTIONS(1340), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1340), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1340), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1340), + [anon_sym_BSLASH] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [aux_sym_trait_declaration_token1] = ACTIONS(1340), + [aux_sym_interface_declaration_token1] = ACTIONS(1340), + [aux_sym_enum_declaration_token1] = ACTIONS(1340), + [aux_sym_enum_case_token1] = ACTIONS(1340), + [aux_sym_class_declaration_token1] = ACTIONS(1340), + [aux_sym_final_modifier_token1] = ACTIONS(1340), + [aux_sym_abstract_modifier_token1] = ACTIONS(1340), + [aux_sym_readonly_modifier_token1] = ACTIONS(1340), + [aux_sym_visibility_modifier_token1] = ACTIONS(1340), + [aux_sym_visibility_modifier_token2] = ACTIONS(1340), + [aux_sym_visibility_modifier_token3] = ACTIONS(1340), + [aux_sym__arrow_function_header_token1] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1338), + [aux_sym_cast_type_token1] = ACTIONS(1340), + [aux_sym_echo_statement_token1] = ACTIONS(1340), + [anon_sym_unset] = ACTIONS(1340), + [aux_sym_declare_statement_token1] = ACTIONS(1340), + [aux_sym_declare_statement_token2] = ACTIONS(1340), + [sym_float] = ACTIONS(1340), + [aux_sym_try_statement_token1] = ACTIONS(1340), + [aux_sym_goto_statement_token1] = ACTIONS(1340), + [aux_sym_continue_statement_token1] = ACTIONS(1340), + [aux_sym_break_statement_token1] = ACTIONS(1340), + [sym_integer] = ACTIONS(1340), + [aux_sym_return_statement_token1] = ACTIONS(1340), + [aux_sym_throw_expression_token1] = ACTIONS(1340), + [aux_sym_while_statement_token1] = ACTIONS(1340), + [aux_sym_while_statement_token2] = ACTIONS(1340), + [aux_sym_do_statement_token1] = ACTIONS(1340), + [aux_sym_for_statement_token1] = ACTIONS(1340), + [aux_sym_for_statement_token2] = ACTIONS(1340), + [aux_sym_foreach_statement_token1] = ACTIONS(1340), + [aux_sym_foreach_statement_token2] = ACTIONS(1340), + [aux_sym_if_statement_token1] = ACTIONS(1340), + [aux_sym_if_statement_token2] = ACTIONS(1340), + [aux_sym_else_if_clause_token1] = ACTIONS(1340), + [aux_sym_else_clause_token1] = ACTIONS(1340), + [aux_sym_match_expression_token1] = ACTIONS(1340), + [aux_sym_match_default_expression_token1] = ACTIONS(1340), + [aux_sym_switch_statement_token1] = ACTIONS(1340), + [aux_sym_switch_block_token1] = ACTIONS(1340), + [anon_sym_AT] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [aux_sym_clone_expression_token1] = ACTIONS(1340), + [aux_sym_print_intrinsic_token1] = ACTIONS(1340), + [aux_sym_object_creation_expression_token1] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [aux_sym__list_destructing_token1] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_self] = ACTIONS(1340), + [anon_sym_parent] = ACTIONS(1340), + [anon_sym_POUND_LBRACK] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [aux_sym_encapsed_string_token1] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [aux_sym_string_token1] = ACTIONS(1338), + [anon_sym_LT_LT_LT] = ACTIONS(1338), + [anon_sym_BQUOTE] = ACTIONS(1338), + [sym_boolean] = ACTIONS(1340), + [sym_null] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1338), + [aux_sym_yield_expression_token1] = ACTIONS(1340), + [aux_sym_include_expression_token1] = ACTIONS(1340), + [aux_sym_include_once_expression_token1] = ACTIONS(1340), + [aux_sym_require_expression_token1] = ACTIONS(1340), + [aux_sym_require_once_expression_token1] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + }, + [521] = { + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_name] = ACTIONS(1344), + [anon_sym_QMARK_GT] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [aux_sym_function_static_declaration_token1] = ACTIONS(1344), + [aux_sym_global_declaration_token1] = ACTIONS(1344), + [aux_sym_namespace_definition_token1] = ACTIONS(1344), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1344), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1344), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1344), + [anon_sym_BSLASH] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [aux_sym_trait_declaration_token1] = ACTIONS(1344), + [aux_sym_interface_declaration_token1] = ACTIONS(1344), + [aux_sym_enum_declaration_token1] = ACTIONS(1344), + [aux_sym_enum_case_token1] = ACTIONS(1344), + [aux_sym_class_declaration_token1] = ACTIONS(1344), + [aux_sym_final_modifier_token1] = ACTIONS(1344), + [aux_sym_abstract_modifier_token1] = ACTIONS(1344), + [aux_sym_readonly_modifier_token1] = ACTIONS(1344), + [aux_sym_visibility_modifier_token1] = ACTIONS(1344), + [aux_sym_visibility_modifier_token2] = ACTIONS(1344), + [aux_sym_visibility_modifier_token3] = ACTIONS(1344), + [aux_sym__arrow_function_header_token1] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1342), + [aux_sym_cast_type_token1] = ACTIONS(1344), + [aux_sym_echo_statement_token1] = ACTIONS(1344), + [anon_sym_unset] = ACTIONS(1344), + [aux_sym_declare_statement_token1] = ACTIONS(1344), + [aux_sym_declare_statement_token2] = ACTIONS(1344), + [sym_float] = ACTIONS(1344), + [aux_sym_try_statement_token1] = ACTIONS(1344), + [aux_sym_goto_statement_token1] = ACTIONS(1344), + [aux_sym_continue_statement_token1] = ACTIONS(1344), + [aux_sym_break_statement_token1] = ACTIONS(1344), + [sym_integer] = ACTIONS(1344), + [aux_sym_return_statement_token1] = ACTIONS(1344), + [aux_sym_throw_expression_token1] = ACTIONS(1344), + [aux_sym_while_statement_token1] = ACTIONS(1344), + [aux_sym_while_statement_token2] = ACTIONS(1344), + [aux_sym_do_statement_token1] = ACTIONS(1344), + [aux_sym_for_statement_token1] = ACTIONS(1344), + [aux_sym_for_statement_token2] = ACTIONS(1344), + [aux_sym_foreach_statement_token1] = ACTIONS(1344), + [aux_sym_foreach_statement_token2] = ACTIONS(1344), + [aux_sym_if_statement_token1] = ACTIONS(1344), + [aux_sym_if_statement_token2] = ACTIONS(1344), + [aux_sym_else_if_clause_token1] = ACTIONS(1344), + [aux_sym_else_clause_token1] = ACTIONS(1344), + [aux_sym_match_expression_token1] = ACTIONS(1344), + [aux_sym_match_default_expression_token1] = ACTIONS(1344), + [aux_sym_switch_statement_token1] = ACTIONS(1344), + [aux_sym_switch_block_token1] = ACTIONS(1344), + [anon_sym_AT] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [aux_sym_clone_expression_token1] = ACTIONS(1344), + [aux_sym_print_intrinsic_token1] = ACTIONS(1344), + [aux_sym_object_creation_expression_token1] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [aux_sym__list_destructing_token1] = ACTIONS(1344), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_self] = ACTIONS(1344), + [anon_sym_parent] = ACTIONS(1344), + [anon_sym_POUND_LBRACK] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [aux_sym_encapsed_string_token1] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1342), + [anon_sym_LT_LT_LT] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [sym_boolean] = ACTIONS(1344), + [sym_null] = ACTIONS(1344), + [anon_sym_DOLLAR] = ACTIONS(1342), + [aux_sym_yield_expression_token1] = ACTIONS(1344), + [aux_sym_include_expression_token1] = ACTIONS(1344), + [aux_sym_include_once_expression_token1] = ACTIONS(1344), + [aux_sym_require_expression_token1] = ACTIONS(1344), + [aux_sym_require_once_expression_token1] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + }, + [522] = { + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_name] = ACTIONS(1348), + [anon_sym_QMARK_GT] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [aux_sym_function_static_declaration_token1] = ACTIONS(1348), + [aux_sym_global_declaration_token1] = ACTIONS(1348), + [aux_sym_namespace_definition_token1] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [aux_sym_trait_declaration_token1] = ACTIONS(1348), + [aux_sym_interface_declaration_token1] = ACTIONS(1348), + [aux_sym_enum_declaration_token1] = ACTIONS(1348), + [aux_sym_enum_case_token1] = ACTIONS(1348), + [aux_sym_class_declaration_token1] = ACTIONS(1348), + [aux_sym_final_modifier_token1] = ACTIONS(1348), + [aux_sym_abstract_modifier_token1] = ACTIONS(1348), + [aux_sym_readonly_modifier_token1] = ACTIONS(1348), + [aux_sym_visibility_modifier_token1] = ACTIONS(1348), + [aux_sym_visibility_modifier_token2] = ACTIONS(1348), + [aux_sym_visibility_modifier_token3] = ACTIONS(1348), + [aux_sym__arrow_function_header_token1] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1346), + [aux_sym_cast_type_token1] = ACTIONS(1348), + [aux_sym_echo_statement_token1] = ACTIONS(1348), + [anon_sym_unset] = ACTIONS(1348), + [aux_sym_declare_statement_token1] = ACTIONS(1348), + [aux_sym_declare_statement_token2] = ACTIONS(1348), + [sym_float] = ACTIONS(1348), + [aux_sym_try_statement_token1] = ACTIONS(1348), + [aux_sym_goto_statement_token1] = ACTIONS(1348), + [aux_sym_continue_statement_token1] = ACTIONS(1348), + [aux_sym_break_statement_token1] = ACTIONS(1348), + [sym_integer] = ACTIONS(1348), + [aux_sym_return_statement_token1] = ACTIONS(1348), + [aux_sym_throw_expression_token1] = ACTIONS(1348), + [aux_sym_while_statement_token1] = ACTIONS(1348), + [aux_sym_while_statement_token2] = ACTIONS(1348), + [aux_sym_do_statement_token1] = ACTIONS(1348), + [aux_sym_for_statement_token1] = ACTIONS(1348), + [aux_sym_for_statement_token2] = ACTIONS(1348), + [aux_sym_foreach_statement_token1] = ACTIONS(1348), + [aux_sym_foreach_statement_token2] = ACTIONS(1348), + [aux_sym_if_statement_token1] = ACTIONS(1348), + [aux_sym_if_statement_token2] = ACTIONS(1348), + [aux_sym_else_if_clause_token1] = ACTIONS(1348), + [aux_sym_else_clause_token1] = ACTIONS(1348), + [aux_sym_match_expression_token1] = ACTIONS(1348), + [aux_sym_match_default_expression_token1] = ACTIONS(1348), + [aux_sym_switch_statement_token1] = ACTIONS(1348), + [aux_sym_switch_block_token1] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [aux_sym_clone_expression_token1] = ACTIONS(1348), + [aux_sym_print_intrinsic_token1] = ACTIONS(1348), + [aux_sym_object_creation_expression_token1] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [aux_sym__list_destructing_token1] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1346), + [anon_sym_self] = ACTIONS(1348), + [anon_sym_parent] = ACTIONS(1348), + [anon_sym_POUND_LBRACK] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [aux_sym_encapsed_string_token1] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [aux_sym_string_token1] = ACTIONS(1346), + [anon_sym_LT_LT_LT] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [sym_boolean] = ACTIONS(1348), + [sym_null] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1346), + [aux_sym_yield_expression_token1] = ACTIONS(1348), + [aux_sym_include_expression_token1] = ACTIONS(1348), + [aux_sym_include_once_expression_token1] = ACTIONS(1348), + [aux_sym_require_expression_token1] = ACTIONS(1348), + [aux_sym_require_once_expression_token1] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + }, + [523] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_name] = ACTIONS(1352), + [anon_sym_QMARK_GT] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [aux_sym_function_static_declaration_token1] = ACTIONS(1352), + [aux_sym_global_declaration_token1] = ACTIONS(1352), + [aux_sym_namespace_definition_token1] = ACTIONS(1352), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1352), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1352), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1352), + [anon_sym_BSLASH] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [aux_sym_trait_declaration_token1] = ACTIONS(1352), + [aux_sym_interface_declaration_token1] = ACTIONS(1352), + [aux_sym_enum_declaration_token1] = ACTIONS(1352), + [aux_sym_enum_case_token1] = ACTIONS(1352), + [aux_sym_class_declaration_token1] = ACTIONS(1352), + [aux_sym_final_modifier_token1] = ACTIONS(1352), + [aux_sym_abstract_modifier_token1] = ACTIONS(1352), + [aux_sym_readonly_modifier_token1] = ACTIONS(1352), + [aux_sym_visibility_modifier_token1] = ACTIONS(1352), + [aux_sym_visibility_modifier_token2] = ACTIONS(1352), + [aux_sym_visibility_modifier_token3] = ACTIONS(1352), + [aux_sym__arrow_function_header_token1] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1350), + [aux_sym_cast_type_token1] = ACTIONS(1352), + [aux_sym_echo_statement_token1] = ACTIONS(1352), + [anon_sym_unset] = ACTIONS(1352), + [aux_sym_declare_statement_token1] = ACTIONS(1352), + [aux_sym_declare_statement_token2] = ACTIONS(1352), + [sym_float] = ACTIONS(1352), + [aux_sym_try_statement_token1] = ACTIONS(1352), + [aux_sym_goto_statement_token1] = ACTIONS(1352), + [aux_sym_continue_statement_token1] = ACTIONS(1352), + [aux_sym_break_statement_token1] = ACTIONS(1352), + [sym_integer] = ACTIONS(1352), + [aux_sym_return_statement_token1] = ACTIONS(1352), + [aux_sym_throw_expression_token1] = ACTIONS(1352), + [aux_sym_while_statement_token1] = ACTIONS(1352), + [aux_sym_while_statement_token2] = ACTIONS(1352), + [aux_sym_do_statement_token1] = ACTIONS(1352), + [aux_sym_for_statement_token1] = ACTIONS(1352), + [aux_sym_for_statement_token2] = ACTIONS(1352), + [aux_sym_foreach_statement_token1] = ACTIONS(1352), + [aux_sym_foreach_statement_token2] = ACTIONS(1352), + [aux_sym_if_statement_token1] = ACTIONS(1352), + [aux_sym_if_statement_token2] = ACTIONS(1352), + [aux_sym_else_if_clause_token1] = ACTIONS(1352), + [aux_sym_else_clause_token1] = ACTIONS(1352), + [aux_sym_match_expression_token1] = ACTIONS(1352), + [aux_sym_match_default_expression_token1] = ACTIONS(1352), + [aux_sym_switch_statement_token1] = ACTIONS(1352), + [aux_sym_switch_block_token1] = ACTIONS(1352), + [anon_sym_AT] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [aux_sym_clone_expression_token1] = ACTIONS(1352), + [aux_sym_print_intrinsic_token1] = ACTIONS(1352), + [aux_sym_object_creation_expression_token1] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [aux_sym__list_destructing_token1] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_self] = ACTIONS(1352), + [anon_sym_parent] = ACTIONS(1352), + [anon_sym_POUND_LBRACK] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [aux_sym_encapsed_string_token1] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [aux_sym_string_token1] = ACTIONS(1350), + [anon_sym_LT_LT_LT] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [sym_boolean] = ACTIONS(1352), + [sym_null] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1350), + [aux_sym_yield_expression_token1] = ACTIONS(1352), + [aux_sym_include_expression_token1] = ACTIONS(1352), + [aux_sym_include_once_expression_token1] = ACTIONS(1352), + [aux_sym_require_expression_token1] = ACTIONS(1352), + [aux_sym_require_once_expression_token1] = ACTIONS(1352), + [sym_comment] = ACTIONS(3), + }, + [524] = { + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_name] = ACTIONS(1356), + [anon_sym_QMARK_GT] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [aux_sym_function_static_declaration_token1] = ACTIONS(1356), + [aux_sym_global_declaration_token1] = ACTIONS(1356), + [aux_sym_namespace_definition_token1] = ACTIONS(1356), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1356), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1356), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [aux_sym_trait_declaration_token1] = ACTIONS(1356), + [aux_sym_interface_declaration_token1] = ACTIONS(1356), + [aux_sym_enum_declaration_token1] = ACTIONS(1356), + [aux_sym_enum_case_token1] = ACTIONS(1356), + [aux_sym_class_declaration_token1] = ACTIONS(1356), + [aux_sym_final_modifier_token1] = ACTIONS(1356), + [aux_sym_abstract_modifier_token1] = ACTIONS(1356), + [aux_sym_readonly_modifier_token1] = ACTIONS(1356), + [aux_sym_visibility_modifier_token1] = ACTIONS(1356), + [aux_sym_visibility_modifier_token2] = ACTIONS(1356), + [aux_sym_visibility_modifier_token3] = ACTIONS(1356), + [aux_sym__arrow_function_header_token1] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [aux_sym_cast_type_token1] = ACTIONS(1356), + [aux_sym_echo_statement_token1] = ACTIONS(1356), + [anon_sym_unset] = ACTIONS(1356), + [aux_sym_declare_statement_token1] = ACTIONS(1356), + [aux_sym_declare_statement_token2] = ACTIONS(1356), + [sym_float] = ACTIONS(1356), + [aux_sym_try_statement_token1] = ACTIONS(1356), + [aux_sym_goto_statement_token1] = ACTIONS(1356), + [aux_sym_continue_statement_token1] = ACTIONS(1356), + [aux_sym_break_statement_token1] = ACTIONS(1356), + [sym_integer] = ACTIONS(1356), + [aux_sym_return_statement_token1] = ACTIONS(1356), + [aux_sym_throw_expression_token1] = ACTIONS(1356), + [aux_sym_while_statement_token1] = ACTIONS(1356), + [aux_sym_while_statement_token2] = ACTIONS(1356), + [aux_sym_do_statement_token1] = ACTIONS(1356), + [aux_sym_for_statement_token1] = ACTIONS(1356), + [aux_sym_for_statement_token2] = ACTIONS(1356), + [aux_sym_foreach_statement_token1] = ACTIONS(1356), + [aux_sym_foreach_statement_token2] = ACTIONS(1356), + [aux_sym_if_statement_token1] = ACTIONS(1356), + [aux_sym_if_statement_token2] = ACTIONS(1356), + [aux_sym_else_if_clause_token1] = ACTIONS(1356), + [aux_sym_else_clause_token1] = ACTIONS(1356), + [aux_sym_match_expression_token1] = ACTIONS(1356), + [aux_sym_match_default_expression_token1] = ACTIONS(1356), + [aux_sym_switch_statement_token1] = ACTIONS(1356), + [aux_sym_switch_block_token1] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [aux_sym_clone_expression_token1] = ACTIONS(1356), + [aux_sym_print_intrinsic_token1] = ACTIONS(1356), + [aux_sym_object_creation_expression_token1] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [aux_sym__list_destructing_token1] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_self] = ACTIONS(1356), + [anon_sym_parent] = ACTIONS(1356), + [anon_sym_POUND_LBRACK] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [aux_sym_encapsed_string_token1] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [aux_sym_string_token1] = ACTIONS(1354), + [anon_sym_LT_LT_LT] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [sym_boolean] = ACTIONS(1356), + [sym_null] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1354), + [aux_sym_yield_expression_token1] = ACTIONS(1356), + [aux_sym_include_expression_token1] = ACTIONS(1356), + [aux_sym_include_once_expression_token1] = ACTIONS(1356), + [aux_sym_require_expression_token1] = ACTIONS(1356), + [aux_sym_require_once_expression_token1] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + }, + [525] = { + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_name] = ACTIONS(1360), + [anon_sym_QMARK_GT] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [aux_sym_function_static_declaration_token1] = ACTIONS(1360), + [aux_sym_global_declaration_token1] = ACTIONS(1360), + [aux_sym_namespace_definition_token1] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [aux_sym_trait_declaration_token1] = ACTIONS(1360), + [aux_sym_interface_declaration_token1] = ACTIONS(1360), + [aux_sym_enum_declaration_token1] = ACTIONS(1360), + [aux_sym_enum_case_token1] = ACTIONS(1360), + [aux_sym_class_declaration_token1] = ACTIONS(1360), + [aux_sym_final_modifier_token1] = ACTIONS(1360), + [aux_sym_abstract_modifier_token1] = ACTIONS(1360), + [aux_sym_readonly_modifier_token1] = ACTIONS(1360), + [aux_sym_visibility_modifier_token1] = ACTIONS(1360), + [aux_sym_visibility_modifier_token2] = ACTIONS(1360), + [aux_sym_visibility_modifier_token3] = ACTIONS(1360), + [aux_sym__arrow_function_header_token1] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1358), + [aux_sym_cast_type_token1] = ACTIONS(1360), + [aux_sym_echo_statement_token1] = ACTIONS(1360), + [anon_sym_unset] = ACTIONS(1360), + [aux_sym_declare_statement_token1] = ACTIONS(1360), + [aux_sym_declare_statement_token2] = ACTIONS(1360), + [sym_float] = ACTIONS(1360), + [aux_sym_try_statement_token1] = ACTIONS(1360), + [aux_sym_goto_statement_token1] = ACTIONS(1360), + [aux_sym_continue_statement_token1] = ACTIONS(1360), + [aux_sym_break_statement_token1] = ACTIONS(1360), + [sym_integer] = ACTIONS(1360), + [aux_sym_return_statement_token1] = ACTIONS(1360), + [aux_sym_throw_expression_token1] = ACTIONS(1360), + [aux_sym_while_statement_token1] = ACTIONS(1360), + [aux_sym_while_statement_token2] = ACTIONS(1360), + [aux_sym_do_statement_token1] = ACTIONS(1360), + [aux_sym_for_statement_token1] = ACTIONS(1360), + [aux_sym_for_statement_token2] = ACTIONS(1360), + [aux_sym_foreach_statement_token1] = ACTIONS(1360), + [aux_sym_foreach_statement_token2] = ACTIONS(1360), + [aux_sym_if_statement_token1] = ACTIONS(1360), + [aux_sym_if_statement_token2] = ACTIONS(1360), + [aux_sym_else_if_clause_token1] = ACTIONS(1360), + [aux_sym_else_clause_token1] = ACTIONS(1360), + [aux_sym_match_expression_token1] = ACTIONS(1360), + [aux_sym_match_default_expression_token1] = ACTIONS(1360), + [aux_sym_switch_statement_token1] = ACTIONS(1360), + [aux_sym_switch_block_token1] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [aux_sym_clone_expression_token1] = ACTIONS(1360), + [aux_sym_print_intrinsic_token1] = ACTIONS(1360), + [aux_sym_object_creation_expression_token1] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [aux_sym__list_destructing_token1] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_self] = ACTIONS(1360), + [anon_sym_parent] = ACTIONS(1360), + [anon_sym_POUND_LBRACK] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [aux_sym_encapsed_string_token1] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [aux_sym_string_token1] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_boolean] = ACTIONS(1360), + [sym_null] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1358), + [aux_sym_yield_expression_token1] = ACTIONS(1360), + [aux_sym_include_expression_token1] = ACTIONS(1360), + [aux_sym_include_once_expression_token1] = ACTIONS(1360), + [aux_sym_require_expression_token1] = ACTIONS(1360), + [aux_sym_require_once_expression_token1] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + }, + [526] = { + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_name] = ACTIONS(1360), + [anon_sym_QMARK_GT] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [aux_sym_function_static_declaration_token1] = ACTIONS(1360), + [aux_sym_global_declaration_token1] = ACTIONS(1360), + [aux_sym_namespace_definition_token1] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [aux_sym_trait_declaration_token1] = ACTIONS(1360), + [aux_sym_interface_declaration_token1] = ACTIONS(1360), + [aux_sym_enum_declaration_token1] = ACTIONS(1360), + [aux_sym_enum_case_token1] = ACTIONS(1360), + [aux_sym_class_declaration_token1] = ACTIONS(1360), + [aux_sym_final_modifier_token1] = ACTIONS(1360), + [aux_sym_abstract_modifier_token1] = ACTIONS(1360), + [aux_sym_readonly_modifier_token1] = ACTIONS(1360), + [aux_sym_visibility_modifier_token1] = ACTIONS(1360), + [aux_sym_visibility_modifier_token2] = ACTIONS(1360), + [aux_sym_visibility_modifier_token3] = ACTIONS(1360), + [aux_sym__arrow_function_header_token1] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1358), + [aux_sym_cast_type_token1] = ACTIONS(1360), + [aux_sym_echo_statement_token1] = ACTIONS(1360), + [anon_sym_unset] = ACTIONS(1360), + [aux_sym_declare_statement_token1] = ACTIONS(1360), + [aux_sym_declare_statement_token2] = ACTIONS(1360), + [sym_float] = ACTIONS(1360), + [aux_sym_try_statement_token1] = ACTIONS(1360), + [aux_sym_goto_statement_token1] = ACTIONS(1360), + [aux_sym_continue_statement_token1] = ACTIONS(1360), + [aux_sym_break_statement_token1] = ACTIONS(1360), + [sym_integer] = ACTIONS(1360), + [aux_sym_return_statement_token1] = ACTIONS(1360), + [aux_sym_throw_expression_token1] = ACTIONS(1360), + [aux_sym_while_statement_token1] = ACTIONS(1360), + [aux_sym_while_statement_token2] = ACTIONS(1360), + [aux_sym_do_statement_token1] = ACTIONS(1360), + [aux_sym_for_statement_token1] = ACTIONS(1360), + [aux_sym_for_statement_token2] = ACTIONS(1360), + [aux_sym_foreach_statement_token1] = ACTIONS(1360), + [aux_sym_foreach_statement_token2] = ACTIONS(1360), + [aux_sym_if_statement_token1] = ACTIONS(1360), + [aux_sym_if_statement_token2] = ACTIONS(1360), + [aux_sym_else_if_clause_token1] = ACTIONS(1360), + [aux_sym_else_clause_token1] = ACTIONS(1360), + [aux_sym_match_expression_token1] = ACTIONS(1360), + [aux_sym_match_default_expression_token1] = ACTIONS(1360), + [aux_sym_switch_statement_token1] = ACTIONS(1360), + [aux_sym_switch_block_token1] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [aux_sym_clone_expression_token1] = ACTIONS(1360), + [aux_sym_print_intrinsic_token1] = ACTIONS(1360), + [aux_sym_object_creation_expression_token1] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [aux_sym__list_destructing_token1] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_self] = ACTIONS(1360), + [anon_sym_parent] = ACTIONS(1360), + [anon_sym_POUND_LBRACK] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [aux_sym_encapsed_string_token1] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [aux_sym_string_token1] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_boolean] = ACTIONS(1360), + [sym_null] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1358), + [aux_sym_yield_expression_token1] = ACTIONS(1360), + [aux_sym_include_expression_token1] = ACTIONS(1360), + [aux_sym_include_once_expression_token1] = ACTIONS(1360), + [aux_sym_require_expression_token1] = ACTIONS(1360), + [aux_sym_require_once_expression_token1] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + }, + [527] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_name] = ACTIONS(1364), + [anon_sym_QMARK_GT] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [aux_sym_function_static_declaration_token1] = ACTIONS(1364), + [aux_sym_global_declaration_token1] = ACTIONS(1364), + [aux_sym_namespace_definition_token1] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1364), + [anon_sym_BSLASH] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [aux_sym_trait_declaration_token1] = ACTIONS(1364), + [aux_sym_interface_declaration_token1] = ACTIONS(1364), + [aux_sym_enum_declaration_token1] = ACTIONS(1364), + [aux_sym_enum_case_token1] = ACTIONS(1364), + [aux_sym_class_declaration_token1] = ACTIONS(1364), + [aux_sym_final_modifier_token1] = ACTIONS(1364), + [aux_sym_abstract_modifier_token1] = ACTIONS(1364), + [aux_sym_readonly_modifier_token1] = ACTIONS(1364), + [aux_sym_visibility_modifier_token1] = ACTIONS(1364), + [aux_sym_visibility_modifier_token2] = ACTIONS(1364), + [aux_sym_visibility_modifier_token3] = ACTIONS(1364), + [aux_sym__arrow_function_header_token1] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1362), + [aux_sym_cast_type_token1] = ACTIONS(1364), + [aux_sym_echo_statement_token1] = ACTIONS(1364), + [anon_sym_unset] = ACTIONS(1364), + [aux_sym_declare_statement_token1] = ACTIONS(1364), + [aux_sym_declare_statement_token2] = ACTIONS(1364), + [sym_float] = ACTIONS(1364), + [aux_sym_try_statement_token1] = ACTIONS(1364), + [aux_sym_goto_statement_token1] = ACTIONS(1364), + [aux_sym_continue_statement_token1] = ACTIONS(1364), + [aux_sym_break_statement_token1] = ACTIONS(1364), + [sym_integer] = ACTIONS(1364), + [aux_sym_return_statement_token1] = ACTIONS(1364), + [aux_sym_throw_expression_token1] = ACTIONS(1364), + [aux_sym_while_statement_token1] = ACTIONS(1364), + [aux_sym_while_statement_token2] = ACTIONS(1364), + [aux_sym_do_statement_token1] = ACTIONS(1364), + [aux_sym_for_statement_token1] = ACTIONS(1364), + [aux_sym_for_statement_token2] = ACTIONS(1364), + [aux_sym_foreach_statement_token1] = ACTIONS(1364), + [aux_sym_foreach_statement_token2] = ACTIONS(1364), + [aux_sym_if_statement_token1] = ACTIONS(1364), + [aux_sym_if_statement_token2] = ACTIONS(1364), + [aux_sym_else_if_clause_token1] = ACTIONS(1364), + [aux_sym_else_clause_token1] = ACTIONS(1364), + [aux_sym_match_expression_token1] = ACTIONS(1364), + [aux_sym_match_default_expression_token1] = ACTIONS(1364), + [aux_sym_switch_statement_token1] = ACTIONS(1364), + [aux_sym_switch_block_token1] = ACTIONS(1364), + [anon_sym_AT] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [aux_sym_clone_expression_token1] = ACTIONS(1364), + [aux_sym_print_intrinsic_token1] = ACTIONS(1364), + [aux_sym_object_creation_expression_token1] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [aux_sym__list_destructing_token1] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_self] = ACTIONS(1364), + [anon_sym_parent] = ACTIONS(1364), + [anon_sym_POUND_LBRACK] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [aux_sym_encapsed_string_token1] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [aux_sym_string_token1] = ACTIONS(1362), + [anon_sym_LT_LT_LT] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [sym_boolean] = ACTIONS(1364), + [sym_null] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1362), + [aux_sym_yield_expression_token1] = ACTIONS(1364), + [aux_sym_include_expression_token1] = ACTIONS(1364), + [aux_sym_include_once_expression_token1] = ACTIONS(1364), + [aux_sym_require_expression_token1] = ACTIONS(1364), + [aux_sym_require_once_expression_token1] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + }, + [528] = { + [ts_builtin_sym_end] = ACTIONS(1366), + [sym_name] = ACTIONS(1368), + [anon_sym_QMARK_GT] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [aux_sym_function_static_declaration_token1] = ACTIONS(1368), + [aux_sym_global_declaration_token1] = ACTIONS(1368), + [aux_sym_namespace_definition_token1] = ACTIONS(1368), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1368), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1368), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1368), + [anon_sym_BSLASH] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [aux_sym_trait_declaration_token1] = ACTIONS(1368), + [aux_sym_interface_declaration_token1] = ACTIONS(1368), + [aux_sym_enum_declaration_token1] = ACTIONS(1368), + [aux_sym_enum_case_token1] = ACTIONS(1368), + [aux_sym_class_declaration_token1] = ACTIONS(1368), + [aux_sym_final_modifier_token1] = ACTIONS(1368), + [aux_sym_abstract_modifier_token1] = ACTIONS(1368), + [aux_sym_readonly_modifier_token1] = ACTIONS(1368), + [aux_sym_visibility_modifier_token1] = ACTIONS(1368), + [aux_sym_visibility_modifier_token2] = ACTIONS(1368), + [aux_sym_visibility_modifier_token3] = ACTIONS(1368), + [aux_sym__arrow_function_header_token1] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1366), + [aux_sym_cast_type_token1] = ACTIONS(1368), + [aux_sym_echo_statement_token1] = ACTIONS(1368), + [anon_sym_unset] = ACTIONS(1368), + [aux_sym_declare_statement_token1] = ACTIONS(1368), + [aux_sym_declare_statement_token2] = ACTIONS(1368), + [sym_float] = ACTIONS(1368), + [aux_sym_try_statement_token1] = ACTIONS(1368), + [aux_sym_goto_statement_token1] = ACTIONS(1368), + [aux_sym_continue_statement_token1] = ACTIONS(1368), + [aux_sym_break_statement_token1] = ACTIONS(1368), + [sym_integer] = ACTIONS(1368), + [aux_sym_return_statement_token1] = ACTIONS(1368), + [aux_sym_throw_expression_token1] = ACTIONS(1368), + [aux_sym_while_statement_token1] = ACTIONS(1368), + [aux_sym_while_statement_token2] = ACTIONS(1368), + [aux_sym_do_statement_token1] = ACTIONS(1368), + [aux_sym_for_statement_token1] = ACTIONS(1368), + [aux_sym_for_statement_token2] = ACTIONS(1368), + [aux_sym_foreach_statement_token1] = ACTIONS(1368), + [aux_sym_foreach_statement_token2] = ACTIONS(1368), + [aux_sym_if_statement_token1] = ACTIONS(1368), + [aux_sym_if_statement_token2] = ACTIONS(1368), + [aux_sym_else_if_clause_token1] = ACTIONS(1368), + [aux_sym_else_clause_token1] = ACTIONS(1368), + [aux_sym_match_expression_token1] = ACTIONS(1368), + [aux_sym_match_default_expression_token1] = ACTIONS(1368), + [aux_sym_switch_statement_token1] = ACTIONS(1368), + [aux_sym_switch_block_token1] = ACTIONS(1368), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [aux_sym_clone_expression_token1] = ACTIONS(1368), + [aux_sym_print_intrinsic_token1] = ACTIONS(1368), + [aux_sym_object_creation_expression_token1] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [aux_sym__list_destructing_token1] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_self] = ACTIONS(1368), + [anon_sym_parent] = ACTIONS(1368), + [anon_sym_POUND_LBRACK] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [aux_sym_encapsed_string_token1] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [aux_sym_string_token1] = ACTIONS(1366), + [anon_sym_LT_LT_LT] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [sym_boolean] = ACTIONS(1368), + [sym_null] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1366), + [aux_sym_yield_expression_token1] = ACTIONS(1368), + [aux_sym_include_expression_token1] = ACTIONS(1368), + [aux_sym_include_once_expression_token1] = ACTIONS(1368), + [aux_sym_require_expression_token1] = ACTIONS(1368), + [aux_sym_require_once_expression_token1] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + }, + [529] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_name] = ACTIONS(1372), + [anon_sym_QMARK_GT] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [aux_sym_function_static_declaration_token1] = ACTIONS(1372), + [aux_sym_global_declaration_token1] = ACTIONS(1372), + [aux_sym_namespace_definition_token1] = ACTIONS(1372), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1372), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1372), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1372), + [anon_sym_BSLASH] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [aux_sym_trait_declaration_token1] = ACTIONS(1372), + [aux_sym_interface_declaration_token1] = ACTIONS(1372), + [aux_sym_enum_declaration_token1] = ACTIONS(1372), + [aux_sym_enum_case_token1] = ACTIONS(1372), + [aux_sym_class_declaration_token1] = ACTIONS(1372), + [aux_sym_final_modifier_token1] = ACTIONS(1372), + [aux_sym_abstract_modifier_token1] = ACTIONS(1372), + [aux_sym_readonly_modifier_token1] = ACTIONS(1372), + [aux_sym_visibility_modifier_token1] = ACTIONS(1372), + [aux_sym_visibility_modifier_token2] = ACTIONS(1372), + [aux_sym_visibility_modifier_token3] = ACTIONS(1372), + [aux_sym__arrow_function_header_token1] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1370), + [aux_sym_cast_type_token1] = ACTIONS(1372), + [aux_sym_echo_statement_token1] = ACTIONS(1372), + [anon_sym_unset] = ACTIONS(1372), + [aux_sym_declare_statement_token1] = ACTIONS(1372), + [aux_sym_declare_statement_token2] = ACTIONS(1372), + [sym_float] = ACTIONS(1372), + [aux_sym_try_statement_token1] = ACTIONS(1372), + [aux_sym_goto_statement_token1] = ACTIONS(1372), + [aux_sym_continue_statement_token1] = ACTIONS(1372), + [aux_sym_break_statement_token1] = ACTIONS(1372), + [sym_integer] = ACTIONS(1372), + [aux_sym_return_statement_token1] = ACTIONS(1372), + [aux_sym_throw_expression_token1] = ACTIONS(1372), + [aux_sym_while_statement_token1] = ACTIONS(1372), + [aux_sym_while_statement_token2] = ACTIONS(1372), + [aux_sym_do_statement_token1] = ACTIONS(1372), + [aux_sym_for_statement_token1] = ACTIONS(1372), + [aux_sym_for_statement_token2] = ACTIONS(1372), + [aux_sym_foreach_statement_token1] = ACTIONS(1372), + [aux_sym_foreach_statement_token2] = ACTIONS(1372), + [aux_sym_if_statement_token1] = ACTIONS(1372), + [aux_sym_if_statement_token2] = ACTIONS(1372), + [aux_sym_else_if_clause_token1] = ACTIONS(1372), + [aux_sym_else_clause_token1] = ACTIONS(1372), + [aux_sym_match_expression_token1] = ACTIONS(1372), + [aux_sym_match_default_expression_token1] = ACTIONS(1372), + [aux_sym_switch_statement_token1] = ACTIONS(1372), + [aux_sym_switch_block_token1] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [aux_sym_clone_expression_token1] = ACTIONS(1372), + [aux_sym_print_intrinsic_token1] = ACTIONS(1372), + [aux_sym_object_creation_expression_token1] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [aux_sym__list_destructing_token1] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_self] = ACTIONS(1372), + [anon_sym_parent] = ACTIONS(1372), + [anon_sym_POUND_LBRACK] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [aux_sym_encapsed_string_token1] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [aux_sym_string_token1] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [sym_boolean] = ACTIONS(1372), + [sym_null] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1370), + [aux_sym_yield_expression_token1] = ACTIONS(1372), + [aux_sym_include_expression_token1] = ACTIONS(1372), + [aux_sym_include_once_expression_token1] = ACTIONS(1372), + [aux_sym_require_expression_token1] = ACTIONS(1372), + [aux_sym_require_once_expression_token1] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [530] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_name] = ACTIONS(1364), + [anon_sym_QMARK_GT] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [aux_sym_function_static_declaration_token1] = ACTIONS(1364), + [aux_sym_global_declaration_token1] = ACTIONS(1364), + [aux_sym_namespace_definition_token1] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1364), + [anon_sym_BSLASH] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [aux_sym_trait_declaration_token1] = ACTIONS(1364), + [aux_sym_interface_declaration_token1] = ACTIONS(1364), + [aux_sym_enum_declaration_token1] = ACTIONS(1364), + [aux_sym_enum_case_token1] = ACTIONS(1364), + [aux_sym_class_declaration_token1] = ACTIONS(1364), + [aux_sym_final_modifier_token1] = ACTIONS(1364), + [aux_sym_abstract_modifier_token1] = ACTIONS(1364), + [aux_sym_readonly_modifier_token1] = ACTIONS(1364), + [aux_sym_visibility_modifier_token1] = ACTIONS(1364), + [aux_sym_visibility_modifier_token2] = ACTIONS(1364), + [aux_sym_visibility_modifier_token3] = ACTIONS(1364), + [aux_sym__arrow_function_header_token1] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1362), + [aux_sym_cast_type_token1] = ACTIONS(1364), + [aux_sym_echo_statement_token1] = ACTIONS(1364), + [anon_sym_unset] = ACTIONS(1364), + [aux_sym_declare_statement_token1] = ACTIONS(1364), + [aux_sym_declare_statement_token2] = ACTIONS(1364), + [sym_float] = ACTIONS(1364), + [aux_sym_try_statement_token1] = ACTIONS(1364), + [aux_sym_goto_statement_token1] = ACTIONS(1364), + [aux_sym_continue_statement_token1] = ACTIONS(1364), + [aux_sym_break_statement_token1] = ACTIONS(1364), + [sym_integer] = ACTIONS(1364), + [aux_sym_return_statement_token1] = ACTIONS(1364), + [aux_sym_throw_expression_token1] = ACTIONS(1364), + [aux_sym_while_statement_token1] = ACTIONS(1364), + [aux_sym_while_statement_token2] = ACTIONS(1364), + [aux_sym_do_statement_token1] = ACTIONS(1364), + [aux_sym_for_statement_token1] = ACTIONS(1364), + [aux_sym_for_statement_token2] = ACTIONS(1364), + [aux_sym_foreach_statement_token1] = ACTIONS(1364), + [aux_sym_foreach_statement_token2] = ACTIONS(1364), + [aux_sym_if_statement_token1] = ACTIONS(1364), + [aux_sym_if_statement_token2] = ACTIONS(1364), + [aux_sym_else_if_clause_token1] = ACTIONS(1364), + [aux_sym_else_clause_token1] = ACTIONS(1364), + [aux_sym_match_expression_token1] = ACTIONS(1364), + [aux_sym_match_default_expression_token1] = ACTIONS(1364), + [aux_sym_switch_statement_token1] = ACTIONS(1364), + [aux_sym_switch_block_token1] = ACTIONS(1364), + [anon_sym_AT] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [aux_sym_clone_expression_token1] = ACTIONS(1364), + [aux_sym_print_intrinsic_token1] = ACTIONS(1364), + [aux_sym_object_creation_expression_token1] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [aux_sym__list_destructing_token1] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_self] = ACTIONS(1364), + [anon_sym_parent] = ACTIONS(1364), + [anon_sym_POUND_LBRACK] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [aux_sym_encapsed_string_token1] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [aux_sym_string_token1] = ACTIONS(1362), + [anon_sym_LT_LT_LT] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [sym_boolean] = ACTIONS(1364), + [sym_null] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1362), + [aux_sym_yield_expression_token1] = ACTIONS(1364), + [aux_sym_include_expression_token1] = ACTIONS(1364), + [aux_sym_include_once_expression_token1] = ACTIONS(1364), + [aux_sym_require_expression_token1] = ACTIONS(1364), + [aux_sym_require_once_expression_token1] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + }, + [531] = { + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_name] = ACTIONS(1376), + [anon_sym_QMARK_GT] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [aux_sym_function_static_declaration_token1] = ACTIONS(1376), + [aux_sym_global_declaration_token1] = ACTIONS(1376), + [aux_sym_namespace_definition_token1] = ACTIONS(1376), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1376), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1376), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1376), + [anon_sym_BSLASH] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [aux_sym_trait_declaration_token1] = ACTIONS(1376), + [aux_sym_interface_declaration_token1] = ACTIONS(1376), + [aux_sym_enum_declaration_token1] = ACTIONS(1376), + [aux_sym_enum_case_token1] = ACTIONS(1376), + [aux_sym_class_declaration_token1] = ACTIONS(1376), + [aux_sym_final_modifier_token1] = ACTIONS(1376), + [aux_sym_abstract_modifier_token1] = ACTIONS(1376), + [aux_sym_readonly_modifier_token1] = ACTIONS(1376), + [aux_sym_visibility_modifier_token1] = ACTIONS(1376), + [aux_sym_visibility_modifier_token2] = ACTIONS(1376), + [aux_sym_visibility_modifier_token3] = ACTIONS(1376), + [aux_sym__arrow_function_header_token1] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1374), + [aux_sym_cast_type_token1] = ACTIONS(1376), + [aux_sym_echo_statement_token1] = ACTIONS(1376), + [anon_sym_unset] = ACTIONS(1376), + [aux_sym_declare_statement_token1] = ACTIONS(1376), + [aux_sym_declare_statement_token2] = ACTIONS(1376), + [sym_float] = ACTIONS(1376), + [aux_sym_try_statement_token1] = ACTIONS(1376), + [aux_sym_goto_statement_token1] = ACTIONS(1376), + [aux_sym_continue_statement_token1] = ACTIONS(1376), + [aux_sym_break_statement_token1] = ACTIONS(1376), + [sym_integer] = ACTIONS(1376), + [aux_sym_return_statement_token1] = ACTIONS(1376), + [aux_sym_throw_expression_token1] = ACTIONS(1376), + [aux_sym_while_statement_token1] = ACTIONS(1376), + [aux_sym_while_statement_token2] = ACTIONS(1376), + [aux_sym_do_statement_token1] = ACTIONS(1376), + [aux_sym_for_statement_token1] = ACTIONS(1376), + [aux_sym_for_statement_token2] = ACTIONS(1376), + [aux_sym_foreach_statement_token1] = ACTIONS(1376), + [aux_sym_foreach_statement_token2] = ACTIONS(1376), + [aux_sym_if_statement_token1] = ACTIONS(1376), + [aux_sym_if_statement_token2] = ACTIONS(1376), + [aux_sym_else_if_clause_token1] = ACTIONS(1376), + [aux_sym_else_clause_token1] = ACTIONS(1376), + [aux_sym_match_expression_token1] = ACTIONS(1376), + [aux_sym_match_default_expression_token1] = ACTIONS(1376), + [aux_sym_switch_statement_token1] = ACTIONS(1376), + [aux_sym_switch_block_token1] = ACTIONS(1376), + [anon_sym_AT] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [aux_sym_clone_expression_token1] = ACTIONS(1376), + [aux_sym_print_intrinsic_token1] = ACTIONS(1376), + [aux_sym_object_creation_expression_token1] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [aux_sym__list_destructing_token1] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_self] = ACTIONS(1376), + [anon_sym_parent] = ACTIONS(1376), + [anon_sym_POUND_LBRACK] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [aux_sym_encapsed_string_token1] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [aux_sym_string_token1] = ACTIONS(1374), + [anon_sym_LT_LT_LT] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [sym_boolean] = ACTIONS(1376), + [sym_null] = ACTIONS(1376), + [anon_sym_DOLLAR] = ACTIONS(1374), + [aux_sym_yield_expression_token1] = ACTIONS(1376), + [aux_sym_include_expression_token1] = ACTIONS(1376), + [aux_sym_include_once_expression_token1] = ACTIONS(1376), + [aux_sym_require_expression_token1] = ACTIONS(1376), + [aux_sym_require_once_expression_token1] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + }, + [532] = { + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_name] = ACTIONS(1380), + [anon_sym_QMARK_GT] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [aux_sym_function_static_declaration_token1] = ACTIONS(1380), + [aux_sym_global_declaration_token1] = ACTIONS(1380), + [aux_sym_namespace_definition_token1] = ACTIONS(1380), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1380), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1380), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1380), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [aux_sym_trait_declaration_token1] = ACTIONS(1380), + [aux_sym_interface_declaration_token1] = ACTIONS(1380), + [aux_sym_enum_declaration_token1] = ACTIONS(1380), + [aux_sym_enum_case_token1] = ACTIONS(1380), + [aux_sym_class_declaration_token1] = ACTIONS(1380), + [aux_sym_final_modifier_token1] = ACTIONS(1380), + [aux_sym_abstract_modifier_token1] = ACTIONS(1380), + [aux_sym_readonly_modifier_token1] = ACTIONS(1380), + [aux_sym_visibility_modifier_token1] = ACTIONS(1380), + [aux_sym_visibility_modifier_token2] = ACTIONS(1380), + [aux_sym_visibility_modifier_token3] = ACTIONS(1380), + [aux_sym__arrow_function_header_token1] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1378), + [aux_sym_cast_type_token1] = ACTIONS(1380), + [aux_sym_echo_statement_token1] = ACTIONS(1380), + [anon_sym_unset] = ACTIONS(1380), + [aux_sym_declare_statement_token1] = ACTIONS(1380), + [aux_sym_declare_statement_token2] = ACTIONS(1380), + [sym_float] = ACTIONS(1380), + [aux_sym_try_statement_token1] = ACTIONS(1380), + [aux_sym_goto_statement_token1] = ACTIONS(1380), + [aux_sym_continue_statement_token1] = ACTIONS(1380), + [aux_sym_break_statement_token1] = ACTIONS(1380), + [sym_integer] = ACTIONS(1380), + [aux_sym_return_statement_token1] = ACTIONS(1380), + [aux_sym_throw_expression_token1] = ACTIONS(1380), + [aux_sym_while_statement_token1] = ACTIONS(1380), + [aux_sym_while_statement_token2] = ACTIONS(1380), + [aux_sym_do_statement_token1] = ACTIONS(1380), + [aux_sym_for_statement_token1] = ACTIONS(1380), + [aux_sym_for_statement_token2] = ACTIONS(1380), + [aux_sym_foreach_statement_token1] = ACTIONS(1380), + [aux_sym_foreach_statement_token2] = ACTIONS(1380), + [aux_sym_if_statement_token1] = ACTIONS(1380), + [aux_sym_if_statement_token2] = ACTIONS(1380), + [aux_sym_else_if_clause_token1] = ACTIONS(1380), + [aux_sym_else_clause_token1] = ACTIONS(1380), + [aux_sym_match_expression_token1] = ACTIONS(1380), + [aux_sym_match_default_expression_token1] = ACTIONS(1380), + [aux_sym_switch_statement_token1] = ACTIONS(1380), + [aux_sym_switch_block_token1] = ACTIONS(1380), + [anon_sym_AT] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [aux_sym_clone_expression_token1] = ACTIONS(1380), + [aux_sym_print_intrinsic_token1] = ACTIONS(1380), + [aux_sym_object_creation_expression_token1] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [aux_sym__list_destructing_token1] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_self] = ACTIONS(1380), + [anon_sym_parent] = ACTIONS(1380), + [anon_sym_POUND_LBRACK] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [aux_sym_encapsed_string_token1] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [aux_sym_string_token1] = ACTIONS(1378), + [anon_sym_LT_LT_LT] = ACTIONS(1378), + [anon_sym_BQUOTE] = ACTIONS(1378), + [sym_boolean] = ACTIONS(1380), + [sym_null] = ACTIONS(1380), + [anon_sym_DOLLAR] = ACTIONS(1378), + [aux_sym_yield_expression_token1] = ACTIONS(1380), + [aux_sym_include_expression_token1] = ACTIONS(1380), + [aux_sym_include_once_expression_token1] = ACTIONS(1380), + [aux_sym_require_expression_token1] = ACTIONS(1380), + [aux_sym_require_once_expression_token1] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + }, + [533] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_name] = ACTIONS(1384), + [anon_sym_QMARK_GT] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [aux_sym_function_static_declaration_token1] = ACTIONS(1384), + [aux_sym_global_declaration_token1] = ACTIONS(1384), + [aux_sym_namespace_definition_token1] = ACTIONS(1384), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1384), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1384), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1384), + [anon_sym_BSLASH] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [aux_sym_trait_declaration_token1] = ACTIONS(1384), + [aux_sym_interface_declaration_token1] = ACTIONS(1384), + [aux_sym_enum_declaration_token1] = ACTIONS(1384), + [aux_sym_enum_case_token1] = ACTIONS(1384), + [aux_sym_class_declaration_token1] = ACTIONS(1384), + [aux_sym_final_modifier_token1] = ACTIONS(1384), + [aux_sym_abstract_modifier_token1] = ACTIONS(1384), + [aux_sym_readonly_modifier_token1] = ACTIONS(1384), + [aux_sym_visibility_modifier_token1] = ACTIONS(1384), + [aux_sym_visibility_modifier_token2] = ACTIONS(1384), + [aux_sym_visibility_modifier_token3] = ACTIONS(1384), + [aux_sym__arrow_function_header_token1] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1382), + [aux_sym_cast_type_token1] = ACTIONS(1384), + [aux_sym_echo_statement_token1] = ACTIONS(1384), + [anon_sym_unset] = ACTIONS(1384), + [aux_sym_declare_statement_token1] = ACTIONS(1384), + [aux_sym_declare_statement_token2] = ACTIONS(1384), + [sym_float] = ACTIONS(1384), + [aux_sym_try_statement_token1] = ACTIONS(1384), + [aux_sym_goto_statement_token1] = ACTIONS(1384), + [aux_sym_continue_statement_token1] = ACTIONS(1384), + [aux_sym_break_statement_token1] = ACTIONS(1384), + [sym_integer] = ACTIONS(1384), + [aux_sym_return_statement_token1] = ACTIONS(1384), + [aux_sym_throw_expression_token1] = ACTIONS(1384), + [aux_sym_while_statement_token1] = ACTIONS(1384), + [aux_sym_while_statement_token2] = ACTIONS(1384), + [aux_sym_do_statement_token1] = ACTIONS(1384), + [aux_sym_for_statement_token1] = ACTIONS(1384), + [aux_sym_for_statement_token2] = ACTIONS(1384), + [aux_sym_foreach_statement_token1] = ACTIONS(1384), + [aux_sym_foreach_statement_token2] = ACTIONS(1384), + [aux_sym_if_statement_token1] = ACTIONS(1384), + [aux_sym_if_statement_token2] = ACTIONS(1384), + [aux_sym_else_if_clause_token1] = ACTIONS(1384), + [aux_sym_else_clause_token1] = ACTIONS(1384), + [aux_sym_match_expression_token1] = ACTIONS(1384), + [aux_sym_match_default_expression_token1] = ACTIONS(1384), + [aux_sym_switch_statement_token1] = ACTIONS(1384), + [aux_sym_switch_block_token1] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [aux_sym_clone_expression_token1] = ACTIONS(1384), + [aux_sym_print_intrinsic_token1] = ACTIONS(1384), + [aux_sym_object_creation_expression_token1] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [aux_sym__list_destructing_token1] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_self] = ACTIONS(1384), + [anon_sym_parent] = ACTIONS(1384), + [anon_sym_POUND_LBRACK] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [aux_sym_encapsed_string_token1] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [aux_sym_string_token1] = ACTIONS(1382), + [anon_sym_LT_LT_LT] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1382), + [sym_boolean] = ACTIONS(1384), + [sym_null] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1382), + [aux_sym_yield_expression_token1] = ACTIONS(1384), + [aux_sym_include_expression_token1] = ACTIONS(1384), + [aux_sym_include_once_expression_token1] = ACTIONS(1384), + [aux_sym_require_expression_token1] = ACTIONS(1384), + [aux_sym_require_once_expression_token1] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + }, + [534] = { + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_name] = ACTIONS(1388), + [anon_sym_QMARK_GT] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [aux_sym_function_static_declaration_token1] = ACTIONS(1388), + [aux_sym_global_declaration_token1] = ACTIONS(1388), + [aux_sym_namespace_definition_token1] = ACTIONS(1388), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1388), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1388), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1388), + [anon_sym_BSLASH] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [aux_sym_trait_declaration_token1] = ACTIONS(1388), + [aux_sym_interface_declaration_token1] = ACTIONS(1388), + [aux_sym_enum_declaration_token1] = ACTIONS(1388), + [aux_sym_enum_case_token1] = ACTIONS(1388), + [aux_sym_class_declaration_token1] = ACTIONS(1388), + [aux_sym_final_modifier_token1] = ACTIONS(1388), + [aux_sym_abstract_modifier_token1] = ACTIONS(1388), + [aux_sym_readonly_modifier_token1] = ACTIONS(1388), + [aux_sym_visibility_modifier_token1] = ACTIONS(1388), + [aux_sym_visibility_modifier_token2] = ACTIONS(1388), + [aux_sym_visibility_modifier_token3] = ACTIONS(1388), + [aux_sym__arrow_function_header_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1386), + [aux_sym_cast_type_token1] = ACTIONS(1388), + [aux_sym_echo_statement_token1] = ACTIONS(1388), + [anon_sym_unset] = ACTIONS(1388), + [aux_sym_declare_statement_token1] = ACTIONS(1388), + [aux_sym_declare_statement_token2] = ACTIONS(1388), + [sym_float] = ACTIONS(1388), + [aux_sym_try_statement_token1] = ACTIONS(1388), + [aux_sym_goto_statement_token1] = ACTIONS(1388), + [aux_sym_continue_statement_token1] = ACTIONS(1388), + [aux_sym_break_statement_token1] = ACTIONS(1388), + [sym_integer] = ACTIONS(1388), + [aux_sym_return_statement_token1] = ACTIONS(1388), + [aux_sym_throw_expression_token1] = ACTIONS(1388), + [aux_sym_while_statement_token1] = ACTIONS(1388), + [aux_sym_while_statement_token2] = ACTIONS(1388), + [aux_sym_do_statement_token1] = ACTIONS(1388), + [aux_sym_for_statement_token1] = ACTIONS(1388), + [aux_sym_for_statement_token2] = ACTIONS(1388), + [aux_sym_foreach_statement_token1] = ACTIONS(1388), + [aux_sym_foreach_statement_token2] = ACTIONS(1388), + [aux_sym_if_statement_token1] = ACTIONS(1388), + [aux_sym_if_statement_token2] = ACTIONS(1388), + [aux_sym_else_if_clause_token1] = ACTIONS(1388), + [aux_sym_else_clause_token1] = ACTIONS(1388), + [aux_sym_match_expression_token1] = ACTIONS(1388), + [aux_sym_match_default_expression_token1] = ACTIONS(1388), + [aux_sym_switch_statement_token1] = ACTIONS(1388), + [aux_sym_switch_block_token1] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [aux_sym_clone_expression_token1] = ACTIONS(1388), + [aux_sym_print_intrinsic_token1] = ACTIONS(1388), + [aux_sym_object_creation_expression_token1] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [aux_sym__list_destructing_token1] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1386), + [anon_sym_self] = ACTIONS(1388), + [anon_sym_parent] = ACTIONS(1388), + [anon_sym_POUND_LBRACK] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [aux_sym_encapsed_string_token1] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [aux_sym_string_token1] = ACTIONS(1386), + [anon_sym_LT_LT_LT] = ACTIONS(1386), + [anon_sym_BQUOTE] = ACTIONS(1386), + [sym_boolean] = ACTIONS(1388), + [sym_null] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(1386), + [aux_sym_yield_expression_token1] = ACTIONS(1388), + [aux_sym_include_expression_token1] = ACTIONS(1388), + [aux_sym_include_once_expression_token1] = ACTIONS(1388), + [aux_sym_require_expression_token1] = ACTIONS(1388), + [aux_sym_require_once_expression_token1] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + }, + [535] = { + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_name] = ACTIONS(1392), + [anon_sym_QMARK_GT] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [aux_sym_function_static_declaration_token1] = ACTIONS(1392), + [aux_sym_global_declaration_token1] = ACTIONS(1392), + [aux_sym_namespace_definition_token1] = ACTIONS(1392), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1392), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1392), + [anon_sym_BSLASH] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [aux_sym_trait_declaration_token1] = ACTIONS(1392), + [aux_sym_interface_declaration_token1] = ACTIONS(1392), + [aux_sym_enum_declaration_token1] = ACTIONS(1392), + [aux_sym_enum_case_token1] = ACTIONS(1392), + [aux_sym_class_declaration_token1] = ACTIONS(1392), + [aux_sym_final_modifier_token1] = ACTIONS(1392), + [aux_sym_abstract_modifier_token1] = ACTIONS(1392), + [aux_sym_readonly_modifier_token1] = ACTIONS(1392), + [aux_sym_visibility_modifier_token1] = ACTIONS(1392), + [aux_sym_visibility_modifier_token2] = ACTIONS(1392), + [aux_sym_visibility_modifier_token3] = ACTIONS(1392), + [aux_sym__arrow_function_header_token1] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_cast_type_token1] = ACTIONS(1392), + [aux_sym_echo_statement_token1] = ACTIONS(1392), + [anon_sym_unset] = ACTIONS(1392), + [aux_sym_declare_statement_token1] = ACTIONS(1392), + [aux_sym_declare_statement_token2] = ACTIONS(1392), + [sym_float] = ACTIONS(1392), + [aux_sym_try_statement_token1] = ACTIONS(1392), + [aux_sym_goto_statement_token1] = ACTIONS(1392), + [aux_sym_continue_statement_token1] = ACTIONS(1392), + [aux_sym_break_statement_token1] = ACTIONS(1392), + [sym_integer] = ACTIONS(1392), + [aux_sym_return_statement_token1] = ACTIONS(1392), + [aux_sym_throw_expression_token1] = ACTIONS(1392), + [aux_sym_while_statement_token1] = ACTIONS(1392), + [aux_sym_while_statement_token2] = ACTIONS(1392), + [aux_sym_do_statement_token1] = ACTIONS(1392), + [aux_sym_for_statement_token1] = ACTIONS(1392), + [aux_sym_for_statement_token2] = ACTIONS(1392), + [aux_sym_foreach_statement_token1] = ACTIONS(1392), + [aux_sym_foreach_statement_token2] = ACTIONS(1392), + [aux_sym_if_statement_token1] = ACTIONS(1392), + [aux_sym_if_statement_token2] = ACTIONS(1392), + [aux_sym_else_if_clause_token1] = ACTIONS(1392), + [aux_sym_else_clause_token1] = ACTIONS(1392), + [aux_sym_match_expression_token1] = ACTIONS(1392), + [aux_sym_match_default_expression_token1] = ACTIONS(1392), + [aux_sym_switch_statement_token1] = ACTIONS(1392), + [aux_sym_switch_block_token1] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [aux_sym_clone_expression_token1] = ACTIONS(1392), + [aux_sym_print_intrinsic_token1] = ACTIONS(1392), + [aux_sym_object_creation_expression_token1] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [aux_sym__list_destructing_token1] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_self] = ACTIONS(1392), + [anon_sym_parent] = ACTIONS(1392), + [anon_sym_POUND_LBRACK] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [aux_sym_encapsed_string_token1] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [aux_sym_string_token1] = ACTIONS(1390), + [anon_sym_LT_LT_LT] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(1390), + [sym_boolean] = ACTIONS(1392), + [sym_null] = ACTIONS(1392), + [anon_sym_DOLLAR] = ACTIONS(1390), + [aux_sym_yield_expression_token1] = ACTIONS(1392), + [aux_sym_include_expression_token1] = ACTIONS(1392), + [aux_sym_include_once_expression_token1] = ACTIONS(1392), + [aux_sym_require_expression_token1] = ACTIONS(1392), + [aux_sym_require_once_expression_token1] = ACTIONS(1392), + [sym_comment] = ACTIONS(3), + }, + [536] = { + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_name] = ACTIONS(1396), + [anon_sym_QMARK_GT] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [aux_sym_function_static_declaration_token1] = ACTIONS(1396), + [aux_sym_global_declaration_token1] = ACTIONS(1396), + [aux_sym_namespace_definition_token1] = ACTIONS(1396), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1396), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1396), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1396), + [anon_sym_BSLASH] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [aux_sym_trait_declaration_token1] = ACTIONS(1396), + [aux_sym_interface_declaration_token1] = ACTIONS(1396), + [aux_sym_enum_declaration_token1] = ACTIONS(1396), + [aux_sym_enum_case_token1] = ACTIONS(1396), + [aux_sym_class_declaration_token1] = ACTIONS(1396), + [aux_sym_final_modifier_token1] = ACTIONS(1396), + [aux_sym_abstract_modifier_token1] = ACTIONS(1396), + [aux_sym_readonly_modifier_token1] = ACTIONS(1396), + [aux_sym_visibility_modifier_token1] = ACTIONS(1396), + [aux_sym_visibility_modifier_token2] = ACTIONS(1396), + [aux_sym_visibility_modifier_token3] = ACTIONS(1396), + [aux_sym__arrow_function_header_token1] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1394), + [aux_sym_cast_type_token1] = ACTIONS(1396), + [aux_sym_echo_statement_token1] = ACTIONS(1396), + [anon_sym_unset] = ACTIONS(1396), + [aux_sym_declare_statement_token1] = ACTIONS(1396), + [aux_sym_declare_statement_token2] = ACTIONS(1396), + [sym_float] = ACTIONS(1396), + [aux_sym_try_statement_token1] = ACTIONS(1396), + [aux_sym_goto_statement_token1] = ACTIONS(1396), + [aux_sym_continue_statement_token1] = ACTIONS(1396), + [aux_sym_break_statement_token1] = ACTIONS(1396), + [sym_integer] = ACTIONS(1396), + [aux_sym_return_statement_token1] = ACTIONS(1396), + [aux_sym_throw_expression_token1] = ACTIONS(1396), + [aux_sym_while_statement_token1] = ACTIONS(1396), + [aux_sym_while_statement_token2] = ACTIONS(1396), + [aux_sym_do_statement_token1] = ACTIONS(1396), + [aux_sym_for_statement_token1] = ACTIONS(1396), + [aux_sym_for_statement_token2] = ACTIONS(1396), + [aux_sym_foreach_statement_token1] = ACTIONS(1396), + [aux_sym_foreach_statement_token2] = ACTIONS(1396), + [aux_sym_if_statement_token1] = ACTIONS(1396), + [aux_sym_if_statement_token2] = ACTIONS(1396), + [aux_sym_else_if_clause_token1] = ACTIONS(1396), + [aux_sym_else_clause_token1] = ACTIONS(1396), + [aux_sym_match_expression_token1] = ACTIONS(1396), + [aux_sym_match_default_expression_token1] = ACTIONS(1396), + [aux_sym_switch_statement_token1] = ACTIONS(1396), + [aux_sym_switch_block_token1] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [aux_sym_clone_expression_token1] = ACTIONS(1396), + [aux_sym_print_intrinsic_token1] = ACTIONS(1396), + [aux_sym_object_creation_expression_token1] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [aux_sym__list_destructing_token1] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_self] = ACTIONS(1396), + [anon_sym_parent] = ACTIONS(1396), + [anon_sym_POUND_LBRACK] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [aux_sym_encapsed_string_token1] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [aux_sym_string_token1] = ACTIONS(1394), + [anon_sym_LT_LT_LT] = ACTIONS(1394), + [anon_sym_BQUOTE] = ACTIONS(1394), + [sym_boolean] = ACTIONS(1396), + [sym_null] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1394), + [aux_sym_yield_expression_token1] = ACTIONS(1396), + [aux_sym_include_expression_token1] = ACTIONS(1396), + [aux_sym_include_once_expression_token1] = ACTIONS(1396), + [aux_sym_require_expression_token1] = ACTIONS(1396), + [aux_sym_require_once_expression_token1] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + }, + [537] = { + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_name] = ACTIONS(1400), + [anon_sym_QMARK_GT] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [aux_sym_function_static_declaration_token1] = ACTIONS(1400), + [aux_sym_global_declaration_token1] = ACTIONS(1400), + [aux_sym_namespace_definition_token1] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1400), + [anon_sym_BSLASH] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [aux_sym_trait_declaration_token1] = ACTIONS(1400), + [aux_sym_interface_declaration_token1] = ACTIONS(1400), + [aux_sym_enum_declaration_token1] = ACTIONS(1400), + [aux_sym_enum_case_token1] = ACTIONS(1400), + [aux_sym_class_declaration_token1] = ACTIONS(1400), + [aux_sym_final_modifier_token1] = ACTIONS(1400), + [aux_sym_abstract_modifier_token1] = ACTIONS(1400), + [aux_sym_readonly_modifier_token1] = ACTIONS(1400), + [aux_sym_visibility_modifier_token1] = ACTIONS(1400), + [aux_sym_visibility_modifier_token2] = ACTIONS(1400), + [aux_sym_visibility_modifier_token3] = ACTIONS(1400), + [aux_sym__arrow_function_header_token1] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1398), + [aux_sym_cast_type_token1] = ACTIONS(1400), + [aux_sym_echo_statement_token1] = ACTIONS(1400), + [anon_sym_unset] = ACTIONS(1400), + [aux_sym_declare_statement_token1] = ACTIONS(1400), + [aux_sym_declare_statement_token2] = ACTIONS(1400), + [sym_float] = ACTIONS(1400), + [aux_sym_try_statement_token1] = ACTIONS(1400), + [aux_sym_goto_statement_token1] = ACTIONS(1400), + [aux_sym_continue_statement_token1] = ACTIONS(1400), + [aux_sym_break_statement_token1] = ACTIONS(1400), + [sym_integer] = ACTIONS(1400), + [aux_sym_return_statement_token1] = ACTIONS(1400), + [aux_sym_throw_expression_token1] = ACTIONS(1400), + [aux_sym_while_statement_token1] = ACTIONS(1400), + [aux_sym_while_statement_token2] = ACTIONS(1400), + [aux_sym_do_statement_token1] = ACTIONS(1400), + [aux_sym_for_statement_token1] = ACTIONS(1400), + [aux_sym_for_statement_token2] = ACTIONS(1400), + [aux_sym_foreach_statement_token1] = ACTIONS(1400), + [aux_sym_foreach_statement_token2] = ACTIONS(1400), + [aux_sym_if_statement_token1] = ACTIONS(1400), + [aux_sym_if_statement_token2] = ACTIONS(1400), + [aux_sym_else_if_clause_token1] = ACTIONS(1400), + [aux_sym_else_clause_token1] = ACTIONS(1400), + [aux_sym_match_expression_token1] = ACTIONS(1400), + [aux_sym_match_default_expression_token1] = ACTIONS(1400), + [aux_sym_switch_statement_token1] = ACTIONS(1400), + [aux_sym_switch_block_token1] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [aux_sym_clone_expression_token1] = ACTIONS(1400), + [aux_sym_print_intrinsic_token1] = ACTIONS(1400), + [aux_sym_object_creation_expression_token1] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [aux_sym__list_destructing_token1] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_self] = ACTIONS(1400), + [anon_sym_parent] = ACTIONS(1400), + [anon_sym_POUND_LBRACK] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [aux_sym_encapsed_string_token1] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [aux_sym_string_token1] = ACTIONS(1398), + [anon_sym_LT_LT_LT] = ACTIONS(1398), + [anon_sym_BQUOTE] = ACTIONS(1398), + [sym_boolean] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1398), + [aux_sym_yield_expression_token1] = ACTIONS(1400), + [aux_sym_include_expression_token1] = ACTIONS(1400), + [aux_sym_include_once_expression_token1] = ACTIONS(1400), + [aux_sym_require_expression_token1] = ACTIONS(1400), + [aux_sym_require_once_expression_token1] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + }, + [538] = { + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_name] = ACTIONS(1404), + [anon_sym_QMARK_GT] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [aux_sym_function_static_declaration_token1] = ACTIONS(1404), + [aux_sym_global_declaration_token1] = ACTIONS(1404), + [aux_sym_namespace_definition_token1] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1404), + [anon_sym_BSLASH] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [aux_sym_trait_declaration_token1] = ACTIONS(1404), + [aux_sym_interface_declaration_token1] = ACTIONS(1404), + [aux_sym_enum_declaration_token1] = ACTIONS(1404), + [aux_sym_enum_case_token1] = ACTIONS(1404), + [aux_sym_class_declaration_token1] = ACTIONS(1404), + [aux_sym_final_modifier_token1] = ACTIONS(1404), + [aux_sym_abstract_modifier_token1] = ACTIONS(1404), + [aux_sym_readonly_modifier_token1] = ACTIONS(1404), + [aux_sym_visibility_modifier_token1] = ACTIONS(1404), + [aux_sym_visibility_modifier_token2] = ACTIONS(1404), + [aux_sym_visibility_modifier_token3] = ACTIONS(1404), + [aux_sym__arrow_function_header_token1] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1402), + [aux_sym_cast_type_token1] = ACTIONS(1404), + [aux_sym_echo_statement_token1] = ACTIONS(1404), + [anon_sym_unset] = ACTIONS(1404), + [aux_sym_declare_statement_token1] = ACTIONS(1404), + [aux_sym_declare_statement_token2] = ACTIONS(1404), + [sym_float] = ACTIONS(1404), + [aux_sym_try_statement_token1] = ACTIONS(1404), + [aux_sym_goto_statement_token1] = ACTIONS(1404), + [aux_sym_continue_statement_token1] = ACTIONS(1404), + [aux_sym_break_statement_token1] = ACTIONS(1404), + [sym_integer] = ACTIONS(1404), + [aux_sym_return_statement_token1] = ACTIONS(1404), + [aux_sym_throw_expression_token1] = ACTIONS(1404), + [aux_sym_while_statement_token1] = ACTIONS(1404), + [aux_sym_while_statement_token2] = ACTIONS(1404), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_for_statement_token1] = ACTIONS(1404), + [aux_sym_for_statement_token2] = ACTIONS(1404), + [aux_sym_foreach_statement_token1] = ACTIONS(1404), + [aux_sym_foreach_statement_token2] = ACTIONS(1404), + [aux_sym_if_statement_token1] = ACTIONS(1404), + [aux_sym_if_statement_token2] = ACTIONS(1404), + [aux_sym_else_if_clause_token1] = ACTIONS(1404), + [aux_sym_else_clause_token1] = ACTIONS(1404), + [aux_sym_match_expression_token1] = ACTIONS(1404), + [aux_sym_match_default_expression_token1] = ACTIONS(1404), + [aux_sym_switch_statement_token1] = ACTIONS(1404), + [aux_sym_switch_block_token1] = ACTIONS(1404), + [anon_sym_AT] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [aux_sym_clone_expression_token1] = ACTIONS(1404), + [aux_sym_print_intrinsic_token1] = ACTIONS(1404), + [aux_sym_object_creation_expression_token1] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [aux_sym__list_destructing_token1] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_self] = ACTIONS(1404), + [anon_sym_parent] = ACTIONS(1404), + [anon_sym_POUND_LBRACK] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [aux_sym_encapsed_string_token1] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [aux_sym_string_token1] = ACTIONS(1402), + [anon_sym_LT_LT_LT] = ACTIONS(1402), + [anon_sym_BQUOTE] = ACTIONS(1402), + [sym_boolean] = ACTIONS(1404), + [sym_null] = ACTIONS(1404), + [anon_sym_DOLLAR] = ACTIONS(1402), + [aux_sym_yield_expression_token1] = ACTIONS(1404), + [aux_sym_include_expression_token1] = ACTIONS(1404), + [aux_sym_include_once_expression_token1] = ACTIONS(1404), + [aux_sym_require_expression_token1] = ACTIONS(1404), + [aux_sym_require_once_expression_token1] = ACTIONS(1404), + [sym_comment] = ACTIONS(3), + }, + [539] = { + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_name] = ACTIONS(1404), + [anon_sym_QMARK_GT] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [aux_sym_function_static_declaration_token1] = ACTIONS(1404), + [aux_sym_global_declaration_token1] = ACTIONS(1404), + [aux_sym_namespace_definition_token1] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1404), + [anon_sym_BSLASH] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [aux_sym_trait_declaration_token1] = ACTIONS(1404), + [aux_sym_interface_declaration_token1] = ACTIONS(1404), + [aux_sym_enum_declaration_token1] = ACTIONS(1404), + [aux_sym_enum_case_token1] = ACTIONS(1404), + [aux_sym_class_declaration_token1] = ACTIONS(1404), + [aux_sym_final_modifier_token1] = ACTIONS(1404), + [aux_sym_abstract_modifier_token1] = ACTIONS(1404), + [aux_sym_readonly_modifier_token1] = ACTIONS(1404), + [aux_sym_visibility_modifier_token1] = ACTIONS(1404), + [aux_sym_visibility_modifier_token2] = ACTIONS(1404), + [aux_sym_visibility_modifier_token3] = ACTIONS(1404), + [aux_sym__arrow_function_header_token1] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1402), + [aux_sym_cast_type_token1] = ACTIONS(1404), + [aux_sym_echo_statement_token1] = ACTIONS(1404), + [anon_sym_unset] = ACTIONS(1404), + [aux_sym_declare_statement_token1] = ACTIONS(1404), + [aux_sym_declare_statement_token2] = ACTIONS(1404), + [sym_float] = ACTIONS(1404), + [aux_sym_try_statement_token1] = ACTIONS(1404), + [aux_sym_goto_statement_token1] = ACTIONS(1404), + [aux_sym_continue_statement_token1] = ACTIONS(1404), + [aux_sym_break_statement_token1] = ACTIONS(1404), + [sym_integer] = ACTIONS(1404), + [aux_sym_return_statement_token1] = ACTIONS(1404), + [aux_sym_throw_expression_token1] = ACTIONS(1404), + [aux_sym_while_statement_token1] = ACTIONS(1404), + [aux_sym_while_statement_token2] = ACTIONS(1404), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_for_statement_token1] = ACTIONS(1404), + [aux_sym_for_statement_token2] = ACTIONS(1404), + [aux_sym_foreach_statement_token1] = ACTIONS(1404), + [aux_sym_foreach_statement_token2] = ACTIONS(1404), + [aux_sym_if_statement_token1] = ACTIONS(1404), + [aux_sym_if_statement_token2] = ACTIONS(1404), + [aux_sym_else_if_clause_token1] = ACTIONS(1404), + [aux_sym_else_clause_token1] = ACTIONS(1404), + [aux_sym_match_expression_token1] = ACTIONS(1404), + [aux_sym_match_default_expression_token1] = ACTIONS(1404), + [aux_sym_switch_statement_token1] = ACTIONS(1404), + [aux_sym_switch_block_token1] = ACTIONS(1404), + [anon_sym_AT] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [aux_sym_clone_expression_token1] = ACTIONS(1404), + [aux_sym_print_intrinsic_token1] = ACTIONS(1404), + [aux_sym_object_creation_expression_token1] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [aux_sym__list_destructing_token1] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_self] = ACTIONS(1404), + [anon_sym_parent] = ACTIONS(1404), + [anon_sym_POUND_LBRACK] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [aux_sym_encapsed_string_token1] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [aux_sym_string_token1] = ACTIONS(1402), + [anon_sym_LT_LT_LT] = ACTIONS(1402), + [anon_sym_BQUOTE] = ACTIONS(1402), + [sym_boolean] = ACTIONS(1404), + [sym_null] = ACTIONS(1404), + [anon_sym_DOLLAR] = ACTIONS(1402), + [aux_sym_yield_expression_token1] = ACTIONS(1404), + [aux_sym_include_expression_token1] = ACTIONS(1404), + [aux_sym_include_once_expression_token1] = ACTIONS(1404), + [aux_sym_require_expression_token1] = ACTIONS(1404), + [aux_sym_require_once_expression_token1] = ACTIONS(1404), + [sym_comment] = ACTIONS(3), + }, + [540] = { + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_name] = ACTIONS(1084), + [anon_sym_QMARK_GT] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [aux_sym_function_static_declaration_token1] = ACTIONS(1084), + [aux_sym_global_declaration_token1] = ACTIONS(1084), + [aux_sym_namespace_definition_token1] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1084), + [anon_sym_BSLASH] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [aux_sym_trait_declaration_token1] = ACTIONS(1084), + [aux_sym_interface_declaration_token1] = ACTIONS(1084), + [aux_sym_enum_declaration_token1] = ACTIONS(1084), + [aux_sym_enum_case_token1] = ACTIONS(1084), + [aux_sym_class_declaration_token1] = ACTIONS(1084), + [aux_sym_final_modifier_token1] = ACTIONS(1084), + [aux_sym_abstract_modifier_token1] = ACTIONS(1084), + [aux_sym_readonly_modifier_token1] = ACTIONS(1084), + [aux_sym_visibility_modifier_token1] = ACTIONS(1084), + [aux_sym_visibility_modifier_token2] = ACTIONS(1084), + [aux_sym_visibility_modifier_token3] = ACTIONS(1084), + [aux_sym__arrow_function_header_token1] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1082), + [aux_sym_cast_type_token1] = ACTIONS(1084), + [aux_sym_echo_statement_token1] = ACTIONS(1084), + [anon_sym_unset] = ACTIONS(1084), + [aux_sym_declare_statement_token1] = ACTIONS(1084), + [aux_sym_declare_statement_token2] = ACTIONS(1084), + [sym_float] = ACTIONS(1084), + [aux_sym_try_statement_token1] = ACTIONS(1084), + [aux_sym_goto_statement_token1] = ACTIONS(1084), + [aux_sym_continue_statement_token1] = ACTIONS(1084), + [aux_sym_break_statement_token1] = ACTIONS(1084), + [sym_integer] = ACTIONS(1084), + [aux_sym_return_statement_token1] = ACTIONS(1084), + [aux_sym_throw_expression_token1] = ACTIONS(1084), + [aux_sym_while_statement_token1] = ACTIONS(1084), + [aux_sym_while_statement_token2] = ACTIONS(1084), + [aux_sym_do_statement_token1] = ACTIONS(1084), + [aux_sym_for_statement_token1] = ACTIONS(1084), + [aux_sym_for_statement_token2] = ACTIONS(1084), + [aux_sym_foreach_statement_token1] = ACTIONS(1084), + [aux_sym_foreach_statement_token2] = ACTIONS(1084), + [aux_sym_if_statement_token1] = ACTIONS(1084), + [aux_sym_if_statement_token2] = ACTIONS(1084), + [aux_sym_else_if_clause_token1] = ACTIONS(1084), + [aux_sym_else_clause_token1] = ACTIONS(1084), + [aux_sym_match_expression_token1] = ACTIONS(1084), + [aux_sym_match_default_expression_token1] = ACTIONS(1084), + [aux_sym_switch_statement_token1] = ACTIONS(1084), + [aux_sym_switch_block_token1] = ACTIONS(1084), + [anon_sym_AT] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [aux_sym_clone_expression_token1] = ACTIONS(1084), + [aux_sym_print_intrinsic_token1] = ACTIONS(1084), + [aux_sym_object_creation_expression_token1] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [aux_sym__list_destructing_token1] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_self] = ACTIONS(1084), + [anon_sym_parent] = ACTIONS(1084), + [anon_sym_POUND_LBRACK] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [aux_sym_encapsed_string_token1] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [aux_sym_string_token1] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [sym_boolean] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), + [anon_sym_DOLLAR] = ACTIONS(1082), + [aux_sym_yield_expression_token1] = ACTIONS(1084), + [aux_sym_include_expression_token1] = ACTIONS(1084), + [aux_sym_include_once_expression_token1] = ACTIONS(1084), + [aux_sym_require_expression_token1] = ACTIONS(1084), + [aux_sym_require_once_expression_token1] = ACTIONS(1084), + [sym_comment] = ACTIONS(3), + }, + [541] = { + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_name] = ACTIONS(1408), + [anon_sym_QMARK_GT] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [aux_sym_function_static_declaration_token1] = ACTIONS(1408), + [aux_sym_global_declaration_token1] = ACTIONS(1408), + [aux_sym_namespace_definition_token1] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1408), + [anon_sym_BSLASH] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [aux_sym_trait_declaration_token1] = ACTIONS(1408), + [aux_sym_interface_declaration_token1] = ACTIONS(1408), + [aux_sym_enum_declaration_token1] = ACTIONS(1408), + [aux_sym_enum_case_token1] = ACTIONS(1408), + [aux_sym_class_declaration_token1] = ACTIONS(1408), + [aux_sym_final_modifier_token1] = ACTIONS(1408), + [aux_sym_abstract_modifier_token1] = ACTIONS(1408), + [aux_sym_readonly_modifier_token1] = ACTIONS(1408), + [aux_sym_visibility_modifier_token1] = ACTIONS(1408), + [aux_sym_visibility_modifier_token2] = ACTIONS(1408), + [aux_sym_visibility_modifier_token3] = ACTIONS(1408), + [aux_sym__arrow_function_header_token1] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1406), + [aux_sym_cast_type_token1] = ACTIONS(1408), + [aux_sym_echo_statement_token1] = ACTIONS(1408), + [anon_sym_unset] = ACTIONS(1408), + [aux_sym_declare_statement_token1] = ACTIONS(1408), + [aux_sym_declare_statement_token2] = ACTIONS(1408), + [sym_float] = ACTIONS(1408), + [aux_sym_try_statement_token1] = ACTIONS(1408), + [aux_sym_goto_statement_token1] = ACTIONS(1408), + [aux_sym_continue_statement_token1] = ACTIONS(1408), + [aux_sym_break_statement_token1] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [aux_sym_return_statement_token1] = ACTIONS(1408), + [aux_sym_throw_expression_token1] = ACTIONS(1408), + [aux_sym_while_statement_token1] = ACTIONS(1408), + [aux_sym_while_statement_token2] = ACTIONS(1408), + [aux_sym_do_statement_token1] = ACTIONS(1408), + [aux_sym_for_statement_token1] = ACTIONS(1408), + [aux_sym_for_statement_token2] = ACTIONS(1408), + [aux_sym_foreach_statement_token1] = ACTIONS(1408), + [aux_sym_foreach_statement_token2] = ACTIONS(1408), + [aux_sym_if_statement_token1] = ACTIONS(1408), + [aux_sym_if_statement_token2] = ACTIONS(1408), + [aux_sym_else_if_clause_token1] = ACTIONS(1408), + [aux_sym_else_clause_token1] = ACTIONS(1408), + [aux_sym_match_expression_token1] = ACTIONS(1408), + [aux_sym_match_default_expression_token1] = ACTIONS(1408), + [aux_sym_switch_statement_token1] = ACTIONS(1408), + [aux_sym_switch_block_token1] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [aux_sym_clone_expression_token1] = ACTIONS(1408), + [aux_sym_print_intrinsic_token1] = ACTIONS(1408), + [aux_sym_object_creation_expression_token1] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [aux_sym__list_destructing_token1] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_self] = ACTIONS(1408), + [anon_sym_parent] = ACTIONS(1408), + [anon_sym_POUND_LBRACK] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [aux_sym_encapsed_string_token1] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [aux_sym_string_token1] = ACTIONS(1406), + [anon_sym_LT_LT_LT] = ACTIONS(1406), + [anon_sym_BQUOTE] = ACTIONS(1406), + [sym_boolean] = ACTIONS(1408), + [sym_null] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1406), + [aux_sym_yield_expression_token1] = ACTIONS(1408), + [aux_sym_include_expression_token1] = ACTIONS(1408), + [aux_sym_include_once_expression_token1] = ACTIONS(1408), + [aux_sym_require_expression_token1] = ACTIONS(1408), + [aux_sym_require_once_expression_token1] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + }, + [542] = { + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_name] = ACTIONS(1412), + [anon_sym_QMARK_GT] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [aux_sym_function_static_declaration_token1] = ACTIONS(1412), + [aux_sym_global_declaration_token1] = ACTIONS(1412), + [aux_sym_namespace_definition_token1] = ACTIONS(1412), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1412), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1412), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [aux_sym_trait_declaration_token1] = ACTIONS(1412), + [aux_sym_interface_declaration_token1] = ACTIONS(1412), + [aux_sym_enum_declaration_token1] = ACTIONS(1412), + [aux_sym_enum_case_token1] = ACTIONS(1412), + [aux_sym_class_declaration_token1] = ACTIONS(1412), + [aux_sym_final_modifier_token1] = ACTIONS(1412), + [aux_sym_abstract_modifier_token1] = ACTIONS(1412), + [aux_sym_readonly_modifier_token1] = ACTIONS(1412), + [aux_sym_visibility_modifier_token1] = ACTIONS(1412), + [aux_sym_visibility_modifier_token2] = ACTIONS(1412), + [aux_sym_visibility_modifier_token3] = ACTIONS(1412), + [aux_sym__arrow_function_header_token1] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1410), + [aux_sym_cast_type_token1] = ACTIONS(1412), + [aux_sym_echo_statement_token1] = ACTIONS(1412), + [anon_sym_unset] = ACTIONS(1412), + [aux_sym_declare_statement_token1] = ACTIONS(1412), + [aux_sym_declare_statement_token2] = ACTIONS(1412), + [sym_float] = ACTIONS(1412), + [aux_sym_try_statement_token1] = ACTIONS(1412), + [aux_sym_goto_statement_token1] = ACTIONS(1412), + [aux_sym_continue_statement_token1] = ACTIONS(1412), + [aux_sym_break_statement_token1] = ACTIONS(1412), + [sym_integer] = ACTIONS(1412), + [aux_sym_return_statement_token1] = ACTIONS(1412), + [aux_sym_throw_expression_token1] = ACTIONS(1412), + [aux_sym_while_statement_token1] = ACTIONS(1412), + [aux_sym_while_statement_token2] = ACTIONS(1412), + [aux_sym_do_statement_token1] = ACTIONS(1412), + [aux_sym_for_statement_token1] = ACTIONS(1412), + [aux_sym_for_statement_token2] = ACTIONS(1412), + [aux_sym_foreach_statement_token1] = ACTIONS(1412), + [aux_sym_foreach_statement_token2] = ACTIONS(1412), + [aux_sym_if_statement_token1] = ACTIONS(1412), + [aux_sym_if_statement_token2] = ACTIONS(1412), + [aux_sym_else_if_clause_token1] = ACTIONS(1412), + [aux_sym_else_clause_token1] = ACTIONS(1412), + [aux_sym_match_expression_token1] = ACTIONS(1412), + [aux_sym_match_default_expression_token1] = ACTIONS(1412), + [aux_sym_switch_statement_token1] = ACTIONS(1412), + [aux_sym_switch_block_token1] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [aux_sym_clone_expression_token1] = ACTIONS(1412), + [aux_sym_print_intrinsic_token1] = ACTIONS(1412), + [aux_sym_object_creation_expression_token1] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [aux_sym__list_destructing_token1] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_self] = ACTIONS(1412), + [anon_sym_parent] = ACTIONS(1412), + [anon_sym_POUND_LBRACK] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [aux_sym_encapsed_string_token1] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [aux_sym_string_token1] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_boolean] = ACTIONS(1412), + [sym_null] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1410), + [aux_sym_yield_expression_token1] = ACTIONS(1412), + [aux_sym_include_expression_token1] = ACTIONS(1412), + [aux_sym_include_once_expression_token1] = ACTIONS(1412), + [aux_sym_require_expression_token1] = ACTIONS(1412), + [aux_sym_require_once_expression_token1] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + }, + [543] = { + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_name] = ACTIONS(1416), + [anon_sym_QMARK_GT] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [aux_sym_function_static_declaration_token1] = ACTIONS(1416), + [aux_sym_global_declaration_token1] = ACTIONS(1416), + [aux_sym_namespace_definition_token1] = ACTIONS(1416), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1416), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1416), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [aux_sym_trait_declaration_token1] = ACTIONS(1416), + [aux_sym_interface_declaration_token1] = ACTIONS(1416), + [aux_sym_enum_declaration_token1] = ACTIONS(1416), + [aux_sym_enum_case_token1] = ACTIONS(1416), + [aux_sym_class_declaration_token1] = ACTIONS(1416), + [aux_sym_final_modifier_token1] = ACTIONS(1416), + [aux_sym_abstract_modifier_token1] = ACTIONS(1416), + [aux_sym_readonly_modifier_token1] = ACTIONS(1416), + [aux_sym_visibility_modifier_token1] = ACTIONS(1416), + [aux_sym_visibility_modifier_token2] = ACTIONS(1416), + [aux_sym_visibility_modifier_token3] = ACTIONS(1416), + [aux_sym__arrow_function_header_token1] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1414), + [aux_sym_cast_type_token1] = ACTIONS(1416), + [aux_sym_echo_statement_token1] = ACTIONS(1416), + [anon_sym_unset] = ACTIONS(1416), + [aux_sym_declare_statement_token1] = ACTIONS(1416), + [aux_sym_declare_statement_token2] = ACTIONS(1416), + [sym_float] = ACTIONS(1416), + [aux_sym_try_statement_token1] = ACTIONS(1416), + [aux_sym_goto_statement_token1] = ACTIONS(1416), + [aux_sym_continue_statement_token1] = ACTIONS(1416), + [aux_sym_break_statement_token1] = ACTIONS(1416), + [sym_integer] = ACTIONS(1416), + [aux_sym_return_statement_token1] = ACTIONS(1416), + [aux_sym_throw_expression_token1] = ACTIONS(1416), + [aux_sym_while_statement_token1] = ACTIONS(1416), + [aux_sym_while_statement_token2] = ACTIONS(1416), + [aux_sym_do_statement_token1] = ACTIONS(1416), + [aux_sym_for_statement_token1] = ACTIONS(1416), + [aux_sym_for_statement_token2] = ACTIONS(1416), + [aux_sym_foreach_statement_token1] = ACTIONS(1416), + [aux_sym_foreach_statement_token2] = ACTIONS(1416), + [aux_sym_if_statement_token1] = ACTIONS(1416), + [aux_sym_if_statement_token2] = ACTIONS(1416), + [aux_sym_else_if_clause_token1] = ACTIONS(1416), + [aux_sym_else_clause_token1] = ACTIONS(1416), + [aux_sym_match_expression_token1] = ACTIONS(1416), + [aux_sym_match_default_expression_token1] = ACTIONS(1416), + [aux_sym_switch_statement_token1] = ACTIONS(1416), + [aux_sym_switch_block_token1] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [aux_sym_clone_expression_token1] = ACTIONS(1416), + [aux_sym_print_intrinsic_token1] = ACTIONS(1416), + [aux_sym_object_creation_expression_token1] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [aux_sym__list_destructing_token1] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_self] = ACTIONS(1416), + [anon_sym_parent] = ACTIONS(1416), + [anon_sym_POUND_LBRACK] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [aux_sym_encapsed_string_token1] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [aux_sym_string_token1] = ACTIONS(1414), + [anon_sym_LT_LT_LT] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1414), + [sym_boolean] = ACTIONS(1416), + [sym_null] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1414), + [aux_sym_yield_expression_token1] = ACTIONS(1416), + [aux_sym_include_expression_token1] = ACTIONS(1416), + [aux_sym_include_once_expression_token1] = ACTIONS(1416), + [aux_sym_require_expression_token1] = ACTIONS(1416), + [aux_sym_require_once_expression_token1] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + }, + [544] = { + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_name] = ACTIONS(1420), + [anon_sym_QMARK_GT] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [aux_sym_function_static_declaration_token1] = ACTIONS(1420), + [aux_sym_global_declaration_token1] = ACTIONS(1420), + [aux_sym_namespace_definition_token1] = ACTIONS(1420), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1420), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1420), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1420), + [anon_sym_BSLASH] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [aux_sym_trait_declaration_token1] = ACTIONS(1420), + [aux_sym_interface_declaration_token1] = ACTIONS(1420), + [aux_sym_enum_declaration_token1] = ACTIONS(1420), + [aux_sym_enum_case_token1] = ACTIONS(1420), + [aux_sym_class_declaration_token1] = ACTIONS(1420), + [aux_sym_final_modifier_token1] = ACTIONS(1420), + [aux_sym_abstract_modifier_token1] = ACTIONS(1420), + [aux_sym_readonly_modifier_token1] = ACTIONS(1420), + [aux_sym_visibility_modifier_token1] = ACTIONS(1420), + [aux_sym_visibility_modifier_token2] = ACTIONS(1420), + [aux_sym_visibility_modifier_token3] = ACTIONS(1420), + [aux_sym__arrow_function_header_token1] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1418), + [aux_sym_cast_type_token1] = ACTIONS(1420), + [aux_sym_echo_statement_token1] = ACTIONS(1420), + [anon_sym_unset] = ACTIONS(1420), + [aux_sym_declare_statement_token1] = ACTIONS(1420), + [aux_sym_declare_statement_token2] = ACTIONS(1420), + [sym_float] = ACTIONS(1420), + [aux_sym_try_statement_token1] = ACTIONS(1420), + [aux_sym_goto_statement_token1] = ACTIONS(1420), + [aux_sym_continue_statement_token1] = ACTIONS(1420), + [aux_sym_break_statement_token1] = ACTIONS(1420), + [sym_integer] = ACTIONS(1420), + [aux_sym_return_statement_token1] = ACTIONS(1420), + [aux_sym_throw_expression_token1] = ACTIONS(1420), + [aux_sym_while_statement_token1] = ACTIONS(1420), + [aux_sym_while_statement_token2] = ACTIONS(1420), + [aux_sym_do_statement_token1] = ACTIONS(1420), + [aux_sym_for_statement_token1] = ACTIONS(1420), + [aux_sym_for_statement_token2] = ACTIONS(1420), + [aux_sym_foreach_statement_token1] = ACTIONS(1420), + [aux_sym_foreach_statement_token2] = ACTIONS(1420), + [aux_sym_if_statement_token1] = ACTIONS(1420), + [aux_sym_if_statement_token2] = ACTIONS(1420), + [aux_sym_else_if_clause_token1] = ACTIONS(1420), + [aux_sym_else_clause_token1] = ACTIONS(1420), + [aux_sym_match_expression_token1] = ACTIONS(1420), + [aux_sym_match_default_expression_token1] = ACTIONS(1420), + [aux_sym_switch_statement_token1] = ACTIONS(1420), + [aux_sym_switch_block_token1] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [aux_sym_clone_expression_token1] = ACTIONS(1420), + [aux_sym_print_intrinsic_token1] = ACTIONS(1420), + [aux_sym_object_creation_expression_token1] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym__list_destructing_token1] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_self] = ACTIONS(1420), + [anon_sym_parent] = ACTIONS(1420), + [anon_sym_POUND_LBRACK] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [aux_sym_encapsed_string_token1] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [aux_sym_string_token1] = ACTIONS(1418), + [anon_sym_LT_LT_LT] = ACTIONS(1418), + [anon_sym_BQUOTE] = ACTIONS(1418), + [sym_boolean] = ACTIONS(1420), + [sym_null] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1418), + [aux_sym_yield_expression_token1] = ACTIONS(1420), + [aux_sym_include_expression_token1] = ACTIONS(1420), + [aux_sym_include_once_expression_token1] = ACTIONS(1420), + [aux_sym_require_expression_token1] = ACTIONS(1420), + [aux_sym_require_once_expression_token1] = ACTIONS(1420), + [sym_comment] = ACTIONS(3), + }, + [545] = { + [ts_builtin_sym_end] = ACTIONS(979), + [sym_name] = ACTIONS(981), + [anon_sym_QMARK_GT] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(979), + [aux_sym_function_static_declaration_token1] = ACTIONS(981), + [aux_sym_global_declaration_token1] = ACTIONS(981), + [aux_sym_namespace_definition_token1] = ACTIONS(981), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(981), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(981), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(981), + [anon_sym_BSLASH] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [aux_sym_trait_declaration_token1] = ACTIONS(981), + [aux_sym_interface_declaration_token1] = ACTIONS(981), + [aux_sym_enum_declaration_token1] = ACTIONS(981), + [aux_sym_enum_case_token1] = ACTIONS(981), + [aux_sym_class_declaration_token1] = ACTIONS(981), + [aux_sym_final_modifier_token1] = ACTIONS(981), + [aux_sym_abstract_modifier_token1] = ACTIONS(981), + [aux_sym_readonly_modifier_token1] = ACTIONS(981), + [aux_sym_visibility_modifier_token1] = ACTIONS(981), + [aux_sym_visibility_modifier_token2] = ACTIONS(981), + [aux_sym_visibility_modifier_token3] = ACTIONS(981), + [aux_sym__arrow_function_header_token1] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(979), + [aux_sym_cast_type_token1] = ACTIONS(981), + [aux_sym_echo_statement_token1] = ACTIONS(981), + [anon_sym_unset] = ACTIONS(981), + [aux_sym_declare_statement_token1] = ACTIONS(981), + [aux_sym_declare_statement_token2] = ACTIONS(981), + [sym_float] = ACTIONS(981), + [aux_sym_try_statement_token1] = ACTIONS(981), + [aux_sym_goto_statement_token1] = ACTIONS(981), + [aux_sym_continue_statement_token1] = ACTIONS(981), + [aux_sym_break_statement_token1] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [aux_sym_return_statement_token1] = ACTIONS(981), + [aux_sym_throw_expression_token1] = ACTIONS(981), + [aux_sym_while_statement_token1] = ACTIONS(981), + [aux_sym_while_statement_token2] = ACTIONS(981), + [aux_sym_do_statement_token1] = ACTIONS(981), + [aux_sym_for_statement_token1] = ACTIONS(981), + [aux_sym_for_statement_token2] = ACTIONS(981), + [aux_sym_foreach_statement_token1] = ACTIONS(981), + [aux_sym_foreach_statement_token2] = ACTIONS(981), + [aux_sym_if_statement_token1] = ACTIONS(981), + [aux_sym_if_statement_token2] = ACTIONS(981), + [aux_sym_else_if_clause_token1] = ACTIONS(981), + [aux_sym_else_clause_token1] = ACTIONS(981), + [aux_sym_match_expression_token1] = ACTIONS(981), + [aux_sym_match_default_expression_token1] = ACTIONS(981), + [aux_sym_switch_statement_token1] = ACTIONS(981), + [aux_sym_switch_block_token1] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [aux_sym_clone_expression_token1] = ACTIONS(981), + [aux_sym_print_intrinsic_token1] = ACTIONS(981), + [aux_sym_object_creation_expression_token1] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_DASH_DASH] = ACTIONS(979), + [aux_sym__list_destructing_token1] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_self] = ACTIONS(981), + [anon_sym_parent] = ACTIONS(981), + [anon_sym_POUND_LBRACK] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(979), + [aux_sym_encapsed_string_token1] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [aux_sym_string_token1] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_boolean] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), + [aux_sym_yield_expression_token1] = ACTIONS(981), + [aux_sym_include_expression_token1] = ACTIONS(981), + [aux_sym_include_once_expression_token1] = ACTIONS(981), + [aux_sym_require_expression_token1] = ACTIONS(981), + [aux_sym_require_once_expression_token1] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + }, + [546] = { + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_name] = ACTIONS(1424), + [anon_sym_QMARK_GT] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [aux_sym_function_static_declaration_token1] = ACTIONS(1424), + [aux_sym_global_declaration_token1] = ACTIONS(1424), + [aux_sym_namespace_definition_token1] = ACTIONS(1424), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1424), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1424), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [aux_sym_trait_declaration_token1] = ACTIONS(1424), + [aux_sym_interface_declaration_token1] = ACTIONS(1424), + [aux_sym_enum_declaration_token1] = ACTIONS(1424), + [aux_sym_enum_case_token1] = ACTIONS(1424), + [aux_sym_class_declaration_token1] = ACTIONS(1424), + [aux_sym_final_modifier_token1] = ACTIONS(1424), + [aux_sym_abstract_modifier_token1] = ACTIONS(1424), + [aux_sym_readonly_modifier_token1] = ACTIONS(1424), + [aux_sym_visibility_modifier_token1] = ACTIONS(1424), + [aux_sym_visibility_modifier_token2] = ACTIONS(1424), + [aux_sym_visibility_modifier_token3] = ACTIONS(1424), + [aux_sym__arrow_function_header_token1] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1422), + [aux_sym_cast_type_token1] = ACTIONS(1424), + [aux_sym_echo_statement_token1] = ACTIONS(1424), + [anon_sym_unset] = ACTIONS(1424), + [aux_sym_declare_statement_token1] = ACTIONS(1424), + [aux_sym_declare_statement_token2] = ACTIONS(1424), + [sym_float] = ACTIONS(1424), + [aux_sym_try_statement_token1] = ACTIONS(1424), + [aux_sym_goto_statement_token1] = ACTIONS(1424), + [aux_sym_continue_statement_token1] = ACTIONS(1424), + [aux_sym_break_statement_token1] = ACTIONS(1424), + [sym_integer] = ACTIONS(1424), + [aux_sym_return_statement_token1] = ACTIONS(1424), + [aux_sym_throw_expression_token1] = ACTIONS(1424), + [aux_sym_while_statement_token1] = ACTIONS(1424), + [aux_sym_while_statement_token2] = ACTIONS(1424), + [aux_sym_do_statement_token1] = ACTIONS(1424), + [aux_sym_for_statement_token1] = ACTIONS(1424), + [aux_sym_for_statement_token2] = ACTIONS(1424), + [aux_sym_foreach_statement_token1] = ACTIONS(1424), + [aux_sym_foreach_statement_token2] = ACTIONS(1424), + [aux_sym_if_statement_token1] = ACTIONS(1424), + [aux_sym_if_statement_token2] = ACTIONS(1424), + [aux_sym_else_if_clause_token1] = ACTIONS(1424), + [aux_sym_else_clause_token1] = ACTIONS(1424), + [aux_sym_match_expression_token1] = ACTIONS(1424), + [aux_sym_match_default_expression_token1] = ACTIONS(1424), + [aux_sym_switch_statement_token1] = ACTIONS(1424), + [aux_sym_switch_block_token1] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [aux_sym_clone_expression_token1] = ACTIONS(1424), + [aux_sym_print_intrinsic_token1] = ACTIONS(1424), + [aux_sym_object_creation_expression_token1] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [aux_sym__list_destructing_token1] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_self] = ACTIONS(1424), + [anon_sym_parent] = ACTIONS(1424), + [anon_sym_POUND_LBRACK] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [aux_sym_encapsed_string_token1] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [aux_sym_string_token1] = ACTIONS(1422), + [anon_sym_LT_LT_LT] = ACTIONS(1422), + [anon_sym_BQUOTE] = ACTIONS(1422), + [sym_boolean] = ACTIONS(1424), + [sym_null] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1422), + [aux_sym_yield_expression_token1] = ACTIONS(1424), + [aux_sym_include_expression_token1] = ACTIONS(1424), + [aux_sym_include_once_expression_token1] = ACTIONS(1424), + [aux_sym_require_expression_token1] = ACTIONS(1424), + [aux_sym_require_once_expression_token1] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + }, + [547] = { + [sym_name] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1428), + [aux_sym_function_static_declaration_token1] = ACTIONS(1426), + [aux_sym_global_declaration_token1] = ACTIONS(1426), + [aux_sym_namespace_definition_token1] = ACTIONS(1426), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1426), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1426), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [aux_sym_trait_declaration_token1] = ACTIONS(1426), + [aux_sym_interface_declaration_token1] = ACTIONS(1426), + [aux_sym_enum_declaration_token1] = ACTIONS(1426), + [anon_sym_COLON] = ACTIONS(1428), + [aux_sym_class_declaration_token1] = ACTIONS(1426), + [aux_sym_final_modifier_token1] = ACTIONS(1426), + [aux_sym_abstract_modifier_token1] = ACTIONS(1426), + [aux_sym_readonly_modifier_token1] = ACTIONS(1426), + [aux_sym_visibility_modifier_token1] = ACTIONS(1426), + [aux_sym_visibility_modifier_token2] = ACTIONS(1426), + [aux_sym_visibility_modifier_token3] = ACTIONS(1426), + [aux_sym__arrow_function_header_token1] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1428), + [aux_sym_cast_type_token1] = ACTIONS(1426), + [aux_sym_echo_statement_token1] = ACTIONS(1426), + [anon_sym_unset] = ACTIONS(1426), + [aux_sym_declare_statement_token1] = ACTIONS(1426), + [sym_float] = ACTIONS(1426), + [aux_sym_try_statement_token1] = ACTIONS(1426), + [aux_sym_goto_statement_token1] = ACTIONS(1426), + [aux_sym_continue_statement_token1] = ACTIONS(1426), + [aux_sym_break_statement_token1] = ACTIONS(1426), + [sym_integer] = ACTIONS(1426), + [aux_sym_return_statement_token1] = ACTIONS(1426), + [aux_sym_throw_expression_token1] = ACTIONS(1426), + [aux_sym_while_statement_token1] = ACTIONS(1426), + [aux_sym_do_statement_token1] = ACTIONS(1426), + [aux_sym_for_statement_token1] = ACTIONS(1426), + [aux_sym_foreach_statement_token1] = ACTIONS(1426), + [aux_sym_if_statement_token1] = ACTIONS(1426), + [aux_sym_match_expression_token1] = ACTIONS(1426), + [aux_sym_switch_statement_token1] = ACTIONS(1426), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [aux_sym_clone_expression_token1] = ACTIONS(1426), + [aux_sym_print_intrinsic_token1] = ACTIONS(1426), + [aux_sym_object_creation_expression_token1] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [aux_sym__list_destructing_token1] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_self] = ACTIONS(1426), + [anon_sym_parent] = ACTIONS(1426), + [anon_sym_POUND_LBRACK] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [aux_sym_encapsed_string_token1] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [aux_sym_string_token1] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [sym_boolean] = ACTIONS(1426), + [sym_null] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1428), + [aux_sym_yield_expression_token1] = ACTIONS(1426), + [aux_sym_include_expression_token1] = ACTIONS(1426), + [aux_sym_include_once_expression_token1] = ACTIONS(1426), + [aux_sym_require_expression_token1] = ACTIONS(1426), + [aux_sym_require_once_expression_token1] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + }, + [548] = { + [sym_qualified_name] = STATE(697), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2338), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__primary_expression] = STATE(920), + [sym_parenthesized_expression] = STATE(694), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_variable] = STATE(673), + [sym_member_access_expression] = STATE(673), + [sym_nullsafe_member_access_expression] = STATE(673), + [sym_scoped_property_access_expression] = STATE(673), + [sym_function_call_expression] = STATE(641), + [sym_scoped_call_expression] = STATE(641), + [sym__scope_resolution_qualifier] = STATE(2486), + [sym_relative_scope] = STATE(2486), + [sym_member_call_expression] = STATE(641), + [sym_nullsafe_member_call_expression] = STATE(641), + [sym_subscript_expression] = STATE(641), + [sym__dereferencable_expression] = STATE(1631), + [sym_array_creation_expression] = STATE(694), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(694), + [sym_string] = STATE(694), + [sym_heredoc] = STATE(694), + [sym_nowdoc] = STATE(694), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(694), + [sym_dynamic_variable_name] = STATE(641), + [sym_variable_name] = STATE(641), + [sym__reserved_identifier] = STATE(1482), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(1430), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(1432), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + }, + [549] = { + [sym_qualified_name] = STATE(697), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2474), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__primary_expression] = STATE(920), + [sym_parenthesized_expression] = STATE(694), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_variable] = STATE(673), + [sym_member_access_expression] = STATE(673), + [sym_nullsafe_member_access_expression] = STATE(673), + [sym_scoped_property_access_expression] = STATE(673), + [sym_function_call_expression] = STATE(641), + [sym_scoped_call_expression] = STATE(641), + [sym__scope_resolution_qualifier] = STATE(2486), + [sym_relative_scope] = STATE(2486), + [sym_member_call_expression] = STATE(641), + [sym_nullsafe_member_call_expression] = STATE(641), + [sym_subscript_expression] = STATE(641), + [sym__dereferencable_expression] = STATE(1631), + [sym_array_creation_expression] = STATE(694), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(694), + [sym_string] = STATE(694), + [sym_heredoc] = STATE(694), + [sym_nowdoc] = STATE(694), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(694), + [sym_dynamic_variable_name] = STATE(641), + [sym_variable_name] = STATE(641), + [sym__reserved_identifier] = STATE(1482), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(1430), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(1432), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + }, + [550] = { + [sym_qualified_name] = STATE(808), + [sym_namespace_name_as_prefix] = STATE(2498), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2491), + [sym_arrow_function] = STATE(1053), + [sym_throw_expression] = STATE(1053), + [sym__primary_expression] = STATE(1035), + [sym_parenthesized_expression] = STATE(809), + [sym_class_constant_access_expression] = STATE(879), + [sym_print_intrinsic] = STATE(1053), + [sym_anonymous_function_creation_expression] = STATE(1053), + [sym_object_creation_expression] = STATE(1053), + [sym_update_expression] = STATE(1053), + [sym_cast_variable] = STATE(795), + [sym_member_access_expression] = STATE(795), + [sym_nullsafe_member_access_expression] = STATE(795), + [sym_scoped_property_access_expression] = STATE(795), + [sym_function_call_expression] = STATE(760), + [sym_scoped_call_expression] = STATE(760), + [sym__scope_resolution_qualifier] = STATE(2456), + [sym_relative_scope] = STATE(2456), + [sym_member_call_expression] = STATE(760), + [sym_nullsafe_member_call_expression] = STATE(760), + [sym_subscript_expression] = STATE(760), + [sym__dereferencable_expression] = STATE(1656), + [sym_array_creation_expression] = STATE(809), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1762), + [sym_encapsed_string] = STATE(809), + [sym_string] = STATE(809), + [sym_heredoc] = STATE(809), + [sym_nowdoc] = STATE(809), + [sym_shell_command_expression] = STATE(1053), + [sym__string] = STATE(809), + [sym_dynamic_variable_name] = STATE(760), + [sym_variable_name] = STATE(760), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(1436), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(1438), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + }, + [551] = { + [sym_qualified_name] = STATE(697), + [sym_namespace_name_as_prefix] = STATE(2452), + [sym_namespace_name] = STATE(2497), + [sym_static_modifier] = STATE(2495), + [sym__arrow_function_header] = STATE(2394), + [sym_arrow_function] = STATE(902), + [sym_throw_expression] = STATE(902), + [sym__primary_expression] = STATE(920), + [sym_parenthesized_expression] = STATE(694), + [sym_class_constant_access_expression] = STATE(751), + [sym_print_intrinsic] = STATE(902), + [sym_anonymous_function_creation_expression] = STATE(902), + [sym_object_creation_expression] = STATE(902), + [sym_update_expression] = STATE(902), + [sym_cast_variable] = STATE(673), + [sym_member_access_expression] = STATE(673), + [sym_nullsafe_member_access_expression] = STATE(673), + [sym_scoped_property_access_expression] = STATE(673), + [sym_function_call_expression] = STATE(641), + [sym_scoped_call_expression] = STATE(641), + [sym__scope_resolution_qualifier] = STATE(2486), + [sym_relative_scope] = STATE(2486), + [sym_member_call_expression] = STATE(641), + [sym_nullsafe_member_call_expression] = STATE(641), + [sym_subscript_expression] = STATE(641), + [sym__dereferencable_expression] = STATE(1631), + [sym_array_creation_expression] = STATE(694), + [sym_attribute_group] = STATE(1309), + [sym_attribute_list] = STATE(1751), + [sym_encapsed_string] = STATE(694), + [sym_string] = STATE(694), + [sym_heredoc] = STATE(694), + [sym_nowdoc] = STATE(694), + [sym_shell_command_expression] = STATE(902), + [sym__string] = STATE(694), + [sym_dynamic_variable_name] = STATE(641), + [sym_variable_name] = STATE(641), + [sym__reserved_identifier] = STATE(1482), + [aux_sym_attribute_list_repeat1] = STATE(1309), + [sym_name] = ACTIONS(1430), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(1432), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1444), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1442), 41, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_base_clause_token1, + aux_sym_class_interface_clause_token1, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [70] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1450), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1448), 41, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_base_clause_token1, + aux_sym_class_interface_clause_token1, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [140] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1454), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1452), 41, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_base_clause_token1, + aux_sym_class_interface_clause_token1, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [210] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1458), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1456), 41, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_base_clause_token1, + aux_sym_class_interface_clause_token1, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [280] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(564), 1, + sym_arguments, + ACTIONS(1462), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1460), 38, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [353] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(569), 1, + sym_arguments, + ACTIONS(1468), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1466), 38, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [426] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1474), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1480), 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(1470), 18, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1472), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [507] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(566), 1, + sym_arguments, + ACTIONS(1484), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1482), 38, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [580] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(563), 1, + sym_arguments, + ACTIONS(1488), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1486), 38, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [653] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(565), 1, + sym_arguments, + ACTIONS(1492), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1490), 38, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [726] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1496), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1494), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [794] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1500), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1498), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [862] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1504), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1502), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [930] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1508), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1506), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [998] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1512), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1510), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [1066] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1516), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1514), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [1134] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1520), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1518), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [1202] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1524), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1522), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [1270] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1528), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1526), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [1338] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1532), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1530), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [1406] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1536), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1534), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [1474] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1540), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1538), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [1542] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1544), 21, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1542), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [1610] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1546), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1548), 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(1470), 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(1472), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [1689] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1474), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1480), 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(1470), 18, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1472), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [1764] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1550), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1548), 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(1470), 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(1472), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [1843] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1552), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1554), 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(1470), 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(1472), 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, + [1921] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1556), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1554), 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(1470), 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(1472), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [1999] = 12, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1550), 1, + anon_sym_EQ, + ACTIONS(1558), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_arguments, + STATE(1979), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1548), 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(1472), 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, + [2082] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1550), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1548), 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(1470), 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(1472), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [2155] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1560), 1, + anon_sym_EQ, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(602), 1, + sym_arguments, + ACTIONS(1564), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1566), 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(1470), 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(1472), 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, + [2232] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + ACTIONS(1568), 1, + anon_sym_EQ, + STATE(602), 1, + sym_arguments, + ACTIONS(1564), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1566), 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(1470), 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(1472), 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, + [2309] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1474), 1, + anon_sym_EQ, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(602), 1, + sym_arguments, + ACTIONS(1564), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1480), 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(1470), 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(1472), 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, + [2386] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(594), 1, + sym_arguments, + ACTIONS(1462), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1460), 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, + [2455] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(595), 1, + sym_arguments, + ACTIONS(1488), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1486), 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, + [2524] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1546), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1548), 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(1470), 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(1472), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [2597] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(610), 1, + sym_arguments, + ACTIONS(1492), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1490), 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, + [2666] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(611), 1, + sym_arguments, + ACTIONS(1484), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1482), 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, + [2735] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(593), 1, + sym_arguments, + ACTIONS(1468), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1466), 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, + [2804] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1474), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1480), 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(1472), 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, + [2881] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1450), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1448), 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, + [2945] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1524), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1522), 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, + [3009] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1504), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1502), 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, + [3073] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1500), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1498), 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, + [3137] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1528), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1526), 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, + [3201] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1550), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1570), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1548), 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(1472), 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, + [3279] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1556), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1554), 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(1470), 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(1472), 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, + [3351] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1540), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1538), 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, + [3415] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1552), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1554), 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(1470), 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(1472), 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, + [3487] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1520), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1518), 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, + [3551] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1536), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1534), 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, + [3615] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1454), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1452), 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, + [3679] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1572), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1574), 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(1470), 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(1472), 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, + [3755] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1532), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1530), 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, + [3819] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1550), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1576), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1548), 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(1472), 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, + [3897] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1578), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1574), 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(1470), 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(1472), 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, + [3973] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1552), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1580), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1554), 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(1472), 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, + [4051] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1496), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1494), 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, + [4115] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1508), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1506), 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, + [4179] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1512), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1510), 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, + [4243] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1516), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1514), 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, + [4307] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1444), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1442), 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, + [4371] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1544), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1542), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_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, + [4435] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1458), 20, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1456), 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, + [4499] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1474), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1480), 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(1472), 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, + [4570] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1560), 1, + anon_sym_EQ, + ACTIONS(1564), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1566), 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(1470), 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(1472), 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, + [4641] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1568), 1, + anon_sym_EQ, + ACTIONS(1564), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1566), 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(1470), 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(1472), 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, + [4712] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1474), 1, + anon_sym_EQ, + ACTIONS(1564), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1480), 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(1470), 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(1472), 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, + [4783] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1552), 1, + anon_sym_EQ, + STATE(572), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1583), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1554), 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(1472), 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, + [4860] = 10, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1550), 1, + anon_sym_EQ, + ACTIONS(1558), 1, + anon_sym_RPAREN, + STATE(1979), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1548), 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(1472), 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, + [4937] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1552), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1580), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1554), 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(1472), 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, + [5009] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1550), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1576), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1548), 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(1472), 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, + [5081] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1572), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1574), 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(1470), 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(1472), 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, + [5151] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1578), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1574), 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(1470), 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(1472), 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, + [5221] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1550), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1570), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1548), 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(1472), 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, + [5293] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1552), 1, + anon_sym_EQ, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1583), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1470), 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(1554), 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(1472), 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, + [5364] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(642), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1474), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1480), 27, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [5425] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(648), 1, + sym_arguments, + ACTIONS(1492), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1490), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [5484] = 24, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(39), 1, + aux_sym_final_modifier_token1, + ACTIONS(41), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1590), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1592), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1596), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1598), 1, + sym_var_modifier, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1604), 1, + anon_sym_DOLLAR, + STATE(1486), 1, + sym_qualified_name, + STATE(1634), 1, + sym_variable_name, + STATE(1769), 1, + sym_property_element, + STATE(1770), 1, + sym__function_definition_header, + STATE(1973), 1, + sym__type, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(1600), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1480), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1025), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [5581] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(661), 1, + sym_arguments, + ACTIONS(1468), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1466), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [5640] = 24, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(39), 1, + aux_sym_final_modifier_token1, + ACTIONS(41), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1590), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1592), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1596), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1598), 1, + sym_var_modifier, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1604), 1, + anon_sym_DOLLAR, + STATE(1486), 1, + sym_qualified_name, + STATE(1634), 1, + sym_variable_name, + STATE(1742), 1, + sym_property_element, + STATE(1743), 1, + sym__function_definition_header, + STATE(2061), 1, + sym__type, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(1600), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1480), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1025), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [5737] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(642), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1470), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [5802] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(572), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1611), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [5867] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(644), 1, + sym_arguments, + ACTIONS(1488), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1486), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [5926] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(652), 1, + sym_arguments, + ACTIONS(1484), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1482), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [5985] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(572), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1470), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6050] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(647), 1, + sym_arguments, + ACTIONS(1462), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1460), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6109] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1528), 13, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1526), 34, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_class_interface_clause_token1, + aux_sym_use_instead_of_clause_token1, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6164] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(728), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1615), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1613), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6229] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(642), 1, + sym_arguments, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1470), 25, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6292] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1536), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1534), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6346] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1619), 1, + sym_name, + ACTIONS(1623), 1, + aux_sym_class_declaration_token1, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + STATE(2424), 1, + sym_attribute_list, + STATE(2497), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(796), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(2363), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(1621), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(797), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(798), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1651), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1518), 11, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [6442] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1500), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1498), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6496] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1458), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1456), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6550] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1532), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1530), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6604] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1504), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1502), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6658] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1508), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1506), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6712] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1540), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1538), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6766] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1528), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1526), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6820] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1454), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1452), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6874] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1512), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1510), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6928] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1450), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1448), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6982] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1629), 1, + sym_name, + ACTIONS(1631), 1, + aux_sym_class_declaration_token1, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + STATE(2446), 1, + sym_attribute_list, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(699), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(2514), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(668), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(669), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1629), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1518), 11, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [7078] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1516), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1514), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7132] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1637), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1635), 34, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_class_interface_clause_token1, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOLLAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7186] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1544), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7240] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1496), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1494), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7294] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1444), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1442), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7348] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1520), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1518), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7402] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1524), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1522), 33, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7456] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(569), 1, + sym_arguments, + ACTIONS(1641), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1639), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_use_instead_of_clause_token1, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7514] = 4, + ACTIONS(1446), 1, + sym_comment, + STATE(566), 1, + sym_arguments, + ACTIONS(1484), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1482), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7569] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(719), 1, + sym_arguments, + ACTIONS(1462), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1460), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7626] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(720), 1, + sym_arguments, + ACTIONS(1488), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1486), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7683] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(705), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1474), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1480), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7742] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(705), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1645), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1643), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7801] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(728), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1615), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1613), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7860] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1647), 1, + anon_sym_LPAREN, + STATE(913), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1615), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1613), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7919] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(714), 1, + sym_arguments, + ACTIONS(1492), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1490), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [7976] = 4, + ACTIONS(1446), 1, + sym_comment, + STATE(569), 1, + sym_arguments, + ACTIONS(1468), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1466), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8031] = 24, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(101), 1, + aux_sym__list_destructing_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(685), 1, + anon_sym_AMP, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1649), 1, + sym_name, + STATE(2269), 1, + sym__list_destructing, + STATE(2270), 1, + sym_by_ref, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1495), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1622), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2475), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1499), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1431), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1518), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [8126] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1478), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1470), 25, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8183] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1470), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8242] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(744), 1, + sym_arguments, + ACTIONS(1484), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1482), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8299] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1474), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1480), 27, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8354] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(661), 1, + sym_arguments, + ACTIONS(1641), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1639), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8411] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(565), 1, + sym_arguments, + ACTIONS(1492), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1490), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8468] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(566), 1, + sym_arguments, + ACTIONS(1484), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1482), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8525] = 22, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1653), 1, + anon_sym_RBRACE, + STATE(683), 1, + aux_sym_use_list_repeat1, + STATE(1504), 1, + sym_class_constant_access_expression, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1495), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2137), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + STATE(2475), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1622), 5, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1518), 14, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + sym_dynamic_variable_name, + sym_variable_name, + [8616] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1470), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8675] = 24, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(101), 1, + aux_sym__list_destructing_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(685), 1, + anon_sym_AMP, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1649), 1, + sym_name, + STATE(2035), 1, + sym_by_ref, + STATE(2036), 1, + sym__list_destructing, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1495), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1622), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2475), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1471), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1400), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1518), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [8770] = 22, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1655), 1, + anon_sym_RBRACE, + STATE(689), 1, + aux_sym_use_list_repeat1, + STATE(1504), 1, + sym_class_constant_access_expression, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1495), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2137), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + STATE(2475), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1622), 5, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1518), 14, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + sym_dynamic_variable_name, + sym_variable_name, + [8861] = 4, + ACTIONS(1446), 1, + sym_comment, + STATE(565), 1, + sym_arguments, + ACTIONS(1492), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1490), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8916] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1664), 1, + anon_sym_EQ, + ACTIONS(1661), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1659), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1657), 30, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8973] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(1668), 1, + anon_sym_COMMA, + ACTIONS(1670), 1, + anon_sym_RPAREN, + ACTIONS(1672), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1674), 1, + anon_sym_QMARK, + ACTIONS(1676), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(1148), 1, + sym_attribute_list, + STATE(1150), 1, + sym_visibility_modifier, + STATE(1486), 1, + sym_qualified_name, + STATE(1642), 1, + sym__type, + STATE(1892), 1, + sym_reference_modifier, + STATE(1896), 1, + sym_variable_name, + STATE(2360), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1291), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1893), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1568), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [9070] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(564), 1, + sym_arguments, + ACTIONS(1462), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1460), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9127] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(563), 1, + sym_arguments, + ACTIONS(1488), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1486), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9184] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1680), 1, + sym_name, + ACTIONS(1686), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1689), 1, + anon_sym_BSLASH, + ACTIONS(1692), 1, + anon_sym_RBRACE, + ACTIONS(1694), 1, + anon_sym_LPAREN, + ACTIONS(1697), 1, + aux_sym_cast_type_token1, + ACTIONS(1700), 1, + anon_sym_LBRACK, + ACTIONS(1709), 1, + anon_sym_LT_LT_LT, + ACTIONS(1712), 1, + anon_sym_DOLLAR, + STATE(689), 1, + aux_sym_use_list_repeat1, + STATE(1504), 1, + sym_class_constant_access_expression, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(1703), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(1706), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1495), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2137), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + STATE(2475), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(1683), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1622), 5, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1518), 14, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + sym_dynamic_variable_name, + sym_variable_name, + [9275] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1611), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9334] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(740), 1, + sym_arguments, + ACTIONS(1468), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1466), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9391] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(705), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1717), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1715), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9450] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1611), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9509] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(642), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1470), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9568] = 4, + ACTIONS(1446), 1, + sym_comment, + STATE(564), 1, + sym_arguments, + ACTIONS(1462), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1460), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9623] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(1672), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1674), 1, + anon_sym_QMARK, + ACTIONS(1676), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(1719), 1, + anon_sym_COMMA, + ACTIONS(1721), 1, + anon_sym_RPAREN, + STATE(1148), 1, + sym_attribute_list, + STATE(1150), 1, + sym_visibility_modifier, + STATE(1486), 1, + sym_qualified_name, + STATE(1642), 1, + sym__type, + STATE(1892), 1, + sym_reference_modifier, + STATE(1896), 1, + sym_variable_name, + STATE(2360), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1291), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1961), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1568), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [9720] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(642), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1470), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9779] = 4, + ACTIONS(1446), 1, + sym_comment, + STATE(563), 1, + sym_arguments, + ACTIONS(1488), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1486), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9834] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(728), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1615), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1613), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9893] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(569), 1, + sym_arguments, + ACTIONS(1468), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1466), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9950] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1725), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1723), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10002] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1729), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1727), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10054] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1496), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1494), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10106] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1516), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1514), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10158] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1536), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1534), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10210] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1458), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1456), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10262] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(1672), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1674), 1, + anon_sym_QMARK, + ACTIONS(1676), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(1731), 1, + anon_sym_RPAREN, + STATE(1148), 1, + sym_attribute_list, + STATE(1150), 1, + sym_visibility_modifier, + STATE(1486), 1, + sym_qualified_name, + STATE(1642), 1, + sym__type, + STATE(1892), 1, + sym_reference_modifier, + STATE(1896), 1, + sym_variable_name, + STATE(2360), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1291), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(2109), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1568), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [10356] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1426), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1428), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10408] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1444), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1442), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10460] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1735), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1733), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10512] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + ACTIONS(1528), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1526), 31, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10566] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1741), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1739), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10618] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1450), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1448), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10670] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1508), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1506), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10722] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1745), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1743), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10774] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1540), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1538), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10826] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1749), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1747), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10878] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1753), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1751), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10930] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1504), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1502), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [10982] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1500), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1498), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11034] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1757), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1755), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11086] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1761), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1759), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11138] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(1672), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1674), 1, + anon_sym_QMARK, + ACTIONS(1676), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(1763), 1, + anon_sym_RPAREN, + STATE(1148), 1, + sym_attribute_list, + STATE(1150), 1, + sym_visibility_modifier, + STATE(1486), 1, + sym_qualified_name, + STATE(1642), 1, + sym__type, + STATE(1892), 1, + sym_reference_modifier, + STATE(1896), 1, + sym_variable_name, + STATE(2360), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1291), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(2109), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1568), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [11232] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(1672), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1674), 1, + anon_sym_QMARK, + ACTIONS(1676), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(1765), 1, + anon_sym_RPAREN, + STATE(1148), 1, + sym_attribute_list, + STATE(1150), 1, + sym_visibility_modifier, + STATE(1486), 1, + sym_qualified_name, + STATE(1642), 1, + sym__type, + STATE(1892), 1, + sym_reference_modifier, + STATE(1896), 1, + sym_variable_name, + STATE(2360), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1291), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(2109), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1568), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [11326] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1532), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1530), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11378] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1769), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1767), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11430] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1659), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1657), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11482] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1534), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1773), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1771), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11536] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1777), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1775), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11588] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(1672), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1674), 1, + anon_sym_QMARK, + ACTIONS(1676), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(1779), 1, + anon_sym_RPAREN, + STATE(1148), 1, + sym_attribute_list, + STATE(1150), 1, + sym_visibility_modifier, + STATE(1486), 1, + sym_qualified_name, + STATE(1642), 1, + sym__type, + STATE(1892), 1, + sym_reference_modifier, + STATE(1896), 1, + sym_variable_name, + STATE(2360), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1291), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(2109), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1568), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [11682] = 23, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(685), 1, + anon_sym_AMP, + ACTIONS(817), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1649), 1, + sym_name, + STATE(2112), 1, + sym__array_destructing, + STATE(2117), 1, + sym_by_ref, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1495), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1622), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2475), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1493), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1461), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1518), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [11774] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1783), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1781), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11826] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1787), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1785), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11878] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1791), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1789), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11930] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1795), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1793), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11982] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1799), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1797), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12034] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1803), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1801), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12086] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1520), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1518), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12138] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1807), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1805), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12190] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1524), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1522), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12242] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1454), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1452), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12294] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1811), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1809), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12346] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1544), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12398] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1512), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1510), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12450] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(602), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 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, + [12511] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(766), 1, + sym_arguments, + ACTIONS(1468), 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(1466), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12566] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(1672), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1674), 1, + anon_sym_QMARK, + ACTIONS(1676), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(1148), 1, + sym_attribute_list, + STATE(1150), 1, + sym_visibility_modifier, + STATE(1486), 1, + sym_qualified_name, + STATE(1642), 1, + sym__type, + STATE(1892), 1, + sym_reference_modifier, + STATE(1896), 1, + sym_variable_name, + STATE(2360), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1291), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(2109), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1568), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [12657] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 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, + [12718] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1474), 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(1480), 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, + [12775] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(572), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1611), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 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, + [12836] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1470), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12889] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(770), 1, + sym_arguments, + ACTIONS(1462), 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(1460), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12944] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(772), 1, + sym_arguments, + ACTIONS(1488), 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(1486), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [12999] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1717), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1715), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13052] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(985), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + aux_sym_else_clause_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(983), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13103] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1645), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1643), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13156] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(981), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + aux_sym_else_clause_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(979), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13207] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1611), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13260] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(858), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1615), 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(1613), 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, + [13321] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_arguments, + ACTIONS(1564), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 22, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13380] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1661), 1, + anon_sym_RPAREN, + ACTIONS(1664), 1, + anon_sym_EQ, + ACTIONS(1659), 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(1657), 30, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13435] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1474), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1480), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13488] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(778), 1, + sym_arguments, + ACTIONS(1492), 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(1490), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13543] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(779), 1, + sym_arguments, + ACTIONS(1484), 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(1482), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13598] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1496), 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(1494), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13648] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1524), 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(1522), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13698] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1520), 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(1518), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13748] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1450), 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(1448), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13798] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1536), 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(1534), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13848] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1504), 12, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1502), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13898] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1516), 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(1514), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13948] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1500), 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(1498), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [13998] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1532), 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(1530), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14048] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1444), 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(1442), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14098] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(1817), 1, + anon_sym_COLON, + STATE(572), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 21, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14160] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1458), 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(1456), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 17, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AT, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SQUOTE, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + aux_sym_string_token1, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + ACTIONS(1819), 25, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym__arrow_function_header_token1, + aux_sym_cast_type_token1, + sym_float, + sym_integer, + aux_sym_throw_expression_token1, + aux_sym_match_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_clone_expression_token1, + aux_sym_print_intrinsic_token1, + aux_sym_object_creation_expression_token1, + aux_sym__list_destructing_token1, + anon_sym_self, + anon_sym_parent, + sym_boolean, + sym_null, + aux_sym_yield_expression_token1, + aux_sym_include_expression_token1, + aux_sym_include_once_expression_token1, + aux_sym_require_expression_token1, + aux_sym_require_once_expression_token1, + sym_name, + [14260] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1508), 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(1506), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14310] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1512), 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(1510), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14360] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1544), 12, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14410] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(1823), 1, + anon_sym_COLON, + STATE(602), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 21, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14472] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1540), 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(1538), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14522] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(1825), 1, + anon_sym_COLON, + STATE(602), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 21, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14584] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1528), 12, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1526), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14634] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1454), 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(1452), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14684] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_arguments, + ACTIONS(1492), 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(1490), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14737] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(868), 1, + sym_arguments, + ACTIONS(1468), 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(1466), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14790] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(872), 1, + sym_arguments, + ACTIONS(1488), 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(1486), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14843] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(874), 1, + sym_arguments, + ACTIONS(1462), 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(1460), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [14896] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(602), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 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, + [14951] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1528), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1526), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [15000] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1649), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1495), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1622), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2475), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1470), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1402), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1518), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15083] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(1827), 1, + sym_name, + ACTIONS(1829), 1, + anon_sym_LPAREN, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1497), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1625), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2505), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(762), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(666), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1483), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15166] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1649), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1495), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1622), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2475), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1477), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1396), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1518), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15249] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1564), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 22, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [15302] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(858), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1615), 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(1613), 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, + [15357] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN, + STATE(1027), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1615), 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(1613), 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, + [15412] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(858), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1615), 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(1613), 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, + [15467] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(839), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1645), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1643), 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, + [15522] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1649), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(754), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1495), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2475), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1622), 4, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1397), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1518), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15605] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1664), 1, + anon_sym_EQ, + ACTIONS(1659), 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(1657), 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, + [15656] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1637), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1635), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [15705] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1833), 1, + sym_name, + STATE(2497), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(819), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2488), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(1621), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(820), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(878), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1618), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1518), 11, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15788] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(839), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1717), 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(1715), 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, + [15843] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(1827), 1, + sym_name, + ACTIONS(1829), 1, + anon_sym_LPAREN, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1497), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1625), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2505), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(756), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(667), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1483), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15926] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1835), 1, + sym_name, + ACTIONS(1837), 1, + anon_sym_LPAREN, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1494), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1612), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2440), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(880), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(814), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1484), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16009] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(845), 1, + sym_arguments, + ACTIONS(1484), 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(1482), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [16062] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 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, + [16117] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 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, + [16172] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(1839), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(690), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2480), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(693), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(758), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1621), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1518), 11, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16255] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(602), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 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, + [16310] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1835), 1, + sym_name, + ACTIONS(1837), 1, + anon_sym_LPAREN, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1494), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1612), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2440), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(882), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(799), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1484), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16393] = 4, + ACTIONS(1446), 1, + sym_comment, + STATE(564), 1, + sym_arguments, + ACTIONS(1462), 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(1460), 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, + [16444] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(839), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1474), 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(1480), 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, + [16499] = 4, + ACTIONS(1446), 1, + sym_comment, + STATE(563), 1, + sym_arguments, + ACTIONS(1488), 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(1486), 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, + [16550] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(1835), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(881), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1494), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2336), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1612), 4, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(804), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1484), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16633] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1004), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + aux_sym_else_clause_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1002), 30, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [16682] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1084), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + aux_sym_else_clause_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1082), 30, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [16731] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1611), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 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, + [16786] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1611), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 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, + [16841] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(766), 1, + sym_arguments, + ACTIONS(1641), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1639), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [16894] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1649), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1495), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1622), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2475), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(676), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1407), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1518), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16977] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1474), 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(1480), 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, + [17028] = 4, + ACTIONS(1446), 1, + sym_comment, + STATE(565), 1, + sym_arguments, + ACTIONS(1492), 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(1490), 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, + [17079] = 4, + ACTIONS(1446), 1, + sym_comment, + STATE(566), 1, + sym_arguments, + ACTIONS(1484), 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(1482), 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, + [17130] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(593), 1, + sym_arguments, + ACTIONS(1641), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1639), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [17183] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(569), 1, + sym_arguments, + ACTIONS(1468), 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(1466), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [17236] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(566), 1, + sym_arguments, + ACTIONS(1484), 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(1482), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [17289] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(565), 1, + sym_arguments, + ACTIONS(1492), 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(1490), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [17342] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(563), 1, + sym_arguments, + ACTIONS(1488), 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(1486), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [17395] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(564), 1, + sym_arguments, + ACTIONS(1462), 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(1460), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [17448] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1649), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1495), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1622), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2475), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1479), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1460), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1518), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17531] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1440), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1841), 1, + sym_name, + ACTIONS(1843), 1, + anon_sym_LPAREN, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1485), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1656), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2430), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(823), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(749), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1514), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17614] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_LPAREN, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(1827), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(754), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1497), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2396), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1625), 4, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(692), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1483), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17697] = 4, + ACTIONS(1446), 1, + sym_comment, + STATE(569), 1, + sym_arguments, + ACTIONS(1468), 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(1466), 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, + [17748] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1036), 1, + anon_sym_LBRACK, + ACTIONS(1432), 1, + anon_sym_LPAREN, + ACTIONS(1434), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1845), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1482), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1631), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2486), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(676), 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, + STATE(1501), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17831] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + ACTIONS(1528), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1526), 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, + [17881] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1508), 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(1506), 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, + [17929] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1536), 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(1534), 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, + [17977] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1496), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1494), 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, + [18025] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1803), 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(1801), 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, + [18073] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1516), 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(1514), 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, + [18121] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1664), 1, + anon_sym_EQ, + ACTIONS(1659), 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(1657), 28, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [18171] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1426), 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, + [18219] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1512), 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(1510), 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, + [18267] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1741), 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(1739), 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, + [18315] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1799), 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(1797), 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, + [18363] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1757), 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(1755), 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, + [18411] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1735), 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(1733), 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, + [18459] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1729), 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(1727), 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, + [18507] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1749), 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(1747), 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, + [18555] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1783), 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(1781), 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, + [18603] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1725), 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(1723), 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, + [18651] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1745), 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(1743), 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, + [18699] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1761), 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(1759), 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, + [18747] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1659), 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(1657), 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, + [18795] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1664), 1, + anon_sym_EQ, + ACTIONS(1847), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1659), 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(1657), 26, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [18847] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1534), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1773), 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(1771), 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, + [18897] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1791), 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(1789), 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, + [18945] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1753), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1751), 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, + [18993] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1795), 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(1793), 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, + [19041] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1450), 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(1448), 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, + [19089] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1458), 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(1456), 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, + [19137] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1807), 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(1805), 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, + [19185] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1520), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1518), 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, + [19233] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1540), 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(1538), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + 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, + [19281] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1454), 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(1452), 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, + [19329] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1524), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1522), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_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, + [19377] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1444), 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(1442), 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, + [19425] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1532), 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(1530), 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, + [19473] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1811), 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(1809), 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, + [19521] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1500), 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(1498), 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, + [19569] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1769), 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(1767), 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, + [19617] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1504), 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(1502), 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, + [19665] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1787), 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(1785), 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, + [19713] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1777), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1775), 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, + [19761] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1544), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_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, + [19809] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1611), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 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, + [19858] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1472), 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(1470), 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, + [19907] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1474), 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(1480), 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, + [19956] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1717), 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(1715), 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, + [20005] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1645), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1643), 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, + [20054] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1851), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1849), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20100] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1855), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1853), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20146] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1859), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1857), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20192] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1863), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1861), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20238] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1867), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1865), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20284] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1871), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1869), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20330] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1450), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1448), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20376] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1875), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20422] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1879), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1877), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20468] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1883), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1881), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20514] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1887), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1885), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20560] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1891), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1889), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20606] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1895), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1893), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20652] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1899), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1897), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20698] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1903), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1901), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20744] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1905), 1, + aux_sym_binary_expression_token1, + ACTIONS(1883), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1881), 27, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20792] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1909), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1907), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20838] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1913), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1911), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20884] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1917), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1915), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20930] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1472), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20976] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1645), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1643), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21022] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1921), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1919), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21068] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1925), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1923), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21114] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1929), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1927), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21160] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1933), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1931), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21206] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1937), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1935), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21252] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1941), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1939), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21298] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1945), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1943), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21344] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1949), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1947), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21390] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1953), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1951), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21436] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1773), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1771), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21482] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1957), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1955), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21528] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1961), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1959), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21574] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1965), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1963), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [21620] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1969), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1967), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [21666] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1973), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1971), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [21712] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1977), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1975), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [21758] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1981), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1979), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [21804] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1985), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [21850] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [21896] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1989), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [21942] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1993), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1991), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [21988] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1997), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1995), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [22034] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2001), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1999), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [22080] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2005), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2003), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [22126] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2009), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2007), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [22172] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2013), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2011), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [22218] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2017), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2015), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [22264] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2021), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2019), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [22310] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2025), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2023), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_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, + [22356] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2029), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2027), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22402] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2033), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2031), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22448] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2037), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2035), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22494] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2041), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2039), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22540] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2045), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2043), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22586] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2049), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2047), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22632] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1454), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1452), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22678] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1458), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1456), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22724] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2053), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2051), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22770] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1444), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1442), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22816] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2053), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2051), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22862] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2057), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2055), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22908] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2061), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2059), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [22954] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2065), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2063), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [23000] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1084), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + aux_sym_else_clause_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1082), 26, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [23045] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1004), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + aux_sym_else_clause_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1002), 26, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [23090] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2067), 11, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [23164] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2101), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [23244] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2109), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [23324] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2111), 11, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [23398] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2113), 1, + anon_sym_EQ_GT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2027), 7, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [23480] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 21, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DOT, + [23532] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2115), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [23612] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 23, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [23662] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2117), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [23742] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 20, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [23796] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2119), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [23876] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2121), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [23956] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2127), 1, + anon_sym_STAR_STAR, + ACTIONS(2125), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2123), 25, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [24002] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2131), 1, + anon_sym_QMARK, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2129), 11, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [24076] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1609), 19, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [24134] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2127), 1, + anon_sym_STAR_STAR, + ACTIONS(1883), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1881), 25, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [24180] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2133), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [24260] = 14, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(1611), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 14, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [24326] = 13, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(1611), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 15, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [24390] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2127), 1, + anon_sym_STAR_STAR, + ACTIONS(1985), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 25, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [24436] = 15, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 14, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [24504] = 12, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 15, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [24566] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2135), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [24646] = 16, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 13, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [24716] = 19, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 10, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [24792] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1971), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [24872] = 20, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 9, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [24950] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 11, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25024] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 11, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25098] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2137), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [25178] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 25, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [25226] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2139), 11, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25300] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_PERCENT, + ACTIONS(2143), 1, + anon_sym_QMARK, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2097), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2141), 11, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25374] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2133), 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, + [25453] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_QMARK, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2129), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25526] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2101), 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, + [25605] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(1985), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 24, + 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, + [25650] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2121), 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, + [25729] = 12, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [25790] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(1883), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1881), 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, + [25835] = 14, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(1611), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [25900] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [25947] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [26020] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [26093] = 20, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [26170] = 19, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [26245] = 16, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [26314] = 15, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [26381] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2125), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2123), 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, + [26426] = 13, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(1611), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [26489] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1609), 18, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [26546] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [26599] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [26648] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DOT, + [26699] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2067), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [26772] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2111), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [26845] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2115), 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, + [26924] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1971), 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, + [27003] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2137), 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, + [27082] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2143), 1, + anon_sym_QMARK, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2141), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [27155] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2135), 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, + [27234] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2185), 1, + anon_sym_EQ_GT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2027), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [27315] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2109), 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, + [27394] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2139), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [27467] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2117), 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, + [27546] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2119), 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, + [27625] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1929), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1927), 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, + [27667] = 20, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [27743] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1965), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1963), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [27785] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1937), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1935), 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, + [27827] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2025), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2023), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [27869] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1933), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1931), 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, + [27911] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1851), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1849), 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, + [27953] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1949), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1947), 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, + [27995] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1925), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1923), 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, + [28037] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1921), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1919), 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, + [28079] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2225), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2230), 1, + aux_sym_final_modifier_token1, + ACTIONS(2233), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2236), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2239), 1, + sym_var_modifier, + ACTIONS(2228), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2242), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1025), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + ACTIONS(2223), 16, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [28135] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2029), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2027), 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, + [28177] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1773), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1771), 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, + [28219] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1863), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1861), 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, + [28261] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1945), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1943), 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, + [28303] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1859), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1857), 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, + [28345] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(981), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(979), 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, + [28387] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2053), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2051), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [28429] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1917), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1915), 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, + [28471] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2057), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2055), 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, + [28513] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1981), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1979), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [28555] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1971), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [28633] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(985), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(983), 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, + [28675] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2033), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2031), 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, + [28717] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1993), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1991), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [28759] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2139), 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, + [28831] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2143), 1, + anon_sym_QMARK, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2141), 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, + [28903] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_QMARK, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2129), 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, + [28975] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1973), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1971), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [29017] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2115), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [29095] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1855), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1853), 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, + [29137] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2049), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2047), 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, + [29179] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2135), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [29257] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2045), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2043), 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, + [29299] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2041), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2039), 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, + [29341] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2065), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2063), 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, + [29383] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1961), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1959), 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, + [29425] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2037), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2035), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [29467] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1472), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_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), 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, + [29509] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1977), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1975), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [29551] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2021), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2019), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [29593] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2017), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2015), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [29635] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2009), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2007), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [29677] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2053), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2051), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [29719] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_binary_expression_token1, + ACTIONS(1883), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1881), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [29763] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2061), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2059), 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, + [29805] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1997), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1995), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [29847] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1957), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1955), 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, + [29889] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1989), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [29931] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1899), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1897), 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, + [29973] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2133), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [30051] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1879), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1877), 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, + [30093] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + anon_sym_EQ_GT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2027), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [30173] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1867), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1865), 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, + [30215] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2101), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [30293] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1883), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1881), 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, + [30335] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2251), 1, + anon_sym_STAR_STAR, + ACTIONS(1985), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [30379] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1969), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1967), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [30421] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2109), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [30499] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1909), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1907), 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, + [30541] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1985), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [30583] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2251), 1, + anon_sym_STAR_STAR, + ACTIONS(2125), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2123), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [30627] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2013), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2011), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [30669] = 12, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 13, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [30729] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2251), 1, + anon_sym_STAR_STAR, + ACTIONS(1883), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1881), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [30773] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2111), 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, + [30845] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2067), 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, + [30917] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2137), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [30995] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1913), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1911), 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, + [31037] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1645), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1643), 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, + [31079] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1444), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1442), 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, + [31121] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2005), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2003), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [31163] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 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, + [31205] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1953), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1951), 24, + 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, + [31247] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1458), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1456), 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, + [31289] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1450), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1448), 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, + [31331] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1454), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1452), 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, + [31373] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 19, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DOT, + [31423] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 21, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [31471] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1903), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1901), 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, + [31513] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 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, + [31565] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1609), 17, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [31621] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1895), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1893), 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, + [31663] = 13, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(1611), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 13, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [31725] = 15, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [31791] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2117), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [31869] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2001), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1999), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [31911] = 14, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(1611), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [31975] = 16, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 11, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [32043] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1891), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1889), 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, + [32085] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2121), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [32163] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1887), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1885), 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, + [32205] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1875), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 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, + [32247] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1871), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1869), 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, + [32289] = 19, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 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, + [32363] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1941), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1939), 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, + [32405] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 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, + [32477] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 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, + [32549] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [32595] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2219), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2119), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [32673] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 8, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [32744] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2137), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [32821] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2135), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [32898] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2111), 8, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [32969] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2133), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33046] = 20, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 6, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [33121] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2121), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33198] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2115), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33275] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2291), 1, + anon_sym_EQ_GT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2027), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [33354] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2101), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33431] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2293), 1, + anon_sym_STAR_STAR, + ACTIONS(1985), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 22, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [33474] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 8, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [33545] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1971), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33622] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2109), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33699] = 12, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 12, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [33758] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2293), 1, + anon_sym_STAR_STAR, + ACTIONS(2125), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2123), 22, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [33801] = 14, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(1611), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 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, + [33864] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2293), 1, + anon_sym_STAR_STAR, + ACTIONS(1883), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1881), 22, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [33907] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2117), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33984] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 22, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [34029] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_QMARK, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2129), 8, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [34100] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2139), 8, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [34171] = 19, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 7, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [34244] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2143), 1, + anon_sym_QMARK, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2141), 8, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [34315] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1609), 16, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [34370] = 18, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2067), 8, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [34441] = 13, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(1611), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 12, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [34502] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 18, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DOT, + [34551] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 20, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [34598] = 15, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 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, + [34663] = 16, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_QMARK, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1609), 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, + [34730] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2119), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [34807] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2283), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2281), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 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(1609), 17, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [34858] = 17, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(1674), 1, + anon_sym_QMARK, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(2295), 1, + anon_sym_DOT_DOT_DOT, + STATE(1486), 1, + sym_qualified_name, + STATE(1680), 1, + sym__type, + STATE(1950), 1, + sym_reference_modifier, + STATE(1953), 1, + sym_variable_name, + STATE(2360), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + STATE(1568), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [34926] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2297), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2303), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2305), 1, + anon_sym_RBRACE, + ACTIONS(2307), 1, + aux_sym_final_modifier_token1, + ACTIONS(2309), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2311), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2313), 1, + sym_var_modifier, + STATE(1203), 1, + sym_final_modifier, + STATE(1279), 1, + sym_visibility_modifier, + STATE(1304), 1, + sym_attribute_list, + STATE(1353), 1, + sym__const_declaration, + STATE(1362), 1, + sym__class_const_declaration, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2315), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(632), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1152), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35001] = 16, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(43), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(1217), 1, + sym_readonly_modifier, + STATE(1486), 1, + sym_qualified_name, + STATE(1938), 1, + sym_variable_name, + STATE(2271), 1, + sym__type, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + STATE(1480), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [35066] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2319), 1, + anon_sym_COMMA, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2317), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35143] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2321), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2324), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2327), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2330), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2333), 1, + anon_sym_RBRACE, + ACTIONS(2335), 1, + aux_sym_final_modifier_token1, + ACTIONS(2338), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2341), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2344), 1, + sym_var_modifier, + ACTIONS(2350), 1, + anon_sym_POUND_LBRACK, + STATE(1203), 1, + sym_final_modifier, + STATE(1279), 1, + sym_visibility_modifier, + STATE(1304), 1, + sym_attribute_list, + STATE(1353), 1, + sym__const_declaration, + STATE(1362), 1, + sym__class_const_declaration, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2347), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(632), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1152), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35218] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2297), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2303), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2307), 1, + aux_sym_final_modifier_token1, + ACTIONS(2309), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2311), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2313), 1, + sym_var_modifier, + ACTIONS(2353), 1, + anon_sym_RBRACE, + STATE(1203), 1, + sym_final_modifier, + STATE(1279), 1, + sym_visibility_modifier, + STATE(1304), 1, + sym_attribute_list, + STATE(1353), 1, + sym__const_declaration, + STATE(1362), 1, + sym__class_const_declaration, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2315), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(632), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1167), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35293] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2297), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2303), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2307), 1, + aux_sym_final_modifier_token1, + ACTIONS(2309), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2311), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2313), 1, + sym_var_modifier, + ACTIONS(2355), 1, + anon_sym_RBRACE, + STATE(1203), 1, + sym_final_modifier, + STATE(1279), 1, + sym_visibility_modifier, + STATE(1304), 1, + sym_attribute_list, + STATE(1353), 1, + sym__const_declaration, + STATE(1362), 1, + sym__class_const_declaration, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2315), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(632), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1160), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35368] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2357), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35443] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2359), 1, + anon_sym_EQ_GT, + ACTIONS(2027), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35520] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2361), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35595] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2297), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2303), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2307), 1, + aux_sym_final_modifier_token1, + ACTIONS(2309), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2311), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2313), 1, + sym_var_modifier, + ACTIONS(2363), 1, + anon_sym_RBRACE, + STATE(1203), 1, + sym_final_modifier, + STATE(1279), 1, + sym_visibility_modifier, + STATE(1304), 1, + sym_attribute_list, + STATE(1353), 1, + sym__const_declaration, + STATE(1362), 1, + sym__class_const_declaration, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2315), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(632), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1152), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35670] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2365), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35745] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2297), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2303), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2307), 1, + aux_sym_final_modifier_token1, + ACTIONS(2309), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2311), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2313), 1, + sym_var_modifier, + ACTIONS(2367), 1, + anon_sym_RBRACE, + STATE(1203), 1, + sym_final_modifier, + STATE(1279), 1, + sym_visibility_modifier, + STATE(1304), 1, + sym_attribute_list, + STATE(1353), 1, + sym__const_declaration, + STATE(1362), 1, + sym__class_const_declaration, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2315), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(632), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1152), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35820] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2369), 1, + anon_sym_EQ_GT, + ACTIONS(2027), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35897] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2371), 1, + anon_sym_EQ_GT, + ACTIONS(2027), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [35974] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2297), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2303), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2307), 1, + aux_sym_final_modifier_token1, + ACTIONS(2309), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2311), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2313), 1, + sym_var_modifier, + ACTIONS(2373), 1, + anon_sym_RBRACE, + STATE(1203), 1, + sym_final_modifier, + STATE(1279), 1, + sym_visibility_modifier, + STATE(1304), 1, + sym_attribute_list, + STATE(1353), 1, + sym__const_declaration, + STATE(1362), 1, + sym__class_const_declaration, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2315), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(632), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1149), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [36049] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2297), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2303), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2307), 1, + aux_sym_final_modifier_token1, + ACTIONS(2309), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2311), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2313), 1, + sym_var_modifier, + ACTIONS(2375), 1, + anon_sym_RBRACE, + STATE(1203), 1, + sym_final_modifier, + STATE(1279), 1, + sym_visibility_modifier, + STATE(1304), 1, + sym_attribute_list, + STATE(1353), 1, + sym__const_declaration, + STATE(1362), 1, + sym__class_const_declaration, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2315), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(632), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1158), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [36124] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2319), 1, + anon_sym_COMMA, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2377), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36201] = 23, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2379), 1, + anon_sym_COMMA, + ACTIONS(2381), 1, + anon_sym_EQ_GT, + STATE(2044), 1, + aux_sym_match_condition_list_repeat1, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36280] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2297), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2303), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2307), 1, + aux_sym_final_modifier_token1, + ACTIONS(2309), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2311), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2313), 1, + sym_var_modifier, + ACTIONS(2383), 1, + anon_sym_RBRACE, + STATE(1203), 1, + sym_final_modifier, + STATE(1279), 1, + sym_visibility_modifier, + STATE(1304), 1, + sym_attribute_list, + STATE(1353), 1, + sym__const_declaration, + STATE(1362), 1, + sym__class_const_declaration, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2315), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(632), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1152), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [36355] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2385), 1, + anon_sym_EQ_GT, + ACTIONS(2387), 1, + anon_sym_RPAREN, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36431] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2389), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36505] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2391), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36579] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2393), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36653] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2395), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36727] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2385), 1, + anon_sym_EQ_GT, + ACTIONS(2397), 1, + anon_sym_RPAREN, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36803] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2399), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36877] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2401), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36951] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2403), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37025] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2405), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37099] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2407), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37173] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2317), 1, + anon_sym_SEMI, + ACTIONS(2409), 1, + anon_sym_COMMA, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37249] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2411), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37323] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2413), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37397] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2415), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37471] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2417), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37545] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2419), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37619] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2421), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37693] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2423), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37767] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2385), 1, + anon_sym_EQ_GT, + ACTIONS(2425), 1, + anon_sym_RPAREN, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37843] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2427), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37917] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2317), 1, + anon_sym_RPAREN, + ACTIONS(2429), 1, + anon_sym_COMMA, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37993] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2431), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38067] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2377), 1, + anon_sym_SEMI, + ACTIONS(2409), 1, + anon_sym_COMMA, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38143] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2433), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38217] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2435), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38291] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2377), 1, + anon_sym_RPAREN, + ACTIONS(2429), 1, + anon_sym_COMMA, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38367] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2437), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38441] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2439), 2, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38515] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2441), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38589] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2443), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38663] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, + ACTIONS(2275), 1, + anon_sym_GT_EQ, + ACTIONS(2279), 1, + anon_sym_DOT, + ACTIONS(2281), 1, + anon_sym_SLASH, + ACTIONS(2285), 1, + aux_sym_binary_expression_token2, + ACTIONS(2287), 1, + aux_sym_binary_expression_token3, + ACTIONS(2289), 1, + aux_sym_binary_expression_token4, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2283), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2445), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2273), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2271), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38737] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2447), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38811] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2451), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1355), 1, + sym__const_declaration, + STATE(2484), 1, + sym_visibility_modifier, + ACTIONS(2453), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2449), 24, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_string, + anon_sym_int, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [38855] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2455), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38929] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2451), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1373), 1, + sym__const_declaration, + STATE(2484), 1, + sym_visibility_modifier, + ACTIONS(2453), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2449), 24, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_string, + anon_sym_int, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [38973] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + aux_sym_binary_expression_token2, + ACTIONS(2199), 1, + aux_sym_binary_expression_token4, + ACTIONS(2201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_CARET, + ACTIONS(2213), 1, + anon_sym_GT_EQ, + ACTIONS(2217), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_binary_expression_token3, + ACTIONS(2193), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2215), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2221), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2457), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2211), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2209), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39047] = 22, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2385), 1, + anon_sym_EQ_GT, + ACTIONS(2459), 1, + anon_sym_RPAREN, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39123] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2461), 1, + anon_sym_RPAREN, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39196] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2463), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39269] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2465), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39342] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2467), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39415] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2469), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39488] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2471), 1, + anon_sym_RBRACK, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39561] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2473), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39634] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2475), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2477), 1, + anon_sym_RBRACE, + ACTIONS(2479), 1, + aux_sym_enum_case_token1, + ACTIONS(2481), 1, + aux_sym_final_modifier_token1, + ACTIONS(2483), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2485), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2487), 1, + sym_var_modifier, + STATE(1306), 1, + sym_attribute_list, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2489), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1272), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1311), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [39699] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2491), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39772] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2493), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [39845] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2475), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2479), 1, + aux_sym_enum_case_token1, + ACTIONS(2481), 1, + aux_sym_final_modifier_token1, + ACTIONS(2483), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2485), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2487), 1, + sym_var_modifier, + ACTIONS(2495), 1, + anon_sym_RBRACE, + STATE(1306), 1, + sym_attribute_list, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2489), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1213), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1311), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [39910] = 14, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(1486), 1, + sym_qualified_name, + STATE(2030), 1, + sym_variable_name, + STATE(2115), 1, + sym__type, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + STATE(1480), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [39969] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2497), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40042] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2471), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40115] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2499), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40188] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2501), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40261] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2503), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40334] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2505), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40407] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2507), 1, + anon_sym_RBRACK, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40480] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2509), 1, + anon_sym_EQ_GT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40553] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2511), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40626] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2513), 1, + anon_sym_RPAREN, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40699] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2507), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40772] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40845] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2517), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40918] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2519), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40991] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2521), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41064] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2523), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41137] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2525), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41210] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2475), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2479), 1, + aux_sym_enum_case_token1, + ACTIONS(2481), 1, + aux_sym_final_modifier_token1, + ACTIONS(2483), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2485), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2487), 1, + sym_var_modifier, + ACTIONS(2527), 1, + anon_sym_RBRACE, + STATE(1306), 1, + sym_attribute_list, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2489), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1272), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1311), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [41275] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2529), 1, + anon_sym_EQ_GT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41348] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2531), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41421] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2533), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41494] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2535), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41567] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2537), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41640] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2539), 1, + anon_sym_EQ_GT, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41713] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2541), 1, + anon_sym_RBRACK, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41786] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2543), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41859] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2545), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [41932] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2547), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42005] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2549), 1, + anon_sym_RBRACK, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42078] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2549), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42151] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2551), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42224] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2553), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42297] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2555), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42370] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2557), 1, + anon_sym_COLON, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42443] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2559), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42516] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2561), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42589] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2541), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42662] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2563), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42735] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2565), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42808] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2567), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42881] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2569), 1, + anon_sym_RPAREN, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42954] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2573), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2571), 26, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_string, + anon_sym_int, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [42991] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2575), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43064] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2577), 1, + anon_sym_RPAREN, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43137] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2579), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43210] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2553), 1, + anon_sym_RBRACK, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43283] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2581), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43356] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2299), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2475), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2479), 1, + aux_sym_enum_case_token1, + ACTIONS(2481), 1, + aux_sym_final_modifier_token1, + ACTIONS(2483), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2485), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2487), 1, + sym_var_modifier, + ACTIONS(2583), 1, + anon_sym_RBRACE, + STATE(1306), 1, + sym_attribute_list, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2489), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1235), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1311), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [43421] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_AMP, + ACTIONS(2147), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2153), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2155), 1, + aux_sym_binary_expression_token2, + ACTIONS(2157), 1, + aux_sym_binary_expression_token3, + ACTIONS(2159), 1, + aux_sym_binary_expression_token4, + ACTIONS(2161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2163), 1, + anon_sym_AMP_AMP, + ACTIONS(2165), 1, + anon_sym_CARET, + ACTIONS(2173), 1, + anon_sym_GT_EQ, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2179), 1, + anon_sym_SLASH, + ACTIONS(2581), 1, + anon_sym_RBRACK, + ACTIONS(2151), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2175), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2171), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2169), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43494] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2585), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43567] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2587), 1, + anon_sym_COLON, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43640] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2589), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43713] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2591), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43786] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2593), 1, + anon_sym_COLON, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43859] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2598), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2601), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2604), 1, + anon_sym_RBRACE, + ACTIONS(2606), 1, + aux_sym_enum_case_token1, + ACTIONS(2609), 1, + aux_sym_final_modifier_token1, + ACTIONS(2612), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2615), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2618), 1, + sym_var_modifier, + ACTIONS(2624), 1, + anon_sym_POUND_LBRACK, + STATE(1306), 1, + sym_attribute_list, + STATE(1698), 1, + sym__function_definition_header, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2621), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1272), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1311), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [43924] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2627), 1, + anon_sym_COLON, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43997] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2629), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44070] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2631), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44143] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2633), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44216] = 21, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_AMP, + ACTIONS(2071), 1, + anon_sym_QMARK, + ACTIONS(2073), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2081), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_GT_EQ, + ACTIONS(2095), 1, + anon_sym_DOT, + ACTIONS(2097), 1, + anon_sym_SLASH, + ACTIONS(2103), 1, + aux_sym_binary_expression_token2, + ACTIONS(2105), 1, + aux_sym_binary_expression_token3, + ACTIONS(2107), 1, + aux_sym_binary_expression_token4, + ACTIONS(2635), 1, + anon_sym_RBRACE, + ACTIONS(2075), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2085), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2093), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2099), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2089), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2087), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44289] = 13, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2637), 1, + sym_name, + ACTIONS(2641), 1, + anon_sym_QMARK, + ACTIONS(2643), 1, + sym_bottom_type, + STATE(1650), 1, + sym_qualified_name, + STATE(1962), 1, + sym__type, + STATE(2497), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + STATE(2026), 2, + sym_union_type, + sym_intersection_type, + STATE(1492), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(2639), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [44345] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2645), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2453), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2449), 24, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_string, + anon_sym_int, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [44383] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2649), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2647), 25, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_string, + anon_sym_int, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [44419] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2653), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2651), 25, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_string, + anon_sym_int, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [44455] = 13, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(2655), 1, + sym_bottom_type, + STATE(1486), 1, + sym_qualified_name, + STATE(2254), 1, + sym__type, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1644), 2, + sym_union_type, + sym_intersection_type, + STATE(1480), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [44511] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2659), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2657), 24, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_string, + anon_sym_int, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [44546] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2663), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2661), 24, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_string, + anon_sym_int, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [44581] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2637), 1, + sym_name, + ACTIONS(2641), 1, + anon_sym_QMARK, + STATE(1650), 1, + sym_qualified_name, + STATE(2497), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + STATE(1687), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(2639), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [44627] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2637), 1, + sym_name, + ACTIONS(2641), 1, + anon_sym_QMARK, + STATE(1650), 1, + sym_qualified_name, + STATE(2497), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + STATE(1686), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(2639), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [44673] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(1486), 1, + sym_qualified_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1647), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [44719] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1674), 1, + anon_sym_QMARK, + STATE(1486), 1, + sym_qualified_name, + STATE(2360), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1647), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [44765] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1674), 1, + anon_sym_QMARK, + STATE(1486), 1, + sym_qualified_name, + STATE(2360), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1575), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [44811] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(1486), 1, + sym_qualified_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1575), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [44857] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1676), 1, + anon_sym_POUND_LBRACK, + STATE(1292), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2667), 5, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2665), 15, + aux_sym_namespace_definition_token1, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [44892] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2673), 1, + anon_sym_POUND_LBRACK, + STATE(1292), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2671), 5, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2669), 15, + aux_sym_namespace_definition_token1, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [44927] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + STATE(1486), 1, + sym_qualified_name, + STATE(2360), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1549), 2, + sym_named_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [44968] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + STATE(1486), 1, + sym_qualified_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1549), 2, + sym_named_type, + sym_primitive_type, + ACTIONS(1594), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [45009] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2637), 1, + sym_name, + STATE(1650), 1, + sym_qualified_name, + STATE(2497), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + STATE(1674), 2, + sym_named_type, + sym_primitive_type, + ACTIONS(2639), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [45050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2678), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2676), 15, + aux_sym_namespace_definition_token1, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [45079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2682), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2680), 15, + aux_sym_namespace_definition_token1, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [45108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2686), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2684), 15, + aux_sym_namespace_definition_token1, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [45137] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2649), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2647), 17, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token3, + anon_sym_string, + anon_sym_int, + aux_sym_readonly_modifier_token1, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [45165] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2688), 1, + anon_sym_LBRACE, + ACTIONS(2691), 1, + sym_escape_sequence, + ACTIONS(2700), 1, + anon_sym_DOLLAR, + ACTIONS(2703), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2706), 1, + sym_heredoc_end, + STATE(1300), 1, + aux_sym_heredoc_body_repeat1, + STATE(1317), 1, + sym__new_line, + STATE(1341), 1, + sym_variable_name, + STATE(1385), 1, + sym__simple_string_member_access_expression, + ACTIONS(2697), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + ACTIONS(2694), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1307), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45213] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2708), 1, + anon_sym_LBRACE, + ACTIONS(2710), 1, + sym_escape_sequence, + ACTIONS(2717), 1, + anon_sym_DOLLAR, + ACTIONS(2719), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2721), 1, + sym_heredoc_end, + STATE(1300), 1, + aux_sym_heredoc_body_repeat1, + STATE(1317), 1, + sym__new_line, + STATE(1341), 1, + sym_variable_name, + STATE(1385), 1, + sym__simple_string_member_access_expression, + ACTIONS(2714), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + ACTIONS(2712), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1307), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45261] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2659), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2657), 16, + aux_sym_namespace_definition_token1, + anon_sym_string, + anon_sym_int, + aux_sym_class_declaration_token1, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [45288] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2708), 1, + anon_sym_LBRACE, + ACTIONS(2710), 1, + sym_escape_sequence, + ACTIONS(2717), 1, + anon_sym_DOLLAR, + ACTIONS(2719), 1, + sym_encapsed_string_chars_heredoc, + STATE(1301), 1, + aux_sym_heredoc_body_repeat1, + STATE(1317), 1, + sym__new_line, + STATE(1341), 1, + sym_variable_name, + STATE(1385), 1, + sym__simple_string_member_access_expression, + ACTIONS(2723), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + ACTIONS(2712), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1307), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45333] = 14, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2297), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2303), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2307), 1, + aux_sym_final_modifier_token1, + ACTIONS(2309), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2311), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2725), 1, + sym_var_modifier, + STATE(1201), 1, + sym_final_modifier, + STATE(1279), 1, + sym_visibility_modifier, + STATE(1358), 1, + sym__const_declaration, + STATE(1741), 1, + sym__function_definition_header, + ACTIONS(2315), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(630), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + [45382] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2730), 1, + sym_escape_sequence, + ACTIONS(2738), 1, + anon_sym_DOLLAR, + ACTIONS(2741), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2744), 1, + sym_heredoc_end, + STATE(1341), 1, + sym_variable_name, + STATE(1385), 1, + sym__simple_string_member_access_expression, + ACTIONS(2736), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + ACTIONS(2733), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1305), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45424] = 11, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2475), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2481), 1, + aux_sym_final_modifier_token1, + ACTIONS(2483), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2485), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2746), 1, + aux_sym_enum_case_token1, + ACTIONS(2748), 1, + sym_var_modifier, + STATE(1741), 1, + sym__function_definition_header, + ACTIONS(2489), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1310), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [45466] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2708), 1, + anon_sym_LBRACE, + ACTIONS(2717), 1, + anon_sym_DOLLAR, + ACTIONS(2719), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2750), 1, + sym_escape_sequence, + ACTIONS(2754), 1, + sym_heredoc_end, + STATE(1341), 1, + sym_variable_name, + STATE(1385), 1, + sym__simple_string_member_access_expression, + ACTIONS(2752), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + ACTIONS(2712), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1305), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45508] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2706), 1, + sym_heredoc_end, + ACTIONS(2708), 1, + anon_sym_LBRACE, + ACTIONS(2717), 1, + anon_sym_DOLLAR, + ACTIONS(2719), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2750), 1, + sym_escape_sequence, + STATE(1341), 1, + sym_variable_name, + STATE(1385), 1, + sym__simple_string_member_access_expression, + ACTIONS(2756), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + ACTIONS(2712), 4, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1305), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45550] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + STATE(1312), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2667), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + aux_sym_enum_case_token1, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + aux_sym__arrow_function_header_token1, + [45577] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2475), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2481), 1, + aux_sym_final_modifier_token1, + ACTIONS(2483), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2485), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2758), 1, + sym_var_modifier, + STATE(1770), 1, + sym__function_definition_header, + ACTIONS(2489), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1313), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [45616] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2301), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2475), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2481), 1, + aux_sym_final_modifier_token1, + ACTIONS(2483), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2485), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2758), 1, + sym_var_modifier, + STATE(1743), 1, + sym__function_definition_header, + ACTIONS(2489), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1313), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [45655] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2760), 1, + anon_sym_POUND_LBRACK, + STATE(1312), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2671), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + aux_sym_enum_case_token1, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + aux_sym__arrow_function_header_token1, + [45682] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2228), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2763), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2766), 1, + aux_sym_final_modifier_token1, + ACTIONS(2769), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2772), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2775), 1, + sym_var_modifier, + ACTIONS(2778), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1313), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [45718] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2781), 6, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_cast_type_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(1692), 10, + anon_sym_BSLASH, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_SQUOTE, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + aux_sym_string_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + [45742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2682), 15, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + aux_sym_enum_case_token1, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + aux_sym__arrow_function_header_token1, + anon_sym_POUND_LBRACK, + [45763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2678), 15, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + aux_sym_enum_case_token1, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + aux_sym__arrow_function_header_token1, + anon_sym_POUND_LBRACK, + [45784] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2712), 1, + anon_sym_BSLASHu, + ACTIONS(2783), 1, + anon_sym_LBRACE, + ACTIONS(2785), 1, + sym_escape_sequence, + ACTIONS(2787), 1, + anon_sym_DOLLAR, + STATE(1341), 1, + sym_variable_name, + STATE(1385), 1, + sym__simple_string_member_access_expression, + ACTIONS(2719), 4, + sym_encapsed_string_chars_heredoc, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + STATE(1308), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2686), 15, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + aux_sym_enum_declaration_token1, + aux_sym_enum_case_token1, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + aux_sym__arrow_function_header_token1, + anon_sym_POUND_LBRACK, + [45840] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2791), 1, + sym_escape_sequence, + ACTIONS(2793), 1, + anon_sym_BSLASHu, + ACTIONS(2797), 1, + anon_sym_DQUOTE, + ACTIONS(2799), 1, + anon_sym_DOLLAR, + STATE(1406), 1, + sym_variable_name, + STATE(1508), 1, + sym__simple_string_member_access_expression, + ACTIONS(2795), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1342), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [45876] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2801), 1, + anon_sym_LBRACE, + ACTIONS(2804), 1, + sym_escape_sequence, + ACTIONS(2807), 1, + anon_sym_BSLASHu, + ACTIONS(2813), 1, + anon_sym_DQUOTE, + ACTIONS(2815), 1, + anon_sym_DOLLAR, + STATE(1406), 1, + sym_variable_name, + STATE(1508), 1, + sym__simple_string_member_access_expression, + ACTIONS(2810), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1320), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [45912] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + anon_sym_BSLASHu, + ACTIONS(2799), 1, + anon_sym_DOLLAR, + ACTIONS(2818), 1, + sym_escape_sequence, + ACTIONS(2820), 1, + anon_sym_DQUOTE, + STATE(1406), 1, + sym_variable_name, + STATE(1508), 1, + sym__simple_string_member_access_expression, + ACTIONS(2795), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1320), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [45948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2822), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [45968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2824), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [45988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2826), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46008] = 7, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2830), 1, + sym_integer, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(2828), 3, + sym_float, + sym_boolean, + sym_null, + STATE(2515), 5, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [46038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2824), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2832), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2834), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1514), 4, + sym_encapsed_string_chars_heredoc, + sym_encapsed_string_chars_after_variable_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(1516), 10, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [46120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2836), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2834), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(983), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2838), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(979), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2840), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2838), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46260] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2826), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2842), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46300] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2844), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2846), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2850), 1, + anon_sym_DASH_GT, + ACTIONS(2852), 1, + anon_sym_LBRACK, + ACTIONS(2856), 1, + sym_encapsed_string_chars_after_variable_heredoc, + ACTIONS(2854), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(2848), 8, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [46368] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + anon_sym_BSLASHu, + ACTIONS(2799), 1, + anon_sym_DOLLAR, + ACTIONS(2818), 1, + sym_escape_sequence, + ACTIONS(2858), 1, + anon_sym_DQUOTE, + STATE(1406), 1, + sym_variable_name, + STATE(1508), 1, + sym__simple_string_member_access_expression, + ACTIONS(2795), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1320), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [46404] = 10, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + anon_sym_BSLASHu, + ACTIONS(2799), 1, + anon_sym_DOLLAR, + ACTIONS(2860), 1, + sym_escape_sequence, + ACTIONS(2862), 1, + anon_sym_DQUOTE, + STATE(1406), 1, + sym_variable_name, + STATE(1508), 1, + sym__simple_string_member_access_expression, + ACTIONS(2795), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1321), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [46440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2864), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2866), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46479] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2868), 1, + anon_sym_LBRACE, + ACTIONS(2872), 1, + anon_sym_BSLASHu, + ACTIONS(2874), 1, + anon_sym_BQUOTE, + ACTIONS(2876), 1, + anon_sym_DOLLAR, + STATE(1459), 1, + sym_variable_name, + STATE(1587), 1, + sym__simple_string_member_access_expression, + ACTIONS(2870), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1359), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [46512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2878), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46531] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2880), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46550] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2884), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46607] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2868), 1, + anon_sym_LBRACE, + ACTIONS(2876), 1, + anon_sym_DOLLAR, + ACTIONS(2890), 1, + anon_sym_BSLASHu, + ACTIONS(2892), 1, + anon_sym_BQUOTE, + STATE(1459), 1, + sym_variable_name, + STATE(1587), 1, + sym__simple_string_member_access_expression, + ACTIONS(2888), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1346), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [46640] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2894), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46659] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2868), 1, + anon_sym_LBRACE, + ACTIONS(2876), 1, + anon_sym_DOLLAR, + ACTIONS(2898), 1, + anon_sym_BSLASHu, + ACTIONS(2900), 1, + anon_sym_BQUOTE, + STATE(1459), 1, + sym_variable_name, + STATE(1587), 1, + sym__simple_string_member_access_expression, + ACTIONS(2896), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1356), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [46692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2902), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46711] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2868), 1, + anon_sym_LBRACE, + ACTIONS(2872), 1, + anon_sym_BSLASHu, + ACTIONS(2876), 1, + anon_sym_DOLLAR, + ACTIONS(2904), 1, + anon_sym_BQUOTE, + STATE(1459), 1, + sym_variable_name, + STATE(1587), 1, + sym__simple_string_member_access_expression, + ACTIONS(2870), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1359), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [46744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2906), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2908), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46782] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2910), 1, + anon_sym_LBRACE, + ACTIONS(2916), 1, + anon_sym_BSLASHu, + ACTIONS(2919), 1, + anon_sym_BQUOTE, + ACTIONS(2921), 1, + anon_sym_DOLLAR, + STATE(1459), 1, + sym_variable_name, + STATE(1587), 1, + sym__simple_string_member_access_expression, + ACTIONS(2913), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1359), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [46815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2924), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2926), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2928), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46872] = 10, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2930), 1, + sym_name, + ACTIONS(2936), 1, + anon_sym_BSLASH, + STATE(1728), 1, + sym_namespace_use_clause, + STATE(2439), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + ACTIONS(2934), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + STATE(1611), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [46907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46926] = 12, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2307), 1, + aux_sym_final_modifier_token1, + ACTIONS(2309), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2938), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2940), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2942), 1, + aux_sym_enum_declaration_token1, + ACTIONS(2944), 1, + aux_sym_class_declaration_token1, + ACTIONS(2946), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2948), 1, + aux_sym__arrow_function_header_token1, + STATE(2307), 1, + sym__function_definition_header, + STATE(2391), 1, + sym_static_modifier, + STATE(2392), 3, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + [46965] = 10, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2930), 1, + sym_name, + ACTIONS(2952), 1, + anon_sym_BSLASH, + STATE(1780), 1, + sym_namespace_use_clause, + STATE(2469), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + ACTIONS(2950), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + STATE(1611), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [47019] = 12, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2307), 1, + aux_sym_final_modifier_token1, + ACTIONS(2309), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2938), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2940), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2946), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2948), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(2956), 1, + aux_sym_enum_declaration_token1, + ACTIONS(2958), 1, + aux_sym_class_declaration_token1, + STATE(2237), 1, + sym__function_definition_header, + STATE(2391), 1, + sym_static_modifier, + STATE(2447), 3, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + [47058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2960), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [47077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2962), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [47096] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1394), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [47115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1410), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [47134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2964), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [47153] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2966), 1, + sym_name, + ACTIONS(2970), 1, + anon_sym_RBRACK, + STATE(2190), 1, + sym_attribute, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1756), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47187] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2966), 1, + sym_name, + ACTIONS(2972), 1, + anon_sym_RBRACK, + STATE(2190), 1, + sym_attribute, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1756), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47221] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2966), 1, + sym_name, + ACTIONS(2974), 1, + anon_sym_RBRACK, + STATE(2190), 1, + sym_attribute, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1756), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47255] = 10, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2966), 1, + sym_name, + ACTIONS(2976), 1, + anon_sym_RBRACK, + STATE(2190), 1, + sym_attribute, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1756), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47289] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2930), 1, + sym_name, + STATE(1935), 1, + sym_namespace_use_clause, + STATE(2497), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + STATE(1611), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1514), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(1516), 8, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [47339] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1604), 1, + anon_sym_DOLLAR, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + ACTIONS(2663), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(2978), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1797), 1, + sym_variable_name, + STATE(1804), 1, + sym_static_variable_declaration, + ACTIONS(1526), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [47368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1494), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(1496), 8, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [47387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1538), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(1540), 8, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [47406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2982), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(2980), 8, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [47425] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2966), 1, + sym_name, + STATE(1875), 1, + sym_attribute, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1756), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2986), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(2984), 8, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [47475] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1604), 1, + anon_sym_DOLLAR, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + ACTIONS(2663), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(2978), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1725), 1, + sym_static_variable_declaration, + STATE(1797), 1, + sym_variable_name, + ACTIONS(1526), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [47504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2990), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(2988), 8, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [47523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2994), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(2992), 8, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [47542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2998), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(2996), 8, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [47561] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(3000), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3002), 1, + aux_sym_use_instead_of_clause_token1, + STATE(572), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [47590] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2966), 1, + sym_name, + STATE(2006), 1, + sym_attribute, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1756), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47621] = 9, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2930), 1, + sym_name, + ACTIONS(3004), 1, + anon_sym_BSLASH, + STATE(1744), 1, + sym_namespace_use_clause, + STATE(2378), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + STATE(1611), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47652] = 9, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2930), 1, + sym_name, + ACTIONS(3006), 1, + anon_sym_BSLASH, + STATE(1777), 1, + sym_namespace_use_clause, + STATE(2448), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + STATE(1611), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2744), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + ACTIONS(2736), 8, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_SQUOTE, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [47702] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2966), 1, + sym_name, + STATE(2190), 1, + sym_attribute, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1756), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47733] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(3008), 1, + anon_sym_COMMA, + ACTIONS(3010), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_arguments, + STATE(1968), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [47759] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(1715), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [47781] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3012), 1, + sym_name, + STATE(2497), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + STATE(1736), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47809] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3014), 1, + sym_name, + STATE(2497), 1, + sym_namespace_name, + STATE(2498), 1, + sym_namespace_name_as_prefix, + STATE(1574), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47837] = 7, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(3016), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_arguments, + STATE(1942), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [47863] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1516), 1, + anon_sym_BSLASHu, + ACTIONS(1514), 9, + sym_encapsed_string_chars, + sym_encapsed_string_chars_after_variable, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACK, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [47881] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(3008), 1, + anon_sym_COMMA, + ACTIONS(3018), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_arguments, + STATE(1996), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [47907] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3020), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1966), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47935] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3022), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1960), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47963] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + ACTIONS(2663), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3024), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1526), 7, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [47985] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2848), 1, + anon_sym_BSLASHu, + ACTIONS(3026), 1, + anon_sym_DASH_GT, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3030), 1, + sym_encapsed_string_chars_after_variable, + ACTIONS(2854), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [48009] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(1480), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48031] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3032), 1, + sym_name, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + STATE(1699), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48059] = 7, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3034), 1, + sym_name, + ACTIONS(3036), 1, + anon_sym_LBRACE, + STATE(826), 1, + sym__reserved_identifier, + STATE(590), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48084] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(3038), 1, + sym_name, + ACTIONS(3040), 1, + anon_sym_LBRACE, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(684), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48107] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(3042), 1, + sym_name, + ACTIONS(3044), 1, + anon_sym_LBRACE, + STATE(1496), 1, + sym__reserved_identifier, + STATE(691), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48132] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(839), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48155] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2649), 9, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [48170] = 7, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3042), 1, + sym_name, + ACTIONS(3044), 1, + anon_sym_LBRACE, + STATE(1496), 1, + sym__reserved_identifier, + STATE(1519), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48195] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3046), 7, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [48214] = 6, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3048), 1, + sym_name, + ACTIONS(3050), 1, + anon_sym_LBRACE, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(559), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48237] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(705), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48260] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3052), 1, + sym_name, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1515), 1, + sym_reference_modifier, + STATE(1531), 1, + sym_formal_parameters, + STATE(2132), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48287] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(3056), 1, + sym_name, + ACTIONS(3058), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym__reserved_identifier, + STATE(700), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48312] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2653), 9, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [48327] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2573), 9, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [48342] = 7, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3056), 1, + sym_name, + ACTIONS(3058), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym__reserved_identifier, + STATE(557), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48367] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(3060), 1, + sym_name, + ACTIONS(3062), 1, + anon_sym_LBRACE, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(825), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48390] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(3064), 1, + sym_name, + ACTIONS(3066), 1, + anon_sym_LBRACE, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(824), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48413] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(3068), 1, + sym_name, + ACTIONS(3070), 1, + anon_sym_LBRACE, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(670), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48436] = 6, + ACTIONS(1434), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3072), 1, + sym_name, + ACTIONS(3076), 1, + anon_sym_LBRACE, + ACTIONS(3074), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(629), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48459] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(2437), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48480] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(2431), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48501] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(3078), 1, + sym_name, + ACTIONS(3080), 1, + anon_sym_LBRACE, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(675), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48524] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(3056), 1, + sym_name, + ACTIONS(3058), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym__reserved_identifier, + STATE(835), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48549] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(3082), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48570] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(3084), 1, + sym_name, + ACTIONS(3086), 1, + anon_sym_LBRACE, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(807), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48593] = 6, + ACTIONS(1434), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3088), 1, + sym_name, + ACTIONS(3090), 1, + anon_sym_LBRACE, + ACTIONS(3074), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(636), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48616] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(3092), 1, + sym_name, + ACTIONS(3094), 1, + anon_sym_LBRACE, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(786), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48639] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2659), 9, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [48654] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(642), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48677] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48700] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(3056), 1, + sym_name, + ACTIONS(3058), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym__reserved_identifier, + STATE(671), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48725] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(2421), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48746] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(3096), 1, + sym_name, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(663), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48769] = 7, + ACTIONS(1440), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3100), 1, + sym_name, + ACTIONS(3102), 1, + anon_sym_LBRACE, + STATE(821), 1, + sym__reserved_identifier, + STATE(746), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48794] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(3104), 1, + sym_name, + ACTIONS(3106), 1, + anon_sym_LBRACE, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(829), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48817] = 6, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3048), 1, + sym_name, + ACTIONS(3050), 1, + anon_sym_LBRACE, + ACTIONS(3108), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(559), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48840] = 6, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3110), 1, + sym_name, + ACTIONS(3112), 1, + anon_sym_LBRACE, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(561), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48863] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(572), 1, + sym_arguments, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48886] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(2403), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48907] = 6, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3110), 1, + sym_name, + ACTIONS(3112), 1, + anon_sym_LBRACE, + ACTIONS(3108), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(561), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48930] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(3114), 1, + sym_name, + ACTIONS(3116), 1, + anon_sym_LBRACE, + ACTIONS(2932), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(828), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48953] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3052), 1, + sym_name, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1512), 1, + sym_reference_modifier, + STATE(1545), 1, + sym_formal_parameters, + STATE(2132), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48980] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(3118), 1, + sym_name, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(1510), 1, + sym__reserved_identifier, + STATE(787), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49005] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1516), 1, + anon_sym_BSLASHu, + ACTIONS(1514), 8, + sym_execution_string_chars, + sym_execution_string_chars_after_variable, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACK, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [49022] = 6, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3122), 1, + sym_name, + ACTIONS(3126), 1, + anon_sym_LBRACE, + ACTIONS(3124), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(588), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49045] = 7, + ACTIONS(1440), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3102), 1, + anon_sym_LBRACE, + ACTIONS(3128), 1, + sym_name, + STATE(1509), 1, + sym__reserved_identifier, + STATE(746), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49070] = 7, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3118), 1, + sym_name, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(1510), 1, + sym__reserved_identifier, + STATE(1520), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49095] = 6, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3130), 1, + sym_name, + ACTIONS(3132), 1, + anon_sym_LBRACE, + ACTIONS(3124), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(589), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49118] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(3134), 1, + sym_name, + ACTIONS(3136), 1, + anon_sym_LBRACE, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(678), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49141] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(3138), 1, + sym_name, + ACTIONS(3140), 1, + anon_sym_LBRACE, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(679), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49164] = 7, + ACTIONS(1434), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3142), 1, + sym_name, + ACTIONS(3144), 1, + anon_sym_LBRACE, + STATE(677), 1, + sym__reserved_identifier, + STATE(631), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49189] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2848), 1, + anon_sym_BSLASHu, + ACTIONS(3146), 1, + anon_sym_DASH_GT, + ACTIONS(3148), 1, + anon_sym_LBRACK, + ACTIONS(3150), 1, + sym_execution_string_chars_after_variable, + ACTIONS(2854), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [49212] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(3152), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49233] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(3154), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49254] = 6, + ACTIONS(1440), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3156), 1, + sym_name, + ACTIONS(3160), 1, + anon_sym_LBRACE, + ACTIONS(3158), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(763), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49277] = 6, + ACTIONS(1440), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3162), 1, + sym_name, + ACTIONS(3164), 1, + anon_sym_LBRACE, + ACTIONS(3158), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(764), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49300] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(3056), 1, + sym_name, + ACTIONS(3058), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym__reserved_identifier, + STATE(827), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49325] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2663), 9, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [49340] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1027), 1, + sym_declaration_list, + STATE(1579), 1, + sym_arguments, + STATE(1723), 1, + sym_base_clause, + STATE(2300), 1, + sym_class_interface_clause, + [49368] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(912), 1, + sym_declaration_list, + STATE(1571), 1, + sym_arguments, + STATE(1810), 1, + sym_base_clause, + STATE(2148), 1, + sym_class_interface_clause, + [49396] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1088), 1, + sym_declaration_list, + STATE(1580), 1, + sym_arguments, + STATE(1703), 1, + sym_base_clause, + STATE(2215), 1, + sym_class_interface_clause, + [49424] = 6, + ACTIONS(945), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3174), 1, + aux_sym_catch_clause_token1, + ACTIONS(3176), 1, + aux_sym_finally_clause_token1, + ACTIONS(943), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + STATE(1478), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [49446] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3008), 1, + anon_sym_COMMA, + ACTIONS(3018), 1, + anon_sym_RPAREN, + STATE(1996), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49466] = 5, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3016), 1, + anon_sym_RPAREN, + STATE(1942), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49486] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + ACTIONS(2663), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(2978), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1526), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49506] = 8, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(3180), 1, + anon_sym_COMMA, + ACTIONS(3182), 1, + anon_sym_LBRACE, + STATE(1338), 1, + sym_use_list, + STATE(1528), 1, + aux_sym_base_clause_repeat1, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3178), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49532] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + STATE(1486), 1, + sym_qualified_name, + STATE(1749), 1, + sym_named_type, + STATE(1982), 1, + sym_type_list, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + [49560] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + STATE(1486), 1, + sym_qualified_name, + STATE(1749), 1, + sym_named_type, + STATE(2058), 1, + sym_type_list, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + [49588] = 9, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(913), 1, + sym_declaration_list, + STATE(1557), 1, + sym_arguments, + STATE(1800), 1, + sym_base_clause, + STATE(2222), 1, + sym_class_interface_clause, + [49616] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3008), 1, + anon_sym_COMMA, + ACTIONS(3010), 1, + anon_sym_RPAREN, + STATE(1968), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49636] = 6, + ACTIONS(935), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3184), 1, + aux_sym_catch_clause_token1, + ACTIONS(3187), 1, + aux_sym_finally_clause_token1, + ACTIONS(933), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + STATE(1478), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [49658] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3152), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49673] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3190), 1, + anon_sym_AMP, + ACTIONS(3195), 1, + anon_sym_PIPE, + STATE(1670), 1, + aux_sym_intersection_type_repeat1, + STATE(1682), 1, + aux_sym_union_type_repeat1, + ACTIONS(3192), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [49694] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1516), 1, + anon_sym_BSLASHu, + ACTIONS(1514), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [49709] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(642), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49726] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(705), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49743] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(839), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49760] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49777] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3046), 7, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [49790] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3197), 1, + anon_sym_BSLASHu, + ACTIONS(2813), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [49805] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3201), 1, + aux_sym_enum_case_token1, + ACTIONS(3204), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3199), 2, + anon_sym_RBRACE, + aux_sym_switch_block_token1, + STATE(1488), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [49824] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3209), 1, + anon_sym_DASH, + ACTIONS(3207), 2, + sym_integer, + sym_name, + STATE(2416), 3, + sym__simple_string_subscript_unary_expression, + sym__simple_string_array_access_argument, + sym_variable_name, + [49843] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3209), 1, + anon_sym_DASH, + ACTIONS(3211), 2, + sym_integer, + sym_name, + STATE(2403), 3, + sym__simple_string_subscript_unary_expression, + sym__simple_string_array_access_argument, + sym_variable_name, + [49862] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1496), 1, + anon_sym_BSLASHu, + ACTIONS(1494), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [49877] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3213), 1, + anon_sym_AMP, + ACTIONS(3215), 1, + anon_sym_PIPE, + STATE(1592), 1, + aux_sym_intersection_type_repeat1, + STATE(1672), 1, + aux_sym_union_type_repeat1, + ACTIONS(3192), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [49898] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3154), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49913] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(839), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49930] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49947] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(740), 1, + sym_arguments, + ACTIONS(1639), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49964] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(705), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49981] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3046), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [49998] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3082), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50013] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1540), 1, + anon_sym_BSLASHu, + ACTIONS(1538), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50028] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(642), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50045] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3219), 1, + anon_sym_BSLASHu, + ACTIONS(3217), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50060] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(602), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50077] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3000), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3002), 1, + aux_sym_use_instead_of_clause_token1, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50094] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_BSLASHu, + ACTIONS(2998), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50109] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2992), 1, + anon_sym_BSLASHu, + ACTIONS(2994), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50124] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3209), 1, + anon_sym_DASH, + ACTIONS(3221), 2, + sym_integer, + sym_name, + STATE(2500), 3, + sym__simple_string_subscript_unary_expression, + sym__simple_string_array_access_argument, + sym_variable_name, + [50143] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2984), 1, + anon_sym_BSLASHu, + ACTIONS(2986), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50158] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(766), 1, + sym_arguments, + ACTIONS(1639), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50175] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(868), 1, + sym_arguments, + ACTIONS(1639), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50192] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1588), 1, + sym_name, + STATE(1486), 1, + sym_qualified_name, + STATE(1831), 1, + sym_named_type, + STATE(2452), 1, + sym_namespace_name_as_prefix, + STATE(2497), 1, + sym_namespace_name, + [50217] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + ACTIONS(3223), 1, + sym_name, + STATE(1532), 1, + sym_formal_parameters, + STATE(2246), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50238] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2980), 1, + anon_sym_BSLASHu, + ACTIONS(2982), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [50253] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50270] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + ACTIONS(3223), 1, + sym_name, + STATE(1572), 1, + sym_formal_parameters, + STATE(2246), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50291] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(3227), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1887), 1, + sym_namespace_aliasing_clause, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3225), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [50312] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3229), 1, + sym_name, + STATE(1636), 1, + sym_reference_modifier, + STATE(2110), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50333] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_arguments, + ACTIONS(1476), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50350] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(740), 1, + sym_arguments, + ACTIONS(1466), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50367] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(868), 1, + sym_arguments, + ACTIONS(1466), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50384] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1821), 3, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + ACTIONS(1819), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [50399] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3231), 1, + sym_name, + STATE(1718), 1, + sym_const_element, + STATE(2463), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50417] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2992), 1, + anon_sym_BSLASHu, + ACTIONS(2994), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [50431] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3233), 1, + aux_sym_enum_case_token1, + ACTIONS(3235), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3237), 1, + aux_sym_switch_block_token1, + STATE(1565), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [50449] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3239), 1, + aux_sym_if_statement_token2, + ACTIONS(3241), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3243), 1, + aux_sym_else_clause_token1, + STATE(1546), 1, + aux_sym_if_statement_repeat2, + STATE(1969), 1, + sym_else_if_clause_2, + STATE(2402), 1, + sym_else_clause_2, + [50471] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1110), 1, + sym_compound_statement, + STATE(1799), 1, + sym_anonymous_function_use_clause, + STATE(2319), 1, + sym__return_type, + [50493] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1034), 1, + sym_compound_statement, + STATE(1712), 1, + sym_anonymous_function_use_clause, + STATE(2292), 1, + sym__return_type, + [50515] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3180), 1, + anon_sym_COMMA, + ACTIONS(3182), 1, + anon_sym_LBRACE, + STATE(1330), 1, + sym_use_list, + STATE(1639), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3251), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50535] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1540), 1, + anon_sym_BSLASHu, + ACTIONS(1538), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [50549] = 7, + ACTIONS(959), 1, + aux_sym_while_statement_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3253), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3256), 1, + aux_sym_else_clause_token1, + STATE(1652), 1, + aux_sym_if_statement_repeat1, + STATE(1905), 1, + sym_else_clause, + STATE(1936), 1, + sym_else_if_clause, + [50571] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1029), 1, + sym_compound_statement, + STATE(1733), 1, + sym_anonymous_function_use_clause, + STATE(2248), 1, + sym__return_type, + [50593] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1048), 1, + sym_compound_statement, + STATE(1758), 1, + sym_anonymous_function_use_clause, + STATE(2163), 1, + sym__return_type, + [50615] = 7, + ACTIONS(951), 1, + aux_sym_while_statement_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3259), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3261), 1, + aux_sym_else_clause_token1, + STATE(1561), 1, + aux_sym_if_statement_repeat1, + STATE(1936), 1, + sym_else_if_clause, + STATE(2016), 1, + sym_else_clause, + [50637] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1496), 1, + anon_sym_BSLASHu, + ACTIONS(1494), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [50651] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3231), 1, + sym_name, + STATE(1772), 1, + sym_const_element, + STATE(2463), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50669] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(436), 1, + sym_declaration_list, + STATE(1684), 1, + sym_base_clause, + STATE(2167), 1, + sym_class_interface_clause, + [50691] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3231), 1, + sym_name, + STATE(1816), 1, + sym_const_element, + STATE(2463), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50709] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(445), 1, + sym_declaration_list, + STATE(1730), 1, + sym_base_clause, + STATE(2265), 1, + sym_class_interface_clause, + [50731] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3265), 1, + anon_sym_BSLASHu, + ACTIONS(2919), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [50745] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2980), 1, + anon_sym_BSLASHu, + ACTIONS(2982), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [50759] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3241), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3243), 1, + aux_sym_else_clause_token1, + ACTIONS(3267), 1, + aux_sym_if_statement_token2, + STATE(1628), 1, + aux_sym_if_statement_repeat2, + STATE(1969), 1, + sym_else_if_clause_2, + STATE(2492), 1, + sym_else_clause_2, + [50781] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3231), 1, + sym_name, + STATE(1766), 1, + sym_const_element, + STATE(2463), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50799] = 7, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(944), 1, + sym_compound_statement, + STATE(1817), 1, + sym_anonymous_function_use_clause, + STATE(2093), 1, + sym__return_type, + [50821] = 7, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(934), 1, + sym_compound_statement, + STATE(1815), 1, + sym_anonymous_function_use_clause, + STATE(2113), 1, + sym__return_type, + [50843] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1063), 1, + sym_compound_statement, + STATE(1711), 1, + sym_anonymous_function_use_clause, + STATE(2155), 1, + sym__return_type, + [50865] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3241), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3243), 1, + aux_sym_else_clause_token1, + ACTIONS(3269), 1, + aux_sym_if_statement_token2, + STATE(1628), 1, + aux_sym_if_statement_repeat2, + STATE(1969), 1, + sym_else_if_clause_2, + STATE(2384), 1, + sym_else_clause_2, + [50887] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1516), 1, + anon_sym_BSLASHu, + ACTIONS(1514), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [50901] = 7, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(910), 1, + sym_compound_statement, + STATE(1785), 1, + sym_anonymous_function_use_clause, + STATE(2258), 1, + sym__return_type, + [50923] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3271), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [50935] = 7, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(909), 1, + sym_compound_statement, + STATE(1788), 1, + sym_anonymous_function_use_clause, + STATE(2303), 1, + sym__return_type, + [50957] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1663), 1, + sym_declaration_list, + STATE(1791), 1, + sym_base_clause, + STATE(2301), 1, + sym_class_interface_clause, + [50979] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3233), 1, + aux_sym_enum_case_token1, + ACTIONS(3235), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3273), 1, + anon_sym_RBRACE, + STATE(1583), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [50997] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1643), 1, + sym_declaration_list, + STATE(1789), 1, + sym_base_clause, + STATE(2305), 1, + sym_class_interface_clause, + [51019] = 7, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(937), 1, + sym_compound_statement, + STATE(1792), 1, + sym_anonymous_function_use_clause, + STATE(2285), 1, + sym__return_type, + [51041] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(3275), 1, + anon_sym_COMMA, + STATE(1746), 1, + aux_sym_base_clause_repeat1, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3277), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [51061] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_BSLASHu, + ACTIONS(2998), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [51075] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(900), 1, + sym_declaration_list, + STATE(1812), 1, + sym_base_clause, + STATE(2144), 1, + sym_class_interface_clause, + [51097] = 7, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(938), 1, + sym_compound_statement, + STATE(1793), 1, + sym_anonymous_function_use_clause, + STATE(2262), 1, + sym__return_type, + [51119] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1039), 1, + sym_compound_statement, + STATE(1716), 1, + sym_anonymous_function_use_clause, + STATE(2133), 1, + sym__return_type, + [51141] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3231), 1, + sym_name, + STATE(1778), 1, + sym_const_element, + STATE(2463), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51159] = 7, + ACTIONS(959), 1, + aux_sym_while_statement_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3259), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3261), 1, + aux_sym_else_clause_token1, + STATE(1652), 1, + aux_sym_if_statement_repeat1, + STATE(1905), 1, + sym_else_clause, + STATE(1936), 1, + sym_else_if_clause, + [51181] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(440), 1, + sym_declaration_list, + STATE(1713), 1, + sym_base_clause, + STATE(2149), 1, + sym_class_interface_clause, + [51203] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1673), 1, + sym_declaration_list, + STATE(1806), 1, + sym_base_clause, + STATE(2069), 1, + sym_class_interface_clause, + [51225] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3279), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [51237] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3233), 1, + aux_sym_enum_case_token1, + ACTIONS(3235), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3281), 1, + aux_sym_switch_block_token1, + STATE(1488), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51255] = 7, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(923), 1, + sym_compound_statement, + STATE(1803), 1, + sym_anonymous_function_use_clause, + STATE(2178), 1, + sym__return_type, + [51277] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3233), 1, + aux_sym_enum_case_token1, + ACTIONS(3235), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3283), 1, + anon_sym_RBRACE, + STATE(1488), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51295] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3285), 1, + anon_sym_AMP, + ACTIONS(3289), 1, + anon_sym_PIPE, + STATE(1679), 1, + aux_sym_union_type_repeat1, + STATE(1694), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3192), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [51315] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3233), 1, + aux_sym_enum_case_token1, + ACTIONS(3235), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3291), 1, + aux_sym_switch_block_token1, + STATE(1488), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51333] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_declaration_list, + STATE(1760), 1, + sym_base_clause, + STATE(2068), 1, + sym_class_interface_clause, + [51355] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(916), 1, + sym_declaration_list, + STATE(1796), 1, + sym_base_clause, + STATE(2234), 1, + sym_class_interface_clause, + [51377] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1038), 1, + sym_compound_statement, + STATE(1695), 1, + sym_anonymous_function_use_clause, + STATE(2257), 1, + sym__return_type, + [51399] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1671), 1, + sym_declaration_list, + STATE(1802), 1, + sym_base_clause, + STATE(2182), 1, + sym_class_interface_clause, + [51421] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3180), 1, + anon_sym_COMMA, + ACTIONS(3182), 1, + anon_sym_LBRACE, + STATE(1338), 1, + sym_use_list, + STATE(1528), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3178), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51441] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3293), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [51453] = 7, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(924), 1, + sym_compound_statement, + STATE(1801), 1, + sym_anonymous_function_use_clause, + STATE(2185), 1, + sym__return_type, + [51475] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3231), 1, + sym_name, + STATE(1732), 1, + sym_const_element, + STATE(2463), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51493] = 7, + ACTIONS(951), 1, + aux_sym_while_statement_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3295), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3298), 1, + aux_sym_else_clause_token1, + STATE(1530), 1, + aux_sym_if_statement_repeat1, + STATE(1936), 1, + sym_else_if_clause, + STATE(2016), 1, + sym_else_clause, + [51515] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1083), 1, + sym_declaration_list, + STATE(1702), 1, + sym_base_clause, + STATE(2219), 1, + sym_class_interface_clause, + [51537] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1017), 1, + sym_declaration_list, + STATE(1752), 1, + sym_base_clause, + STATE(2108), 1, + sym_class_interface_clause, + [51559] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3233), 1, + aux_sym_enum_case_token1, + ACTIONS(3235), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3301), 1, + aux_sym_switch_block_token1, + STATE(1569), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51577] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3303), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [51593] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3233), 1, + aux_sym_enum_case_token1, + ACTIONS(3235), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3305), 1, + anon_sym_RBRACE, + STATE(1488), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51611] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3231), 1, + sym_name, + STATE(1958), 1, + sym_const_element, + STATE(2463), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51629] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3233), 1, + aux_sym_enum_case_token1, + ACTIONS(3235), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3307), 1, + anon_sym_RBRACE, + STATE(1567), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [51647] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3241), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3243), 1, + aux_sym_else_clause_token1, + ACTIONS(3309), 1, + aux_sym_if_statement_token2, + STATE(1541), 1, + aux_sym_if_statement_repeat2, + STATE(1969), 1, + sym_else_if_clause_2, + STATE(2369), 1, + sym_else_clause_2, + [51669] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2984), 1, + anon_sym_BSLASHu, + ACTIONS(2986), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [51683] = 7, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3245), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1046), 1, + sym_compound_statement, + STATE(1755), 1, + sym_anonymous_function_use_clause, + STATE(2154), 1, + sym__return_type, + [51705] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + STATE(2317), 1, + sym_arguments, + ACTIONS(3311), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [51725] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3315), 1, + anon_sym_COLON, + STATE(1964), 1, + sym__return_type, + ACTIONS(3313), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [51740] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_PIPE, + STATE(1591), 1, + aux_sym_union_type_repeat1, + ACTIONS(3293), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [51755] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3213), 1, + anon_sym_AMP, + STATE(1665), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3320), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [51770] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3322), 1, + sym_name, + ACTIONS(3324), 1, + anon_sym_BSLASH, + STATE(481), 1, + sym_compound_statement, + STATE(1609), 1, + sym_namespace_name, + [51789] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3326), 1, + anon_sym_LBRACE, + ACTIONS(3328), 1, + anon_sym_COLON, + STATE(1929), 1, + sym_enum_declaration_list, + STATE(2179), 1, + sym_class_interface_clause, + [51808] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3332), 1, + anon_sym_BSLASH, + STATE(1597), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3330), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [51823] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3336), 1, + anon_sym_RPAREN, + STATE(2158), 2, + sym_variable_name, + sym_variable_reference, + [51840] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3332), 1, + anon_sym_BSLASH, + STATE(1657), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3338), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [51855] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + sym_heredoc_end, + STATE(1795), 1, + sym_nowdoc_body, + STATE(2000), 1, + sym__new_line, + ACTIONS(3340), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [51872] = 5, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3344), 1, + sym_name, + ACTIONS(3346), 1, + anon_sym_LBRACE, + STATE(609), 2, + sym_dynamic_variable_name, + sym_variable_name, + [51889] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3348), 1, + anon_sym_LBRACE, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(3352), 1, + anon_sym_DASH_GT, + ACTIONS(3354), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3356), 1, + anon_sym_LBRACK, + [51908] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3360), 1, + sym_heredoc_end, + STATE(1303), 1, + sym__new_line, + STATE(1794), 1, + sym_heredoc_body, + ACTIONS(3358), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [51925] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3364), 1, + sym_heredoc_end, + ACTIONS(3366), 1, + sym_nowdoc_string, + STATE(1602), 1, + aux_sym_nowdoc_body_repeat1, + ACTIONS(3362), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [51942] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3369), 1, + sym_name, + STATE(1975), 1, + sym_visibility_modifier, + ACTIONS(3371), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [51957] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3375), 1, + sym_heredoc_end, + ACTIONS(3377), 1, + sym_nowdoc_string, + STATE(1602), 1, + aux_sym_nowdoc_body_repeat1, + ACTIONS(3373), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [51974] = 3, + ACTIONS(977), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(975), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51987] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3303), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [52002] = 4, + ACTIONS(1046), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1044), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3379), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52017] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3381), 1, + anon_sym_BSLASH, + STATE(1630), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3330), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52032] = 5, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3386), 1, + anon_sym_BSLASH, + STATE(519), 1, + sym_compound_statement, + ACTIONS(3384), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52049] = 5, + ACTIONS(1440), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3388), 1, + sym_name, + ACTIONS(3390), 1, + anon_sym_LBRACE, + STATE(765), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52066] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3227), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1887), 1, + sym_namespace_aliasing_clause, + ACTIONS(3225), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [52081] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(3392), 1, + anon_sym_LBRACE, + ACTIONS(3394), 1, + anon_sym_DASH_GT, + ACTIONS(3396), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3398), 1, + anon_sym_LBRACK, + [52100] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3400), 1, + anon_sym_RPAREN, + STATE(2158), 2, + sym_variable_name, + sym_variable_reference, + [52117] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(3404), 1, + anon_sym_COLON, + STATE(493), 1, + sym_enum_declaration_list, + STATE(2261), 1, + sym_class_interface_clause, + [52136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + sym_heredoc_end, + STATE(1303), 1, + sym__new_line, + STATE(1811), 1, + sym_heredoc_body, + ACTIONS(3358), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [52153] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3408), 1, + sym_name, + STATE(1720), 1, + sym_namespace_name, + STATE(2177), 1, + sym_namespace_use_group_clause, + ACTIONS(3410), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [52170] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_DOLLAR, + ACTIONS(3412), 1, + sym_name, + ACTIONS(3414), 1, + anon_sym_LBRACE, + STATE(840), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52187] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(3392), 1, + anon_sym_LBRACE, + ACTIONS(3398), 1, + anon_sym_LBRACK, + ACTIONS(3416), 1, + anon_sym_DASH_GT, + ACTIONS(3418), 1, + anon_sym_QMARK_DASH_GT, + [52206] = 3, + ACTIONS(993), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(991), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52219] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3420), 1, + aux_sym_catch_clause_token1, + ACTIONS(3422), 1, + aux_sym_finally_clause_token1, + STATE(416), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [52234] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(3424), 1, + anon_sym_LBRACE, + ACTIONS(3426), 1, + anon_sym_DASH_GT, + ACTIONS(3428), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3430), 1, + anon_sym_LBRACK, + [52253] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(3432), 1, + anon_sym_LBRACE, + ACTIONS(3434), 1, + anon_sym_DASH_GT, + ACTIONS(3436), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3438), 1, + anon_sym_LBRACK, + [52272] = 4, + ACTIONS(1026), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1024), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3440), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52287] = 4, + ACTIONS(1014), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1012), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3442), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52302] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(3424), 1, + anon_sym_LBRACE, + ACTIONS(3430), 1, + anon_sym_LBRACK, + ACTIONS(3444), 1, + anon_sym_DASH_GT, + ACTIONS(3446), 1, + anon_sym_QMARK_DASH_GT, + [52321] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3448), 1, + sym_name, + ACTIONS(3450), 1, + anon_sym_LBRACE, + ACTIONS(3452), 1, + anon_sym_DOLLAR, + STATE(1491), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52338] = 4, + ACTIONS(1008), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1006), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3454), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52353] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3456), 1, + aux_sym_if_statement_token2, + ACTIONS(3458), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3461), 1, + aux_sym_else_clause_token1, + STATE(1628), 1, + aux_sym_if_statement_repeat2, + STATE(1969), 1, + sym_else_if_clause_2, + [52372] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(3424), 1, + anon_sym_LBRACE, + ACTIONS(3430), 1, + anon_sym_LBRACK, + ACTIONS(3463), 1, + anon_sym_DASH_GT, + ACTIONS(3465), 1, + anon_sym_QMARK_DASH_GT, + [52391] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3467), 1, + anon_sym_BSLASH, + STATE(1664), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3338), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52406] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(3470), 1, + anon_sym_LBRACE, + ACTIONS(3472), 1, + anon_sym_DASH_GT, + ACTIONS(3474), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3476), 1, + anon_sym_LBRACK, + [52425] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3478), 1, + sym_name, + ACTIONS(3480), 1, + anon_sym_LBRACE, + ACTIONS(3482), 1, + anon_sym_DOLLAR, + STATE(1534), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52442] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3484), 1, + sym_heredoc_end, + STATE(1303), 1, + sym__new_line, + STATE(1721), 1, + sym_heredoc_body, + ACTIONS(3358), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [52459] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3488), 1, + anon_sym_EQ, + STATE(1963), 1, + sym_property_initializer, + ACTIONS(3486), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [52474] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3174), 1, + aux_sym_catch_clause_token1, + ACTIONS(3176), 1, + aux_sym_finally_clause_token1, + STATE(1469), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [52489] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3490), 1, + sym_name, + STATE(2252), 1, + sym__reserved_identifier, + ACTIONS(2968), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [52504] = 5, + ACTIONS(1434), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3492), 1, + sym_name, + ACTIONS(3494), 1, + anon_sym_LBRACE, + STATE(658), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52521] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3326), 1, + anon_sym_LBRACE, + ACTIONS(3496), 1, + anon_sym_COLON, + STATE(2012), 1, + sym_enum_declaration_list, + STATE(2304), 1, + sym_class_interface_clause, + [52540] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3498), 1, + anon_sym_COMMA, + STATE(1639), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3303), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52555] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3501), 1, + anon_sym_PIPE, + STATE(1640), 1, + aux_sym_union_type_repeat1, + ACTIONS(3293), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [52570] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1633), 1, + anon_sym_DOLLAR, + ACTIONS(3504), 1, + sym_name, + ACTIONS(3506), 1, + anon_sym_LBRACE, + STATE(703), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52587] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3508), 1, + anon_sym_DOT_DOT_DOT, + STATE(1945), 1, + sym_reference_modifier, + STATE(1946), 1, + sym_variable_name, + [52606] = 4, + ACTIONS(1064), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1062), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3510), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52621] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3512), 5, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [52632] = 4, + ACTIONS(1058), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1056), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3514), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52647] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3279), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [52658] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3516), 5, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [52669] = 5, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3386), 1, + anon_sym_BSLASH, + STATE(2046), 1, + sym_compound_statement, + ACTIONS(3518), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52686] = 4, + ACTIONS(1020), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1018), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3520), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52701] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3046), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [52712] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(3392), 1, + anon_sym_LBRACE, + ACTIONS(3398), 1, + anon_sym_LBRACK, + ACTIONS(3522), 1, + anon_sym_DASH_GT, + ACTIONS(3524), 1, + anon_sym_QMARK_DASH_GT, + [52731] = 6, + ACTIONS(995), 1, + aux_sym_while_statement_token1, + ACTIONS(997), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3526), 1, + aux_sym_else_if_clause_token1, + STATE(1652), 1, + aux_sym_if_statement_repeat1, + STATE(1936), 1, + sym_else_if_clause, + [52750] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3450), 1, + anon_sym_LBRACE, + ACTIONS(3452), 1, + anon_sym_DOLLAR, + ACTIONS(3529), 1, + sym_name, + STATE(1491), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52767] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3480), 1, + anon_sym_LBRACE, + ACTIONS(3482), 1, + anon_sym_DOLLAR, + ACTIONS(3531), 1, + sym_name, + STATE(1534), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52784] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3533), 1, + sym_name, + ACTIONS(3535), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + anon_sym_DOLLAR, + STATE(1381), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52801] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(3539), 1, + anon_sym_LBRACE, + ACTIONS(3541), 1, + anon_sym_DASH_GT, + ACTIONS(3543), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3545), 1, + anon_sym_LBRACK, + [52820] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3549), 1, + anon_sym_BSLASH, + STATE(1657), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3547), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [52835] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3535), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + anon_sym_DOLLAR, + ACTIONS(3552), 1, + sym_name, + STATE(1381), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52852] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + ACTIONS(3432), 1, + anon_sym_LBRACE, + ACTIONS(3438), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, + anon_sym_DASH_GT, + ACTIONS(3556), 1, + anon_sym_QMARK_DASH_GT, + [52871] = 4, + ACTIONS(1070), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1068), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3558), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52886] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3402), 1, + anon_sym_LBRACE, + ACTIONS(3560), 1, + anon_sym_COLON, + STATE(522), 1, + sym_enum_declaration_list, + STATE(2151), 1, + sym_class_interface_clause, + [52905] = 5, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3562), 1, + sym_name, + ACTIONS(3564), 1, + anon_sym_LBRACE, + STATE(562), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52922] = 4, + ACTIONS(1076), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1074), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3566), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52937] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3568), 1, + anon_sym_BSLASH, + STATE(1664), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3547), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52952] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3571), 1, + anon_sym_AMP, + STATE(1665), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3516), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52967] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3574), 1, + anon_sym_PIPE, + STATE(1666), 1, + aux_sym_union_type_repeat1, + ACTIONS(3293), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52982] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3577), 1, + sym_heredoc_end, + STATE(1303), 1, + sym__new_line, + STATE(1754), 1, + sym_heredoc_body, + ACTIONS(3358), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [52999] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3315), 1, + anon_sym_COLON, + STATE(1925), 1, + sym__return_type, + ACTIONS(3579), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [53014] = 6, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3322), 1, + sym_name, + ACTIONS(3324), 1, + anon_sym_BSLASH, + STATE(1648), 1, + sym_namespace_name, + STATE(2024), 1, + sym_compound_statement, + [53033] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3190), 1, + anon_sym_AMP, + STATE(1683), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3320), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [53048] = 4, + ACTIONS(1052), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1050), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3581), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53063] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3215), 1, + anon_sym_PIPE, + STATE(1666), 1, + aux_sym_union_type_repeat1, + ACTIONS(3583), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [53078] = 4, + ACTIONS(1032), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1030), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3585), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53093] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3271), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [53104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3587), 1, + sym_heredoc_end, + STATE(1685), 1, + sym_nowdoc_body, + STATE(2000), 1, + sym__new_line, + ACTIONS(3340), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [53121] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3408), 1, + sym_name, + STATE(1720), 1, + sym_namespace_name, + STATE(2029), 1, + sym_namespace_use_group_clause, + ACTIONS(3410), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [53138] = 3, + ACTIONS(989), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(987), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53151] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + ACTIONS(3275), 1, + anon_sym_COMMA, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(1824), 1, + aux_sym_base_clause_repeat1, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + [53170] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3289), 1, + anon_sym_PIPE, + STATE(1640), 1, + aux_sym_union_type_repeat1, + ACTIONS(3583), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [53185] = 6, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3591), 1, + anon_sym_DOT_DOT_DOT, + STATE(2051), 1, + sym_reference_modifier, + STATE(2052), 1, + sym_variable_name, + [53204] = 4, + ACTIONS(1040), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1038), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3593), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53219] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3195), 1, + anon_sym_PIPE, + STATE(1591), 1, + aux_sym_union_type_repeat1, + ACTIONS(3583), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [53234] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3595), 1, + anon_sym_AMP, + STATE(1683), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3516), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [53249] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(434), 1, + sym_declaration_list, + STATE(2143), 1, + sym_class_interface_clause, + [53265] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3600), 1, + sym_heredoc_end, + STATE(2357), 1, + sym__new_line, + ACTIONS(3598), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [53279] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3293), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [53289] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3516), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + [53299] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3602), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [53309] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3606), 1, + anon_sym_COMMA, + STATE(1689), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3604), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53323] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3609), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [53333] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + STATE(1692), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3611), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53347] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3617), 1, + anon_sym_COMMA, + STATE(1692), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3615), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53361] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3620), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [53371] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3622), 1, + anon_sym_AMP, + STATE(1737), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3320), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [53385] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1019), 1, + sym_compound_statement, + STATE(2084), 1, + sym__return_type, + [53401] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3334), 1, + anon_sym_AMP, + STATE(1825), 2, + sym_variable_name, + sym_variable_reference, + [53415] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3627), 1, + anon_sym_COMMA, + STATE(1697), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3625), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53429] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_SEMI, + ACTIONS(3632), 1, + anon_sym_LBRACE, + ACTIONS(3634), 1, + sym__automatic_semicolon, + STATE(1344), 1, + sym_compound_statement, + [53445] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3275), 1, + anon_sym_COMMA, + STATE(1746), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3277), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [53459] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3402), 1, + anon_sym_LBRACE, + STATE(466), 1, + sym_enum_declaration_list, + STATE(2123), 1, + sym_class_interface_clause, + [53475] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3620), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [53485] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1050), 1, + sym_declaration_list, + STATE(2107), 1, + sym_class_interface_clause, + [53501] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1017), 1, + sym_declaration_list, + STATE(2108), 1, + sym_class_interface_clause, + [53517] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3547), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BSLASH, + anon_sym_LBRACE, + [53527] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3636), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [53537] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1558), 1, + sym_formal_parameters, + STATE(2198), 1, + sym_reference_modifier, + [53553] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3326), 1, + anon_sym_LBRACE, + STATE(1922), 1, + sym_enum_declaration_list, + STATE(2208), 1, + sym_class_interface_clause, + [53569] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1545), 1, + sym_formal_parameters, + STATE(2188), 1, + sym_reference_modifier, + [53585] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1697), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3638), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53599] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1853), 1, + sym_formal_parameters, + STATE(2146), 1, + sym_reference_modifier, + [53615] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1052), 1, + sym_compound_statement, + STATE(2164), 1, + sym__return_type, + [53631] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1086), 1, + sym_compound_statement, + STATE(2127), 1, + sym__return_type, + [53647] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(442), 1, + sym_declaration_list, + STATE(2168), 1, + sym_class_interface_clause, + [53663] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1543), 1, + sym_formal_parameters, + STATE(2162), 1, + sym_reference_modifier, + [53679] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(2020), 1, + sym_formal_parameters, + STATE(2141), 1, + sym_reference_modifier, + [53695] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1056), 1, + sym_compound_statement, + STATE(2183), 1, + sym__return_type, + [53711] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1588), 1, + sym_formal_parameters, + STATE(2077), 1, + sym_reference_modifier, + [53727] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1709), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3642), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53741] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3547), 4, + anon_sym_COMMA, + anon_sym_BSLASH, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [53751] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3646), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(2187), 1, + sym_namespace_aliasing_clause, + ACTIONS(3644), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3650), 1, + sym_heredoc_end, + STATE(2417), 1, + sym__new_line, + ACTIONS(3648), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [53779] = 5, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3652), 1, + anon_sym_EQ, + ACTIONS(3654), 1, + anon_sym_RPAREN, + STATE(1983), 1, + aux_sym__list_destructing_repeat1, + [53795] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1083), 1, + sym_declaration_list, + STATE(2219), 1, + sym_class_interface_clause, + [53811] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3602), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [53821] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_COMMA, + STATE(1775), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3656), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53835] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3662), 1, + anon_sym_COMMA, + STATE(1776), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3660), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53849] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1566), 1, + sym_formal_parameters, + STATE(2241), 1, + sym_reference_modifier, + [53865] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + STATE(1779), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3664), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53879] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3666), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [53889] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, + STATE(2244), 1, + sym_class_interface_clause, + [53905] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1697), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3642), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53919] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1786), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3668), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53933] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1028), 1, + sym_compound_statement, + STATE(2253), 1, + sym__return_type, + [53949] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3670), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [53959] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(2028), 1, + sym_declaration_list, + STATE(2281), 1, + sym_base_clause, + [53975] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3303), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [53985] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3672), 1, + anon_sym_AMP, + STATE(1737), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3516), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [53999] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1531), 1, + sym_formal_parameters, + STATE(2290), 1, + sym_reference_modifier, + [54015] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3666), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [54025] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + STATE(1692), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3675), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54039] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3632), 1, + anon_sym_LBRACE, + ACTIONS(3677), 1, + anon_sym_SEMI, + ACTIONS(3679), 1, + sym__automatic_semicolon, + STATE(1327), 1, + sym_compound_statement, + [54055] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3683), 1, + anon_sym_COMMA, + STATE(1771), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3681), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54069] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3632), 1, + anon_sym_LBRACE, + ACTIONS(3685), 1, + anon_sym_SEMI, + ACTIONS(3687), 1, + sym__automatic_semicolon, + STATE(1335), 1, + sym_compound_statement, + [54085] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + STATE(1691), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3675), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54099] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3662), 1, + anon_sym_COMMA, + STATE(1689), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3689), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54113] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3275), 1, + anon_sym_COMMA, + STATE(1781), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3691), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [54127] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_COMMA, + STATE(1753), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3693), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54141] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1923), 1, + sym_formal_parameters, + STATE(2296), 1, + sym_reference_modifier, + [54157] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3697), 1, + anon_sym_PIPE, + STATE(1783), 1, + aux_sym_type_list_repeat1, + ACTIONS(3695), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [54171] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1919), 1, + sym_formal_parameters, + STATE(2308), 1, + sym_reference_modifier, + [54187] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2948), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3699), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(3701), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2391), 1, + sym_static_modifier, + [54203] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1051), 1, + sym_declaration_list, + STATE(2267), 1, + sym_class_interface_clause, + [54219] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3705), 1, + anon_sym_COMMA, + STATE(1753), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3703), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54233] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3710), 1, + sym_heredoc_end, + STATE(2329), 1, + sym__new_line, + ACTIONS(3708), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [54247] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1020), 1, + sym_compound_statement, + STATE(2243), 1, + sym__return_type, + [54263] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(2317), 1, + sym_arguments, + ACTIONS(3311), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54277] = 3, + ACTIONS(1446), 1, + sym_comment, + STATE(2346), 1, + sym_declare_directive, + ACTIONS(3712), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [54289] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1023), 1, + sym_compound_statement, + STATE(2225), 1, + sym__return_type, + [54305] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3402), 1, + anon_sym_LBRACE, + STATE(490), 1, + sym_enum_declaration_list, + STATE(2229), 1, + sym_class_interface_clause, + [54321] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(435), 1, + sym_declaration_list, + STATE(2211), 1, + sym_class_interface_clause, + [54337] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3646), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(2284), 1, + sym_namespace_aliasing_clause, + ACTIONS(3714), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54351] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2938), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2948), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3716), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2391), 1, + sym_static_modifier, + [54367] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1697), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3718), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54381] = 3, + ACTIONS(1446), 1, + sym_comment, + STATE(2426), 1, + sym_declare_directive, + ACTIONS(3712), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [54393] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3670), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [54403] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1763), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3720), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54417] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1697), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3720), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54431] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1548), 1, + sym_formal_parameters, + STATE(2275), 1, + sym_reference_modifier, + [54447] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3683), 1, + anon_sym_COMMA, + STATE(1813), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3722), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54461] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3632), 1, + anon_sym_LBRACE, + ACTIONS(3724), 1, + anon_sym_SEMI, + ACTIONS(3726), 1, + sym__automatic_semicolon, + STATE(1339), 1, + sym_compound_statement, + [54477] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3683), 1, + anon_sym_COMMA, + STATE(1822), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3728), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54491] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1767), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3730), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54505] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3683), 1, + anon_sym_COMMA, + STATE(1820), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3732), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54519] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3168), 1, + aux_sym_base_clause_token1, + ACTIONS(3734), 1, + anon_sym_LBRACE, + STATE(515), 1, + sym_declaration_list, + STATE(2259), 1, + sym_base_clause, + [54535] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_COMMA, + STATE(1753), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3736), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54549] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3662), 1, + anon_sym_COMMA, + STATE(1689), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3738), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54563] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + STATE(1818), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3740), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54577] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1731), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3742), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54591] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + STATE(1692), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3740), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54605] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + STATE(1740), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3744), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54619] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3746), 1, + anon_sym_COMMA, + STATE(1781), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3303), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [54633] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3749), 1, + sym_integer, + STATE(2105), 1, + sym_string, + ACTIONS(109), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + [54647] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3697), 1, + anon_sym_PIPE, + STATE(1821), 1, + aux_sym_type_list_repeat1, + ACTIONS(3751), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [54661] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3662), 1, + anon_sym_COMMA, + STATE(1745), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3753), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54675] = 5, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(886), 1, + sym_compound_statement, + STATE(2114), 1, + sym__return_type, + [54691] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1697), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3755), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54705] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3683), 1, + anon_sym_COMMA, + STATE(1822), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3757), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54719] = 5, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(893), 1, + sym_compound_statement, + STATE(2283), 1, + sym__return_type, + [54735] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1623), 1, + sym_declaration_list, + STATE(2289), 1, + sym_class_interface_clause, + [54751] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3326), 1, + anon_sym_LBRACE, + STATE(1872), 1, + sym_enum_declaration_list, + STATE(2291), 1, + sym_class_interface_clause, + [54767] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1681), 1, + sym_declaration_list, + STATE(2118), 1, + sym_class_interface_clause, + [54783] = 5, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(905), 1, + sym_compound_statement, + STATE(2293), 1, + sym__return_type, + [54799] = 5, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(907), 1, + sym_compound_statement, + STATE(2295), 1, + sym__return_type, + [54815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3761), 1, + sym_heredoc_end, + STATE(2332), 1, + sym__new_line, + ACTIONS(3759), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [54829] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3765), 1, + sym_heredoc_end, + STATE(2331), 1, + sym__new_line, + ACTIONS(3763), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [54843] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(915), 1, + sym_declaration_list, + STATE(2309), 1, + sym_class_interface_clause, + [54859] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3769), 1, + anon_sym_EQ, + ACTIONS(3767), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [54871] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3334), 1, + anon_sym_AMP, + STATE(2158), 2, + sym_variable_name, + sym_variable_reference, + [54885] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(1106), 1, + sym_compound_statement, + STATE(2180), 1, + sym__return_type, + [54901] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(900), 1, + sym_declaration_list, + STATE(2144), 1, + sym_class_interface_clause, + [54917] = 5, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(930), 1, + sym_compound_statement, + STATE(2310), 1, + sym__return_type, + [54933] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1645), 1, + sym_declaration_list, + STATE(2302), 1, + sym_class_interface_clause, + [54949] = 5, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(935), 1, + sym_compound_statement, + STATE(2299), 1, + sym__return_type, + [54965] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_COMMA, + STATE(1747), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3771), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54979] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1697), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3773), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54993] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + STATE(1649), 1, + sym_declaration_list, + STATE(2245), 1, + sym_class_interface_clause, + [55009] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_AMP, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1527), 1, + sym_formal_parameters, + STATE(2204), 1, + sym_reference_modifier, + [55025] = 3, + ACTIONS(1446), 1, + sym_comment, + STATE(2324), 1, + sym_declare_directive, + ACTIONS(3712), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [55037] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1635), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [55047] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(916), 1, + sym_declaration_list, + STATE(2234), 1, + sym_class_interface_clause, + [55063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3777), 1, + sym_heredoc_end, + STATE(2320), 1, + sym__new_line, + ACTIONS(3775), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [55077] = 5, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3170), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(946), 1, + sym_declaration_list, + STATE(2228), 1, + sym_class_interface_clause, + [55093] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3683), 1, + anon_sym_COMMA, + STATE(1822), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3779), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55107] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3781), 1, + sym_integer, + STATE(2255), 1, + sym_string, + ACTIONS(109), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + [55121] = 5, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(932), 1, + sym_compound_statement, + STATE(2206), 1, + sym__return_type, + [55137] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + STATE(1805), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3755), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55151] = 5, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(927), 1, + sym_compound_statement, + STATE(2194), 1, + sym__return_type, + [55167] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + STATE(1692), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3783), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55181] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3683), 1, + anon_sym_COMMA, + STATE(1787), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3785), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55195] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3683), 1, + anon_sym_COMMA, + STATE(1822), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3787), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55209] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3791), 1, + anon_sym_PIPE, + STATE(1821), 1, + aux_sym_type_list_repeat1, + ACTIONS(3789), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [55223] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_COMMA, + STATE(1822), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3794), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55237] = 3, + ACTIONS(1446), 1, + sym_comment, + STATE(2450), 1, + sym_declare_directive, + ACTIONS(3712), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [55249] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3275), 1, + anon_sym_COMMA, + ACTIONS(3799), 1, + anon_sym_LBRACE, + STATE(1781), 1, + aux_sym_base_clause_repeat1, + [55262] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3801), 1, + anon_sym_COMMA, + ACTIONS(3803), 1, + anon_sym_RPAREN, + STATE(1976), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [55275] = 3, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + STATE(1784), 2, + sym_dynamic_variable_name, + sym_variable_name, + [55286] = 3, + ACTIONS(1368), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1366), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55297] = 3, + ACTIONS(1372), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1370), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55308] = 3, + ACTIONS(1380), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1378), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55319] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3805), 1, + anon_sym_SQUOTE, + ACTIONS(3807), 1, + anon_sym_DQUOTE, + ACTIONS(3809), 1, + sym_heredoc_start, + [55332] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3789), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + [55341] = 3, + ACTIONS(1356), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1354), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55352] = 3, + ACTIONS(1360), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1358), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55363] = 3, + ACTIONS(1092), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1090), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55374] = 3, + ACTIONS(1280), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1278), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55385] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_RPAREN, + ACTIONS(3811), 1, + anon_sym_COMMA, + STATE(2039), 1, + aux_sym_formal_parameters_repeat1, + [55398] = 3, + ACTIONS(1280), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1278), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55409] = 3, + ACTIONS(1208), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1206), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55420] = 3, + ACTIONS(1100), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1098), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55431] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3794), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [55440] = 4, + ACTIONS(803), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3813), 1, + anon_sym_COMMA, + STATE(1847), 1, + aux_sym_array_creation_expression_repeat1, + [55453] = 3, + ACTIONS(1104), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1102), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55464] = 3, + ACTIONS(1108), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1106), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55475] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3324), 1, + anon_sym_BSLASH, + ACTIONS(3815), 1, + sym_name, + STATE(2459), 1, + sym_namespace_name, + [55488] = 3, + ACTIONS(1112), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1110), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55499] = 3, + ACTIONS(1128), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1126), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55510] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3820), 1, + anon_sym_RPAREN, + STATE(1847), 1, + aux_sym_array_creation_expression_repeat1, + [55523] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3822), 1, + anon_sym_COMMA, + ACTIONS(3824), 1, + anon_sym_RBRACE, + STATE(1891), 1, + aux_sym_match_block_repeat1, + [55536] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3826), 1, + anon_sym_COMMA, + ACTIONS(3828), 1, + anon_sym_RPAREN, + STATE(1841), 1, + aux_sym_array_creation_expression_repeat1, + [55549] = 3, + ACTIONS(1128), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1126), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55560] = 3, + ACTIONS(1132), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1130), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55571] = 3, + ACTIONS(1136), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1134), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55582] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3830), 1, + anon_sym_EQ_GT, + STATE(2352), 1, + sym__return_type, + [55595] = 3, + ACTIONS(1136), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1134), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55606] = 3, + ACTIONS(1148), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1146), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55617] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3832), 1, + anon_sym_COMMA, + ACTIONS(3835), 1, + anon_sym_RPAREN, + STATE(1856), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [55630] = 3, + ACTIONS(1148), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1146), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55641] = 3, + ACTIONS(1160), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1158), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55652] = 3, + ACTIONS(1188), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1186), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55663] = 3, + ACTIONS(1088), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1086), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55674] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3837), 1, + anon_sym_LBRACE, + ACTIONS(3839), 1, + anon_sym_COLON, + STATE(496), 1, + sym_switch_block, + [55687] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_RBRACK, + ACTIONS(3841), 1, + anon_sym_COMMA, + STATE(1998), 1, + aux_sym_attribute_group_repeat1, + [55700] = 3, + ACTIONS(1216), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1214), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55711] = 4, + ACTIONS(791), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3843), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_arguments_repeat1, + [55724] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3845), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [55733] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3652), 1, + anon_sym_EQ, + ACTIONS(3847), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55744] = 4, + ACTIONS(755), 1, + anon_sym_RBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3849), 1, + anon_sym_COMMA, + STATE(2014), 1, + aux_sym_array_creation_expression_repeat1, + [55757] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3851), 1, + anon_sym_COMMA, + ACTIONS(3853), 1, + anon_sym_RBRACK, + STATE(1910), 1, + aux_sym__array_destructing_repeat1, + [55770] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3855), 1, + anon_sym_COMMA, + ACTIONS(3858), 1, + anon_sym_RBRACE, + STATE(1869), 1, + aux_sym_namespace_use_group_repeat1, + [55783] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3860), 1, + anon_sym_COMMA, + ACTIONS(3862), 1, + anon_sym_RBRACK, + STATE(1911), 1, + aux_sym_array_creation_expression_repeat1, + [55796] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3851), 1, + anon_sym_COMMA, + ACTIONS(3853), 1, + anon_sym_RBRACK, + STATE(1912), 1, + aux_sym__array_destructing_repeat1, + [55809] = 3, + ACTIONS(1228), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1226), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55820] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3864), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [55829] = 3, + ACTIONS(1260), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1258), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55840] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3866), 1, + anon_sym_COMMA, + ACTIONS(3868), 1, + anon_sym_RBRACK, + STATE(1913), 1, + aux_sym_attribute_group_repeat1, + [55853] = 3, + ACTIONS(1328), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1326), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55864] = 3, + ACTIONS(1360), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1358), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55875] = 3, + ACTIONS(1404), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1402), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55886] = 3, + ACTIONS(1408), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1406), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55897] = 3, + ACTIONS(1416), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1414), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55908] = 3, + ACTIONS(1364), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1362), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55919] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1604), 1, + anon_sym_DOLLAR, + STATE(1797), 1, + sym_variable_name, + STATE(1926), 1, + sym_static_variable_declaration, + [55932] = 3, + ACTIONS(1364), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1362), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55943] = 3, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + STATE(1928), 2, + sym_dynamic_variable_name, + sym_variable_name, + [55954] = 3, + ACTIONS(1304), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1302), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55965] = 3, + ACTIONS(1284), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1282), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55976] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3870), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [55985] = 3, + ACTIONS(1256), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1254), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [55996] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3872), 1, + sym_name, + ACTIONS(3874), 1, + anon_sym_LBRACE, + STATE(2276), 1, + sym_namespace_use_group, + [56009] = 3, + ACTIONS(1296), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1294), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56020] = 4, + ACTIONS(827), 1, + anon_sym_RBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3876), 1, + anon_sym_COMMA, + STATE(1948), 1, + aux_sym_match_block_repeat1, + [56033] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3878), 1, + anon_sym_DOT_DOT_DOT, + STATE(1937), 1, + sym_variable_name, + [56046] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3880), 1, + anon_sym_COMMA, + ACTIONS(3882), 1, + anon_sym_RPAREN, + STATE(1944), 1, + aux_sym_formal_parameters_repeat1, + [56059] = 3, + ACTIONS(1268), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1266), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56070] = 3, + ACTIONS(1376), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1374), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56081] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3886), 1, + anon_sym_EQ, + ACTIONS(3884), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56092] = 3, + ACTIONS(1288), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1286), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56103] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3313), 1, + anon_sym_LBRACE, + STATE(2358), 1, + sym__return_type, + [56116] = 3, + ACTIONS(1412), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1410), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56127] = 3, + ACTIONS(1400), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1398), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56138] = 3, + ACTIONS(1340), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1338), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56149] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_EQ_GT, + STATE(2365), 1, + sym__return_type, + [56162] = 3, + ACTIONS(1292), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1290), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56173] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3890), 1, + anon_sym_COMMA, + ACTIONS(3892), 1, + anon_sym_RPAREN, + STATE(1967), 1, + aux_sym_array_creation_expression_repeat1, + [56186] = 3, + ACTIONS(1272), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1270), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56197] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3894), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [56206] = 3, + ACTIONS(1264), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1262), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56217] = 4, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_RPAREN, + STATE(1979), 1, + aux_sym__list_destructing_repeat1, + [56230] = 4, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_RPAREN, + STATE(1988), 1, + aux_sym__list_destructing_repeat1, + [56243] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3851), 1, + anon_sym_COMMA, + ACTIONS(3896), 1, + anon_sym_RBRACK, + STATE(1912), 1, + aux_sym__array_destructing_repeat1, + [56256] = 4, + ACTIONS(793), 1, + anon_sym_RBRACK, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3898), 1, + anon_sym_COMMA, + STATE(2014), 1, + aux_sym_array_creation_expression_repeat1, + [56269] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_RBRACK, + STATE(1912), 1, + aux_sym__array_destructing_repeat1, + [56282] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2976), 1, + anon_sym_RBRACK, + ACTIONS(3905), 1, + anon_sym_COMMA, + STATE(1998), 1, + aux_sym_attribute_group_repeat1, + [56295] = 3, + ACTIONS(1248), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1246), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56306] = 3, + ACTIONS(1196), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1194), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56317] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + anon_sym_RPAREN, + STATE(2003), 1, + aux_sym_arguments_repeat1, + [56330] = 3, + ACTIONS(1176), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1174), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56341] = 3, + ACTIONS(1176), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1174), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56352] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3911), 1, + anon_sym_EQ_GT, + STATE(2429), 1, + sym__return_type, + [56365] = 3, + ACTIONS(1172), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1170), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56376] = 3, + ACTIONS(1144), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1142), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56387] = 3, + ACTIONS(1140), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1138), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56398] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3913), 1, + anon_sym_EQ_GT, + STATE(2453), 1, + sym__return_type, + [56411] = 3, + ACTIONS(1124), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1122), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56422] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3915), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [56431] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3703), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56440] = 3, + ACTIONS(1232), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1230), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56451] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3604), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56460] = 3, + ACTIONS(1348), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1346), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56471] = 3, + ACTIONS(1168), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1166), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56482] = 3, + ACTIONS(1404), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1402), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56493] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3872), 1, + sym_name, + ACTIONS(3874), 1, + anon_sym_LBRACE, + STATE(2122), 1, + sym_namespace_use_group, + [56506] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(3917), 1, + sym_name, + STATE(2122), 1, + sym_namespace_use_group, + [56519] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3919), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56528] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3615), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56537] = 3, + ACTIONS(1344), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1342), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56548] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3923), 1, + anon_sym_EQ, + ACTIONS(3921), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56559] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3927), 1, + anon_sym_EQ, + ACTIONS(3925), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3375), 1, + sym_heredoc_end, + ACTIONS(3373), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [56581] = 4, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3929), 1, + anon_sym_RPAREN, + STATE(1988), 1, + aux_sym__list_destructing_repeat1, + [56594] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3931), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [56603] = 4, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3933), 1, + anon_sym_RPAREN, + STATE(1988), 1, + aux_sym__list_destructing_repeat1, + [56616] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3935), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [56625] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1731), 1, + anon_sym_RPAREN, + ACTIONS(3937), 1, + anon_sym_COMMA, + STATE(2039), 1, + aux_sym_formal_parameters_repeat1, + [56638] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3939), 1, + anon_sym_DOT_DOT_DOT, + STATE(2041), 1, + sym_variable_name, + [56651] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3943), 1, + anon_sym_EQ, + ACTIONS(3941), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56662] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2439), 1, + anon_sym_EQ_GT, + ACTIONS(3945), 1, + anon_sym_COMMA, + STATE(1947), 1, + aux_sym_match_condition_list_repeat1, + [56675] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3948), 1, + anon_sym_COMMA, + ACTIONS(3951), 1, + anon_sym_RBRACE, + STATE(1948), 1, + aux_sym_match_block_repeat1, + [56688] = 3, + ACTIONS(1316), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1314), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56699] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(3953), 1, + anon_sym_DOT_DOT_DOT, + STATE(2049), 1, + sym_variable_name, + [56712] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3957), 1, + aux_sym_else_clause_token1, + ACTIONS(3955), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [56723] = 3, + ACTIONS(1332), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1330), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56734] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3961), 1, + anon_sym_EQ, + ACTIONS(3959), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56745] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3579), 1, + anon_sym_LBRACE, + STATE(2504), 1, + sym__return_type, + [56758] = 3, + ACTIONS(1388), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1386), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56769] = 3, + ACTIONS(1420), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1418), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56780] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(3963), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56791] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3625), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56800] = 3, + ACTIONS(1392), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1390), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56811] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3303), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [56820] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3967), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, + anon_sym_RPAREN, + STATE(1836), 1, + aux_sym_formal_parameters_repeat1, + [56833] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3971), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [56842] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3973), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [56851] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3975), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [56860] = 3, + ACTIONS(1236), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1234), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56871] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3275), 1, + anon_sym_COMMA, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(1824), 1, + aux_sym_base_clause_repeat1, + [56884] = 4, + ACTIONS(783), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3977), 1, + anon_sym_COMMA, + STATE(1847), 1, + aux_sym_array_creation_expression_repeat1, + [56897] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3008), 1, + anon_sym_COMMA, + ACTIONS(3979), 1, + anon_sym_RPAREN, + STATE(2062), 1, + aux_sym_unset_statement_repeat1, + [56910] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3983), 1, + aux_sym_else_clause_token1, + ACTIONS(3981), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [56921] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_COMMA, + ACTIONS(3987), 1, + anon_sym_RBRACE, + STATE(2045), 1, + aux_sym_match_block_repeat1, + [56934] = 3, + ACTIONS(1220), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1218), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56945] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1604), 1, + anon_sym_DOLLAR, + STATE(1634), 1, + sym_variable_name, + STATE(1840), 1, + sym_property_element, + [56958] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1604), 1, + anon_sym_DOLLAR, + STATE(1634), 1, + sym_variable_name, + STATE(1819), 1, + sym_property_element, + [56971] = 3, + ACTIONS(1204), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1202), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56982] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3989), 1, + sym_name, + ACTIONS(3991), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56993] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3400), 1, + anon_sym_RPAREN, + ACTIONS(3993), 1, + anon_sym_COMMA, + STATE(1856), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [57006] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3652), 1, + anon_sym_EQ, + ACTIONS(3995), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57017] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3997), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [57026] = 4, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3999), 1, + anon_sym_RPAREN, + STATE(1988), 1, + aux_sym__list_destructing_repeat1, + [57039] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4001), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [57048] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4005), 1, + anon_sym_EQ, + ACTIONS(4003), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57059] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(4007), 1, + anon_sym_RPAREN, + STATE(2383), 1, + sym_variable_name, + [57072] = 4, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4009), 1, + anon_sym_RPAREN, + STATE(1988), 1, + aux_sym__list_destructing_repeat1, + [57085] = 3, + ACTIONS(1184), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1182), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57096] = 3, + ACTIONS(1252), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1250), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57107] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4011), 1, + anon_sym_COMMA, + ACTIONS(4013), 1, + anon_sym_RPAREN, + STATE(1995), 1, + aux_sym_arguments_repeat1, + [57120] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(3917), 1, + sym_name, + STATE(2315), 1, + sym_namespace_use_group, + [57133] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1576), 1, + anon_sym_RPAREN, + ACTIONS(4015), 1, + anon_sym_COMMA, + STATE(1988), 1, + aux_sym__list_destructing_repeat1, + [57146] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3652), 1, + anon_sym_EQ, + ACTIONS(4018), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57157] = 3, + ACTIONS(1180), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1178), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57168] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4022), 1, + anon_sym_EQ, + ACTIONS(4020), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57179] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4024), 1, + anon_sym_COMMA, + ACTIONS(4026), 1, + anon_sym_RBRACE, + STATE(1869), 1, + aux_sym_namespace_use_group_repeat1, + [57192] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3820), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [57201] = 3, + ACTIONS(1164), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1162), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57212] = 4, + ACTIONS(801), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4028), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_arguments_repeat1, + [57225] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3008), 1, + anon_sym_COMMA, + ACTIONS(4030), 1, + anon_sym_RPAREN, + STATE(2062), 1, + aux_sym_unset_statement_repeat1, + [57238] = 3, + ACTIONS(1152), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1150), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57249] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4032), 1, + anon_sym_COMMA, + ACTIONS(4035), 1, + anon_sym_RBRACK, + STATE(1998), 1, + aux_sym_attribute_group_repeat1, + [57262] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(3917), 1, + sym_name, + STATE(2202), 1, + sym_namespace_use_group, + [57275] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4037), 1, + anon_sym_, + ACTIONS(4039), 1, + sym_nowdoc_string, + STATE(1604), 1, + aux_sym_nowdoc_body_repeat1, + [57288] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3872), 1, + sym_name, + ACTIONS(3874), 1, + anon_sym_LBRACE, + STATE(2202), 1, + sym_namespace_use_group, + [57301] = 3, + ACTIONS(1156), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1154), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57312] = 4, + ACTIONS(765), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4041), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_arguments_repeat1, + [57325] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(4043), 1, + anon_sym_EQ_GT, + STATE(2390), 1, + sym__return_type, + [57338] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4045), 1, + anon_sym_COMMA, + ACTIONS(4047), 1, + anon_sym_RPAREN, + STATE(1864), 1, + aux_sym_arguments_repeat1, + [57351] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4049), 1, + anon_sym_COMMA, + ACTIONS(4051), 1, + anon_sym_RBRACK, + STATE(1862), 1, + aux_sym_attribute_group_repeat1, + [57364] = 3, + ACTIONS(1224), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1222), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57375] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(4053), 1, + anon_sym_EQ_GT, + STATE(2451), 1, + sym__return_type, + [57388] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_COMMA, + ACTIONS(4057), 1, + anon_sym_RBRACK, + STATE(1867), 1, + aux_sym_array_creation_expression_repeat1, + [57401] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3872), 1, + sym_name, + ACTIONS(3874), 1, + anon_sym_LBRACE, + STATE(2102), 1, + sym_namespace_use_group, + [57414] = 3, + ACTIONS(1096), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1094), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57425] = 3, + ACTIONS(1240), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1238), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57436] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2649), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + sym_name, + [57445] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3820), 1, + anon_sym_RBRACK, + ACTIONS(4059), 1, + anon_sym_COMMA, + STATE(2014), 1, + aux_sym_array_creation_expression_repeat1, + [57458] = 3, + ACTIONS(1312), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1310), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57469] = 3, + ACTIONS(1200), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1198), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57480] = 3, + ACTIONS(1424), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1422), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57491] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(4062), 1, + anon_sym_EQ_GT, + STATE(2425), 1, + sym__return_type, + [57504] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4064), 1, + anon_sym_SQUOTE, + ACTIONS(4066), 1, + anon_sym_DQUOTE, + ACTIONS(4068), 1, + sym_heredoc_start, + [57517] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(4070), 1, + anon_sym_EQ_GT, + STATE(2421), 1, + sym__return_type, + [57530] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4072), 1, + anon_sym_COMMA, + ACTIONS(4075), 1, + anon_sym_RPAREN, + STATE(2021), 1, + aux_sym_arguments_repeat1, + [57543] = 3, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1446), 1, + sym_comment, + STATE(1726), 2, + sym_dynamic_variable_name, + sym_variable_name, + [57554] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(3917), 1, + sym_name, + STATE(2250), 1, + sym_namespace_use_group, + [57567] = 3, + ACTIONS(1192), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1190), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57578] = 3, + ACTIONS(1396), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1394), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57589] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3512), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [57598] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4077), 1, + anon_sym_COMMA, + ACTIONS(4079), 1, + anon_sym_RPAREN, + STATE(2033), 1, + aux_sym_arguments_repeat1, + [57611] = 3, + ACTIONS(1324), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1322), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57622] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4024), 1, + anon_sym_COMMA, + ACTIONS(4081), 1, + anon_sym_RBRACE, + STATE(1992), 1, + aux_sym_namespace_use_group_repeat1, + [57635] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4083), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57646] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4089), 1, + anon_sym_EQ, + ACTIONS(4087), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57657] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4091), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [57666] = 4, + ACTIONS(775), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4093), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_arguments_repeat1, + [57679] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4095), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [57688] = 4, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3016), 1, + anon_sym_RPAREN, + STATE(1942), 1, + aux_sym__list_destructing_repeat1, + [57701] = 4, + ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4097), 1, + anon_sym_RPAREN, + STATE(1940), 1, + aux_sym__list_destructing_repeat1, + [57714] = 4, + ACTIONS(787), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4099), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_arguments_repeat1, + [57727] = 3, + ACTIONS(1276), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1274), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57738] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4101), 1, + anon_sym_COMMA, + ACTIONS(4104), 1, + anon_sym_RPAREN, + STATE(2039), 1, + aux_sym_formal_parameters_repeat1, + [57751] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4106), 1, + anon_sym_COMMA, + ACTIONS(4108), 1, + anon_sym_RPAREN, + STATE(2037), 1, + aux_sym_arguments_repeat1, + [57764] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4110), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57775] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4114), 1, + anon_sym_LBRACE, + ACTIONS(4116), 1, + anon_sym_COLON, + STATE(1985), 1, + sym_switch_block, + [57788] = 3, + ACTIONS(1352), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1350), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57799] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2379), 1, + anon_sym_COMMA, + ACTIONS(4118), 1, + anon_sym_EQ_GT, + STATE(1947), 1, + aux_sym_match_condition_list_repeat1, + [57812] = 4, + ACTIONS(835), 1, + anon_sym_RBRACE, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_COMMA, + STATE(1948), 1, + aux_sym_match_block_repeat1, + [57825] = 3, + ACTIONS(1336), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1334), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57836] = 3, + ACTIONS(1320), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1318), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57847] = 4, + ACTIONS(797), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4122), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_arguments_repeat1, + [57860] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4124), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57871] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4128), 1, + anon_sym_COMMA, + ACTIONS(4130), 1, + anon_sym_RPAREN, + STATE(2048), 1, + aux_sym_arguments_repeat1, + [57884] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(4132), 1, + anon_sym_DOT_DOT_DOT, + STATE(1981), 1, + sym_variable_name, + [57897] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4134), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57908] = 3, + ACTIONS(1300), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1298), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57919] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4138), 1, + anon_sym_COMMA, + ACTIONS(4140), 1, + anon_sym_RPAREN, + STATE(2059), 1, + aux_sym_arguments_repeat1, + [57932] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4142), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57943] = 3, + ACTIONS(1116), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1114), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57954] = 3, + ACTIONS(1120), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1118), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57965] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + ACTIONS(4146), 1, + anon_sym_RPAREN, + STATE(2356), 1, + sym_variable_name, + [57978] = 4, + ACTIONS(771), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4148), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_arguments_repeat1, + [57991] = 3, + ACTIONS(1244), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1242), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58002] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1604), 1, + anon_sym_DOLLAR, + STATE(1634), 1, + sym_variable_name, + STATE(1773), 1, + sym_property_element, + [58015] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3152), 1, + anon_sym_RPAREN, + ACTIONS(4150), 1, + anon_sym_COMMA, + STATE(2062), 1, + aux_sym_unset_statement_repeat1, + [58028] = 4, + ACTIONS(767), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4153), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_arguments_repeat1, + [58041] = 4, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4155), 1, + anon_sym_COMMA, + ACTIONS(4157), 1, + anon_sym_RPAREN, + STATE(2063), 1, + aux_sym_arguments_repeat1, + [58054] = 3, + ACTIONS(1384), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1382), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58065] = 3, + ACTIONS(1212), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1210), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58076] = 3, + ACTIONS(1308), 1, + aux_sym_else_clause_token1, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1306), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58087] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(435), 1, + sym_declaration_list, + [58097] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1649), 1, + sym_declaration_list, + [58107] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4159), 1, + sym_name, + STATE(2459), 1, + sym_namespace_name, + [58117] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(457), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58125] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4159), 1, + sym_name, + STATE(2454), 1, + sym_namespace_name, + [58135] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(1620), 1, + sym_compound_statement, + [58145] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + STATE(646), 1, + sym_arguments, + [58155] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4162), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58163] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4164), 1, + anon_sym_LBRACE, + STATE(421), 1, + sym_compound_statement, + [58173] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1526), 1, + sym_formal_parameters, + [58183] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4159), 1, + sym_name, + STATE(2449), 1, + sym_namespace_name, + [58193] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN, + STATE(30), 1, + sym_parenthesized_expression, + [58203] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4168), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58211] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4170), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58219] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(2209), 1, + sym_variable_name, + [58229] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_LPAREN, + STATE(725), 1, + sym_arguments, + [58239] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1101), 1, + sym_compound_statement, + [58249] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN, + STATE(27), 1, + sym_parenthesized_expression, + [58259] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LPAREN, + STATE(2169), 1, + sym_parenthesized_expression, + [58269] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LPAREN, + STATE(1861), 1, + sym_parenthesized_expression, + [58279] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_BSLASH, + STATE(2186), 1, + aux_sym_namespace_name_repeat1, + [58289] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2387), 1, + anon_sym_RPAREN, + ACTIONS(4174), 1, + anon_sym_EQ, + [58299] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(2203), 1, + sym_variable_name, + [58309] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4176), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58317] = 3, + ACTIONS(467), 1, + anon_sym_COLON, + ACTIONS(1446), 1, + sym_comment, + STATE(1951), 1, + sym_colon_block, + [58327] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(925), 1, + sym_compound_statement, + [58337] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4178), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58345] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(2200), 1, + sym_variable_name, + [58355] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4180), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58363] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4182), 1, + anon_sym_SEMI, + ACTIONS(4184), 1, + sym__automatic_semicolon, + [58373] = 3, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(458), 1, + sym_compound_statement, + [58383] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(2017), 1, + sym_declaration_list, + [58393] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3652), 2, + anon_sym_EQ, + anon_sym_RPAREN, + [58401] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4186), 1, + anon_sym_LBRACE, + STATE(911), 1, + sym_match_block, + [58411] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3783), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58419] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(2197), 1, + sym_variable_name, + [58429] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4188), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58437] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4190), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58445] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4192), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58453] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1045), 1, + sym_declaration_list, + [58463] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1051), 1, + sym_declaration_list, + [58473] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4104), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58481] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4194), 1, + anon_sym_LPAREN, + STATE(1590), 1, + sym_formal_parameters, + [58491] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_LPAREN, + STATE(870), 1, + sym_arguments, + [58501] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4018), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [58509] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(929), 1, + sym_compound_statement, + [58519] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(883), 1, + sym_compound_statement, + [58529] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(1991), 1, + sym_variable_name, + [58539] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4196), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58547] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3154), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [58555] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1660), 1, + sym_declaration_list, + [58565] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4198), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58573] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4200), 1, + sym_name, + STATE(2382), 1, + sym_namespace_name, + [58583] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4203), 1, + sym_name, + STATE(1761), 1, + sym_namespace_name, + [58593] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4205), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58601] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3402), 1, + anon_sym_LBRACE, + STATE(497), 1, + sym_enum_declaration_list, + [58611] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4207), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58619] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4209), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58627] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2437), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58635] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1057), 1, + sym_compound_statement, + [58645] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN, + STATE(79), 1, + sym_parenthesized_expression, + [58655] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4159), 1, + sym_name, + STATE(2377), 1, + sym_namespace_name, + [58665] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4211), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58673] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2425), 1, + anon_sym_RPAREN, + ACTIONS(4174), 1, + anon_sym_EQ, + [58683] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1898), 1, + sym_formal_parameters, + [58693] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1055), 1, + sym_compound_statement, + [58703] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3305), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58711] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4075), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58719] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(1635), 1, + sym_compound_statement, + [58729] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4213), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58737] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN, + STATE(59), 1, + sym_parenthesized_expression, + [58747] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LPAREN, + STATE(2101), 1, + sym_parenthesized_expression, + [58757] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LPAREN, + STATE(2042), 1, + sym_parenthesized_expression, + [58767] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(2004), 1, + sym_formal_parameters, + [58777] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3734), 1, + anon_sym_LBRACE, + STATE(546), 1, + sym_declaration_list, + [58787] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(432), 1, + sym_declaration_list, + [58797] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(946), 1, + sym_declaration_list, + [58807] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(2056), 1, + sym_compound_statement, + [58817] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1902), 1, + sym_formal_parameters, + [58827] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2577), 1, + anon_sym_RPAREN, + ACTIONS(4174), 1, + anon_sym_EQ, + [58837] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(916), 1, + sym_declaration_list, + [58847] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(442), 1, + sym_declaration_list, + [58857] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1562), 1, + anon_sym_LPAREN, + STATE(605), 1, + sym_arguments, + [58867] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3402), 1, + anon_sym_LBRACE, + STATE(531), 1, + sym_enum_declaration_list, + [58877] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2663), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4215), 1, + aux_sym_namespace_use_declaration_token2, + [58887] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4217), 2, + anon_sym_string, + anon_sym_int, + [58895] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1018), 1, + sym_compound_statement, + [58905] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1049), 1, + sym_compound_statement, + [58915] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4219), 1, + anon_sym_LPAREN, + ACTIONS(4221), 1, + anon_sym_RPAREN, + [58925] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4164), 1, + anon_sym_LBRACE, + STATE(426), 1, + sym_compound_statement, + [58935] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3835), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58943] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN, + STATE(43), 1, + sym_parenthesized_expression, + [58953] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4223), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58961] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4225), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58969] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1576), 1, + sym_formal_parameters, + [58979] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1015), 1, + sym_compound_statement, + [58989] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1024), 1, + sym_compound_statement, + [58999] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4227), 2, + anon_sym_string, + anon_sym_int, + [59007] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4229), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59015] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(434), 1, + sym_declaration_list, + [59025] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(433), 1, + sym_declaration_list, + [59035] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4231), 1, + anon_sym_LBRACE, + STATE(1022), 1, + sym_match_block, + [59045] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4233), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [59053] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4235), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59061] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4237), 1, + anon_sym_LPAREN, + STATE(2125), 1, + sym_parenthesized_expression, + [59071] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2421), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59079] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4239), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59087] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4241), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [59095] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym_parenthesized_expression, + [59105] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3858), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59113] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(936), 1, + sym_compound_statement, + [59123] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3326), 1, + anon_sym_LBRACE, + STATE(1895), 1, + sym_enum_declaration_list, + [59133] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_compound_statement, + [59143] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym_parenthesized_expression, + [59153] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1645), 1, + sym_declaration_list, + [59163] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1033), 1, + sym_compound_statement, + [59173] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_LPAREN, + STATE(773), 1, + sym_arguments, + [59183] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(931), 1, + sym_compound_statement, + [59193] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4244), 1, + anon_sym_BSLASH, + STATE(1657), 1, + aux_sym_namespace_name_repeat1, + [59203] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3714), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59211] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1532), 1, + sym_formal_parameters, + [59221] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4247), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59229] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4035), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [59237] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4249), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59245] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4251), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59253] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4253), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [59261] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(928), 1, + sym_compound_statement, + [59271] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4255), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [59279] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2663), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4258), 1, + aux_sym_namespace_use_declaration_token2, + [59289] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4260), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59297] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1550), 1, + sym_formal_parameters, + [59307] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4262), 2, + anon_sym_string, + anon_sym_int, + [59315] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4264), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59323] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4266), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59331] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4268), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59339] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4270), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59347] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1559), 1, + sym_formal_parameters, + [59357] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(2171), 1, + sym_variable_name, + [59367] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(926), 1, + sym_compound_statement, + [59377] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4272), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59385] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3326), 1, + anon_sym_LBRACE, + STATE(1888), 1, + sym_enum_declaration_list, + [59395] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4274), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59403] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2459), 1, + anon_sym_RPAREN, + ACTIONS(4174), 1, + anon_sym_EQ, + [59413] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(439), 1, + sym_declaration_list, + [59423] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1576), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59431] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4276), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59439] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4278), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59447] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1017), 1, + sym_declaration_list, + [59457] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4280), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [59465] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4159), 1, + sym_name, + STATE(2354), 1, + sym_namespace_name, + [59475] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3991), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59483] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1050), 1, + sym_declaration_list, + [59493] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3283), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59501] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4282), 2, + anon_sym_SEMI, + anon_sym_COLON, + [59509] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(900), 1, + sym_declaration_list, + [59519] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4284), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59527] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4286), 1, + anon_sym_SEMI, + ACTIONS(4288), 1, + sym__automatic_semicolon, + [59537] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1108), 1, + sym_compound_statement, + [59547] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4290), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59555] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(2274), 1, + sym_variable_name, + [59565] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(884), 1, + sym_declaration_list, + [59575] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3402), 1, + anon_sym_LBRACE, + STATE(455), 1, + sym_enum_declaration_list, + [59585] = 3, + ACTIONS(357), 1, + anon_sym_COLON, + ACTIONS(1446), 1, + sym_comment, + STATE(2321), 1, + sym_colon_block, + [59595] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LPAREN, + STATE(2092), 1, + sym_parenthesized_expression, + [59605] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4292), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59613] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym_parenthesized_expression, + [59623] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(915), 1, + sym_declaration_list, + [59633] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4294), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59641] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4296), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59649] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(1984), 1, + sym_compound_statement, + [59659] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4298), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59667] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2317), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59675] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(491), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59683] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1554), 1, + sym_formal_parameters, + [59693] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(1677), 1, + sym_compound_statement, + [59703] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1107), 1, + sym_compound_statement, + [59713] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(444), 1, + sym_declaration_list, + [59723] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1627), 1, + sym_declaration_list, + [59733] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1954), 1, + sym_formal_parameters, + [59743] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3919), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59751] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1030), 1, + sym_compound_statement, + [59761] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LPAREN, + STATE(571), 1, + sym_arguments, + [59771] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4300), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59779] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN, + STATE(39), 1, + sym_parenthesized_expression, + [59789] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4194), 1, + anon_sym_LPAREN, + STATE(1668), 1, + sym_formal_parameters, + [59799] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1021), 1, + sym_compound_statement, + [59809] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3971), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [59817] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4302), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59825] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4304), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59833] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1077), 1, + sym_compound_statement, + [59843] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(885), 1, + sym_compound_statement, + [59853] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3734), 1, + anon_sym_LBRACE, + STATE(544), 1, + sym_declaration_list, + [59863] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4306), 2, + anon_sym_string, + anon_sym_int, + [59871] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3402), 1, + anon_sym_LBRACE, + STATE(518), 1, + sym_enum_declaration_list, + [59881] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(908), 1, + sym_compound_statement, + [59891] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(2096), 1, + sym_variable_name, + [59901] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4308), 1, + anon_sym_SEMI, + ACTIONS(4310), 1, + sym__automatic_semicolon, + [59911] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, + [59921] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3951), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59929] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1097), 1, + sym_declaration_list, + [59939] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(2104), 1, + sym_variable_name, + [59949] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4312), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59957] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3082), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59965] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(2031), 1, + sym_variable_name, + [59975] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4314), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59983] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(2116), 1, + sym_variable_name, + [59993] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4316), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60001] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1544), 1, + sym_formal_parameters, + [60011] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3611), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60019] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2317), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60027] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4318), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60035] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4320), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60043] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4322), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60051] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(1956), 1, + sym_declaration_list, + [60061] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(505), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60069] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(887), 1, + sym_compound_statement, + [60079] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4324), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [60087] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(906), 1, + sym_compound_statement, + [60097] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(499), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60105] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(1605), 1, + sym_compound_statement, + [60115] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4326), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60123] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1607), 1, + sym_declaration_list, + [60133] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1572), 1, + sym_formal_parameters, + [60143] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3326), 1, + anon_sym_LBRACE, + STATE(1843), 1, + sym_enum_declaration_list, + [60153] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1061), 1, + sym_compound_statement, + [60163] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(888), 1, + sym_compound_statement, + [60173] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4164), 1, + anon_sym_LBRACE, + STATE(425), 1, + sym_compound_statement, + [60183] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(890), 1, + sym_compound_statement, + [60193] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(2018), 1, + sym_formal_parameters, + [60203] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4237), 1, + anon_sym_LPAREN, + STATE(2235), 1, + sym_parenthesized_expression, + [60213] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym_parenthesized_expression, + [60223] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(904), 1, + sym_compound_statement, + [60233] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1083), 1, + sym_declaration_list, + [60243] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1681), 1, + sym_declaration_list, + [60253] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1624), 1, + sym_declaration_list, + [60263] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(894), 1, + sym_compound_statement, + [60273] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3326), 1, + anon_sym_LBRACE, + STATE(1952), 1, + sym_enum_declaration_list, + [60283] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_LBRACE, + STATE(1623), 1, + sym_declaration_list, + [60293] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3903), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [60301] = 3, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(479), 1, + sym_compound_statement, + [60311] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_formal_parameters, + [60321] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3172), 1, + anon_sym_LBRACE, + STATE(895), 1, + sym_declaration_list, + [60331] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(901), 1, + sym_compound_statement, + [60341] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2403), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60349] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4328), 1, + anon_sym_SEMI, + ACTIONS(4330), 1, + sym__automatic_semicolon, + [60359] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_RPAREN, + ACTIONS(4174), 1, + anon_sym_EQ, + [60369] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2431), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60377] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4332), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60385] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4334), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60393] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4336), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [60401] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1446), 1, + sym_comment, + STATE(1619), 1, + sym_compound_statement, + [60411] = 3, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3247), 1, + anon_sym_LBRACE, + STATE(1104), 1, + sym_compound_statement, + [60421] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4338), 1, + sym_heredoc_end, + [60428] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4340), 1, + aux_sym_if_statement_token2, + [60435] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4342), 1, + anon_sym_RPAREN, + [60442] = 2, + ACTIONS(869), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + [60449] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4344), 1, + anon_sym_RPAREN, + [60456] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_RPAREN, + [60463] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4346), 1, + anon_sym_DQUOTE2, + [60470] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3909), 1, + anon_sym_RPAREN, + [60477] = 2, + ACTIONS(875), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + [60484] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4348), 1, + sym_heredoc_end, + [60491] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4350), 1, + anon_sym_RPAREN, + [60498] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4352), 1, + sym_heredoc_end, + [60505] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4354), 1, + sym_heredoc_end, + [60512] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_EQ, + [60519] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4358), 1, + anon_sym_EQ, + [60526] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4360), 1, + anon_sym_RPAREN, + [60533] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_COLON_COLON, + [60540] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4364), 1, + anon_sym_EQ, + [60547] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_EQ_GT, + [60554] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3862), 1, + anon_sym_RBRACK, + [60561] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_RPAREN, + [60568] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4370), 1, + anon_sym_SEMI, + [60575] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4372), 1, + sym_name, + [60582] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4374), 1, + aux_sym_while_statement_token2, + [60589] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4376), 1, + sym_name, + [60596] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4378), 1, + anon_sym_LPAREN, + [60603] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4380), 1, + anon_sym_RPAREN, + [60610] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4382), 1, + anon_sym_EQ, + [60617] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + [60624] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4384), 1, + sym_name, + [60631] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4386), 1, + sym_name, + [60638] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2127), 1, + anon_sym_STAR_STAR, + [60645] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4388), 1, + anon_sym_EQ_GT, + [60652] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3828), 1, + anon_sym_RPAREN, + [60659] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4390), 1, + anon_sym_BSLASH, + [60666] = 2, + ACTIONS(841), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + [60673] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4392), 1, + anon_sym_RPAREN, + [60680] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4394), 1, + sym_heredoc_end, + [60687] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3975), 1, + anon_sym_LBRACE, + [60694] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3969), 1, + anon_sym_RPAREN, + [60701] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4396), 1, + sym_name, + [60708] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4398), 1, + sym_name, + [60715] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4400), 1, + anon_sym_LPAREN, + [60722] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4402), 1, + anon_sym_COLON_COLON, + [60729] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4404), 1, + sym_name, + [60736] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4406), 1, + anon_sym_EQ_GT, + [60743] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2251), 1, + anon_sym_STAR_STAR, + [60750] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4057), 1, + anon_sym_RBRACK, + [60757] = 2, + ACTIONS(855), 1, + anon_sym_SEMI, + ACTIONS(1446), 1, + sym_comment, + [60764] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4408), 1, + aux_sym_if_statement_token2, + [60771] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_RBRACE, + [60778] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4410), 1, + anon_sym_EQ_GT, + [60785] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3882), 1, + anon_sym_RPAREN, + [60792] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4412), 1, + anon_sym_EQ_GT, + [60799] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4414), 1, + aux_sym_foreach_statement_token2, + [60806] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4416), 1, + anon_sym_RPAREN, + [60813] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4418), 1, + sym_name, + [60820] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_BSLASH, + [60827] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4422), 1, + anon_sym_BSLASH, + [60834] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4424), 1, + anon_sym_RPAREN, + [60841] = 2, + ACTIONS(843), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + [60848] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3917), 1, + sym_name, + [60855] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4426), 1, + anon_sym_BSLASH, + [60862] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4428), 1, + anon_sym_RPAREN, + [60869] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4430), 1, + aux_sym_if_statement_token2, + [60876] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2459), 1, + anon_sym_RPAREN, + [60883] = 2, + ACTIONS(847), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + [60890] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4432), 1, + sym_name, + [60897] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2293), 1, + anon_sym_STAR_STAR, + [60904] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4434), 1, + ts_builtin_sym_end, + [60911] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4436), 1, + anon_sym_EQ_GT, + [60918] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4438), 1, + aux_sym__arrow_function_header_token1, + [60925] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4440), 1, + aux_sym_class_declaration_token1, + [60932] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4013), 1, + anon_sym_RPAREN, + [60939] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4442), 1, + anon_sym_EQ_GT, + [60946] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4444), 1, + anon_sym_EQ, + [60953] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4446), 1, + anon_sym_COLON_COLON, + [60960] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4448), 1, + anon_sym_RPAREN, + [60967] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4450), 1, + sym_name, + [60974] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4452), 1, + anon_sym_EQ, + [60981] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4454), 1, + sym_name, + [60988] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4456), 1, + sym_name, + [60995] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4458), 1, + aux_sym_if_statement_token2, + [61002] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4460), 1, + anon_sym_RBRACK, + [61009] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4462), 1, + sym_name, + [61016] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4464), 1, + anon_sym_RPAREN, + [61023] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3872), 1, + sym_name, + [61030] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4466), 1, + anon_sym_SQUOTE, + [61037] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4468), 1, + sym_name, + [61044] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4470), 1, + sym_heredoc_start, + [61051] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4472), 1, + sym_integer, + [61058] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4474), 1, + sym_heredoc_start, + [61065] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4476), 1, + aux_sym_foreach_statement_token2, + [61072] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4478), 1, + anon_sym_RPAREN, + [61079] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4480), 1, + anon_sym_SQUOTE, + [61086] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4482), 1, + sym_name, + [61093] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4484), 1, + anon_sym_RBRACK, + [61100] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4486), 1, + sym_heredoc_end, + [61107] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4488), 1, + anon_sym_DQUOTE2, + [61114] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_SQUOTE2, + [61121] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4492), 1, + anon_sym_RPAREN, + [61128] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4494), 1, + anon_sym_EQ_GT, + [61135] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4496), 1, + aux_sym_while_statement_token2, + [61142] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4140), 1, + anon_sym_RPAREN, + [61149] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4498), 1, + aux_sym_class_declaration_token1, + [61156] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4500), 1, + anon_sym_EQ_GT, + [61163] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4502), 1, + anon_sym_RPAREN, + [61170] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2577), 1, + anon_sym_RPAREN, + [61177] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4504), 1, + aux_sym_while_statement_token1, + [61184] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4506), 1, + anon_sym_EQ_GT, + [61191] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4508), 1, + anon_sym_COLON_COLON, + [61198] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4510), 1, + anon_sym_SQUOTE2, + [61205] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3892), 1, + anon_sym_RPAREN, + [61212] = 2, + ACTIONS(361), 1, + ts_builtin_sym_end, + ACTIONS(1446), 1, + sym_comment, + [61219] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4512), 1, + anon_sym_RPAREN, + [61226] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4221), 1, + anon_sym_RPAREN, + [61233] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4514), 1, + sym_name, + [61240] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4516), 1, + aux_sym_class_declaration_token1, + [61247] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4518), 1, + aux_sym_namespace_use_declaration_token3, + [61254] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4520), 1, + anon_sym_BSLASH, + [61261] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4522), 1, + anon_sym_COLON_COLON, + [61268] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4524), 1, + sym_name, + [61275] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4526), 1, + sym_name, + [61282] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4528), 1, + aux_sym_while_statement_token1, + [61289] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4530), 1, + sym_heredoc_start, + [61296] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4532), 1, + sym_heredoc_start, + [61303] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4534), 1, + aux_sym_class_declaration_token1, + [61310] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4536), 1, + aux_sym_class_declaration_token1, + [61317] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4538), 1, + anon_sym_BSLASH, + [61324] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4540), 1, + anon_sym_BSLASH, + [61331] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4542), 1, + anon_sym_RPAREN, + [61338] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4544), 1, + anon_sym_EQ_GT, + [61345] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4546), 1, + sym_name, + [61352] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4548), 1, + anon_sym_EQ_GT, + [61359] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4550), 1, + anon_sym_BSLASH, + [61366] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4047), 1, + anon_sym_RPAREN, + [61373] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4552), 1, + anon_sym_COLON_COLON, + [61380] = 2, + ACTIONS(871), 1, + anon_sym_SEMI, + ACTIONS(1446), 1, + sym_comment, + [61387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 1, + sym_string_value, + [61394] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3386), 1, + anon_sym_BSLASH, + [61401] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4556), 1, + sym_name, + [61408] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4219), 1, + anon_sym_LPAREN, + [61415] = 2, + ACTIONS(861), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + [61422] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4558), 1, + anon_sym_EQ, + [61429] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4560), 1, + anon_sym_SEMI, + [61436] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2425), 1, + anon_sym_RPAREN, + [61443] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4562), 1, + sym_name, + [61450] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4564), 1, + sym_name, + [61457] = 2, + ACTIONS(853), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + [61464] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4566), 1, + anon_sym_BSLASH, + [61471] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4568), 1, + anon_sym_RPAREN, + [61478] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_RBRACE, + [61485] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4570), 1, + sym_name, + [61492] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4572), 1, + sym_name, + [61499] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4574), 1, + anon_sym_EQ_GT, + [61506] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + [61513] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4079), 1, + anon_sym_RPAREN, + [61520] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4578), 1, + sym_name, + [61527] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym_EQ, + [61534] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4580), 1, + anon_sym_RBRACK, + [61541] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4582), 1, + anon_sym_COLON_COLON, + [61548] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3344), 1, + sym_name, + [61555] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3562), 1, + sym_name, + [61562] = 2, + ACTIONS(419), 1, + ts_builtin_sym_end, + ACTIONS(1446), 1, + sym_comment, + [61569] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4584), 1, + aux_sym_namespace_use_declaration_token3, + [61576] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4108), 1, + anon_sym_RPAREN, + [61583] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4586), 1, + anon_sym_COLON_COLON, + [61590] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_COLON_COLON, + [61597] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4590), 1, + anon_sym_COLON_COLON, + [61604] = 2, + ACTIONS(877), 1, + anon_sym_SEMI, + ACTIONS(1446), 1, + sym_comment, + [61611] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4592), 1, + anon_sym_EQ, + [61618] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4594), 1, + anon_sym_EQ_GT, + [61625] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4596), 1, + aux_sym_if_statement_token2, + [61632] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4598), 1, + anon_sym_SEMI, + [61639] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4600), 1, + aux_sym_namespace_use_declaration_token3, + [61646] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4602), 1, + aux_sym__arrow_function_header_token1, + [61653] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4604), 1, + aux_sym_class_declaration_token1, + [61660] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4606), 1, + anon_sym_BSLASH, + [61667] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4608), 1, + sym_name, + [61674] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4610), 1, + ts_builtin_sym_end, + [61681] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4612), 1, + anon_sym_RBRACK, + [61688] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4130), 1, + anon_sym_RPAREN, + [61695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 1, + sym_string_value, + [61702] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4616), 1, + anon_sym_LPAREN, + [61709] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(3915), 1, + anon_sym_LBRACE, + [61716] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4618), 1, + anon_sym_COLON_COLON, + [61723] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4620), 1, + anon_sym_RPAREN, + [61730] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4622), 1, + anon_sym_LPAREN, + [61737] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4624), 1, + anon_sym_LPAREN, + [61744] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4157), 1, + anon_sym_RPAREN, + [61751] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4626), 1, + anon_sym_LPAREN, + [61758] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4628), 1, + anon_sym_LPAREN, + [61765] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4630), 1, + sym_name, + [61772] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4632), 1, + sym_name, + [61779] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4634), 1, + anon_sym_COLON_COLON, + [61786] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4636), 1, + anon_sym_RPAREN, + [61793] = 2, + ACTIONS(845), 1, + anon_sym_RPAREN, + ACTIONS(1446), 1, + sym_comment, + [61800] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4638), 1, + anon_sym_LPAREN, + [61807] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4640), 1, + anon_sym_LPAREN, + [61814] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4642), 1, + anon_sym_SEMI, + [61821] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4644), 1, + anon_sym_LPAREN, + [61828] = 2, + ACTIONS(857), 1, + anon_sym_SEMI, + ACTIONS(1446), 1, + sym_comment, + [61835] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4646), 1, + anon_sym_LPAREN, + [61842] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4648), 1, + anon_sym_SEMI, + [61849] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4650), 1, + anon_sym_SEMI, + [61856] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4652), 1, + anon_sym_LPAREN, + [61863] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4654), 1, + sym_name, + [61870] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4656), 1, + anon_sym_SEMI, + [61877] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4658), 1, + sym_name, + [61884] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4660), 1, + anon_sym_LPAREN, + [61891] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4662), 1, + anon_sym_LPAREN, + [61898] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4664), 1, + sym_name, + [61905] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4666), 1, + sym_name, + [61912] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_SEMI, + [61919] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(2387), 1, + anon_sym_RPAREN, + [61926] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4670), 1, + anon_sym_LPAREN, + [61933] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4672), 1, + anon_sym_RPAREN, + [61940] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4674), 1, + anon_sym_LPAREN, + [61947] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4676), 1, + anon_sym_LPAREN, + [61954] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4678), 1, + anon_sym_EQ, + [61961] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4680), 1, + anon_sym_LPAREN, + [61968] = 2, + ACTIONS(1446), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_LPAREN, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(552)] = 0, + [SMALL_STATE(553)] = 70, + [SMALL_STATE(554)] = 140, + [SMALL_STATE(555)] = 210, + [SMALL_STATE(556)] = 280, + [SMALL_STATE(557)] = 353, + [SMALL_STATE(558)] = 426, + [SMALL_STATE(559)] = 507, + [SMALL_STATE(560)] = 580, + [SMALL_STATE(561)] = 653, + [SMALL_STATE(562)] = 726, + [SMALL_STATE(563)] = 794, + [SMALL_STATE(564)] = 862, + [SMALL_STATE(565)] = 930, + [SMALL_STATE(566)] = 998, + [SMALL_STATE(567)] = 1066, + [SMALL_STATE(568)] = 1134, + [SMALL_STATE(569)] = 1202, + [SMALL_STATE(570)] = 1270, + [SMALL_STATE(571)] = 1338, + [SMALL_STATE(572)] = 1406, + [SMALL_STATE(573)] = 1474, + [SMALL_STATE(574)] = 1542, + [SMALL_STATE(575)] = 1610, + [SMALL_STATE(576)] = 1689, + [SMALL_STATE(577)] = 1764, + [SMALL_STATE(578)] = 1843, + [SMALL_STATE(579)] = 1921, + [SMALL_STATE(580)] = 1999, + [SMALL_STATE(581)] = 2082, + [SMALL_STATE(582)] = 2155, + [SMALL_STATE(583)] = 2232, + [SMALL_STATE(584)] = 2309, + [SMALL_STATE(585)] = 2386, + [SMALL_STATE(586)] = 2455, + [SMALL_STATE(587)] = 2524, + [SMALL_STATE(588)] = 2597, + [SMALL_STATE(589)] = 2666, + [SMALL_STATE(590)] = 2735, + [SMALL_STATE(591)] = 2804, + [SMALL_STATE(592)] = 2881, + [SMALL_STATE(593)] = 2945, + [SMALL_STATE(594)] = 3009, + [SMALL_STATE(595)] = 3073, + [SMALL_STATE(596)] = 3137, + [SMALL_STATE(597)] = 3201, + [SMALL_STATE(598)] = 3279, + [SMALL_STATE(599)] = 3351, + [SMALL_STATE(600)] = 3415, + [SMALL_STATE(601)] = 3487, + [SMALL_STATE(602)] = 3551, + [SMALL_STATE(603)] = 3615, + [SMALL_STATE(604)] = 3679, + [SMALL_STATE(605)] = 3755, + [SMALL_STATE(606)] = 3819, + [SMALL_STATE(607)] = 3897, + [SMALL_STATE(608)] = 3973, + [SMALL_STATE(609)] = 4051, + [SMALL_STATE(610)] = 4115, + [SMALL_STATE(611)] = 4179, + [SMALL_STATE(612)] = 4243, + [SMALL_STATE(613)] = 4307, + [SMALL_STATE(614)] = 4371, + [SMALL_STATE(615)] = 4435, + [SMALL_STATE(616)] = 4499, + [SMALL_STATE(617)] = 4570, + [SMALL_STATE(618)] = 4641, + [SMALL_STATE(619)] = 4712, + [SMALL_STATE(620)] = 4783, + [SMALL_STATE(621)] = 4860, + [SMALL_STATE(622)] = 4937, + [SMALL_STATE(623)] = 5009, + [SMALL_STATE(624)] = 5081, + [SMALL_STATE(625)] = 5151, + [SMALL_STATE(626)] = 5221, + [SMALL_STATE(627)] = 5293, + [SMALL_STATE(628)] = 5364, + [SMALL_STATE(629)] = 5425, + [SMALL_STATE(630)] = 5484, + [SMALL_STATE(631)] = 5581, + [SMALL_STATE(632)] = 5640, + [SMALL_STATE(633)] = 5737, + [SMALL_STATE(634)] = 5802, + [SMALL_STATE(635)] = 5867, + [SMALL_STATE(636)] = 5926, + [SMALL_STATE(637)] = 5985, + [SMALL_STATE(638)] = 6050, + [SMALL_STATE(639)] = 6109, + [SMALL_STATE(640)] = 6164, + [SMALL_STATE(641)] = 6229, + [SMALL_STATE(642)] = 6292, + [SMALL_STATE(643)] = 6346, + [SMALL_STATE(644)] = 6442, + [SMALL_STATE(645)] = 6496, + [SMALL_STATE(646)] = 6550, + [SMALL_STATE(647)] = 6604, + [SMALL_STATE(648)] = 6658, + [SMALL_STATE(649)] = 6712, + [SMALL_STATE(650)] = 6766, + [SMALL_STATE(651)] = 6820, + [SMALL_STATE(652)] = 6874, + [SMALL_STATE(653)] = 6928, + [SMALL_STATE(654)] = 6982, + [SMALL_STATE(655)] = 7078, + [SMALL_STATE(656)] = 7132, + [SMALL_STATE(657)] = 7186, + [SMALL_STATE(658)] = 7240, + [SMALL_STATE(659)] = 7294, + [SMALL_STATE(660)] = 7348, + [SMALL_STATE(661)] = 7402, + [SMALL_STATE(662)] = 7456, + [SMALL_STATE(663)] = 7514, + [SMALL_STATE(664)] = 7569, + [SMALL_STATE(665)] = 7626, + [SMALL_STATE(666)] = 7683, + [SMALL_STATE(667)] = 7742, + [SMALL_STATE(668)] = 7801, + [SMALL_STATE(669)] = 7860, + [SMALL_STATE(670)] = 7919, + [SMALL_STATE(671)] = 7976, + [SMALL_STATE(672)] = 8031, + [SMALL_STATE(673)] = 8126, + [SMALL_STATE(674)] = 8183, + [SMALL_STATE(675)] = 8242, + [SMALL_STATE(676)] = 8299, + [SMALL_STATE(677)] = 8354, + [SMALL_STATE(678)] = 8411, + [SMALL_STATE(679)] = 8468, + [SMALL_STATE(680)] = 8525, + [SMALL_STATE(681)] = 8616, + [SMALL_STATE(682)] = 8675, + [SMALL_STATE(683)] = 8770, + [SMALL_STATE(684)] = 8861, + [SMALL_STATE(685)] = 8916, + [SMALL_STATE(686)] = 8973, + [SMALL_STATE(687)] = 9070, + [SMALL_STATE(688)] = 9127, + [SMALL_STATE(689)] = 9184, + [SMALL_STATE(690)] = 9275, + [SMALL_STATE(691)] = 9334, + [SMALL_STATE(692)] = 9391, + [SMALL_STATE(693)] = 9450, + [SMALL_STATE(694)] = 9509, + [SMALL_STATE(695)] = 9568, + [SMALL_STATE(696)] = 9623, + [SMALL_STATE(697)] = 9720, + [SMALL_STATE(698)] = 9779, + [SMALL_STATE(699)] = 9834, + [SMALL_STATE(700)] = 9893, + [SMALL_STATE(701)] = 9950, + [SMALL_STATE(702)] = 10002, + [SMALL_STATE(703)] = 10054, + [SMALL_STATE(704)] = 10106, + [SMALL_STATE(705)] = 10158, + [SMALL_STATE(706)] = 10210, + [SMALL_STATE(707)] = 10262, + [SMALL_STATE(708)] = 10356, + [SMALL_STATE(709)] = 10408, + [SMALL_STATE(710)] = 10460, + [SMALL_STATE(711)] = 10512, + [SMALL_STATE(712)] = 10566, + [SMALL_STATE(713)] = 10618, + [SMALL_STATE(714)] = 10670, + [SMALL_STATE(715)] = 10722, + [SMALL_STATE(716)] = 10774, + [SMALL_STATE(717)] = 10826, + [SMALL_STATE(718)] = 10878, + [SMALL_STATE(719)] = 10930, + [SMALL_STATE(720)] = 10982, + [SMALL_STATE(721)] = 11034, + [SMALL_STATE(722)] = 11086, + [SMALL_STATE(723)] = 11138, + [SMALL_STATE(724)] = 11232, + [SMALL_STATE(725)] = 11326, + [SMALL_STATE(726)] = 11378, + [SMALL_STATE(727)] = 11430, + [SMALL_STATE(728)] = 11482, + [SMALL_STATE(729)] = 11536, + [SMALL_STATE(730)] = 11588, + [SMALL_STATE(731)] = 11682, + [SMALL_STATE(732)] = 11774, + [SMALL_STATE(733)] = 11826, + [SMALL_STATE(734)] = 11878, + [SMALL_STATE(735)] = 11930, + [SMALL_STATE(736)] = 11982, + [SMALL_STATE(737)] = 12034, + [SMALL_STATE(738)] = 12086, + [SMALL_STATE(739)] = 12138, + [SMALL_STATE(740)] = 12190, + [SMALL_STATE(741)] = 12242, + [SMALL_STATE(742)] = 12294, + [SMALL_STATE(743)] = 12346, + [SMALL_STATE(744)] = 12398, + [SMALL_STATE(745)] = 12450, + [SMALL_STATE(746)] = 12511, + [SMALL_STATE(747)] = 12566, + [SMALL_STATE(748)] = 12657, + [SMALL_STATE(749)] = 12718, + [SMALL_STATE(750)] = 12775, + [SMALL_STATE(751)] = 12836, + [SMALL_STATE(752)] = 12889, + [SMALL_STATE(753)] = 12944, + [SMALL_STATE(754)] = 12999, + [SMALL_STATE(755)] = 13052, + [SMALL_STATE(756)] = 13103, + [SMALL_STATE(757)] = 13156, + [SMALL_STATE(758)] = 13207, + [SMALL_STATE(759)] = 13260, + [SMALL_STATE(760)] = 13321, + [SMALL_STATE(761)] = 13380, + [SMALL_STATE(762)] = 13435, + [SMALL_STATE(763)] = 13488, + [SMALL_STATE(764)] = 13543, + [SMALL_STATE(765)] = 13598, + [SMALL_STATE(766)] = 13648, + [SMALL_STATE(767)] = 13698, + [SMALL_STATE(768)] = 13748, + [SMALL_STATE(769)] = 13798, + [SMALL_STATE(770)] = 13848, + [SMALL_STATE(771)] = 13898, + [SMALL_STATE(772)] = 13948, + [SMALL_STATE(773)] = 13998, + [SMALL_STATE(774)] = 14048, + [SMALL_STATE(775)] = 14098, + [SMALL_STATE(776)] = 14160, + [SMALL_STATE(777)] = 14210, + [SMALL_STATE(778)] = 14260, + [SMALL_STATE(779)] = 14310, + [SMALL_STATE(780)] = 14360, + [SMALL_STATE(781)] = 14410, + [SMALL_STATE(782)] = 14472, + [SMALL_STATE(783)] = 14522, + [SMALL_STATE(784)] = 14584, + [SMALL_STATE(785)] = 14634, + [SMALL_STATE(786)] = 14684, + [SMALL_STATE(787)] = 14737, + [SMALL_STATE(788)] = 14790, + [SMALL_STATE(789)] = 14843, + [SMALL_STATE(790)] = 14896, + [SMALL_STATE(791)] = 14951, + [SMALL_STATE(792)] = 15000, + [SMALL_STATE(793)] = 15083, + [SMALL_STATE(794)] = 15166, + [SMALL_STATE(795)] = 15249, + [SMALL_STATE(796)] = 15302, + [SMALL_STATE(797)] = 15357, + [SMALL_STATE(798)] = 15412, + [SMALL_STATE(799)] = 15467, + [SMALL_STATE(800)] = 15522, + [SMALL_STATE(801)] = 15605, + [SMALL_STATE(802)] = 15656, + [SMALL_STATE(803)] = 15705, + [SMALL_STATE(804)] = 15788, + [SMALL_STATE(805)] = 15843, + [SMALL_STATE(806)] = 15926, + [SMALL_STATE(807)] = 16009, + [SMALL_STATE(808)] = 16062, + [SMALL_STATE(809)] = 16117, + [SMALL_STATE(810)] = 16172, + [SMALL_STATE(811)] = 16255, + [SMALL_STATE(812)] = 16310, + [SMALL_STATE(813)] = 16393, + [SMALL_STATE(814)] = 16444, + [SMALL_STATE(815)] = 16499, + [SMALL_STATE(816)] = 16550, + [SMALL_STATE(817)] = 16633, + [SMALL_STATE(818)] = 16682, + [SMALL_STATE(819)] = 16731, + [SMALL_STATE(820)] = 16786, + [SMALL_STATE(821)] = 16841, + [SMALL_STATE(822)] = 16894, + [SMALL_STATE(823)] = 16977, + [SMALL_STATE(824)] = 17028, + [SMALL_STATE(825)] = 17079, + [SMALL_STATE(826)] = 17130, + [SMALL_STATE(827)] = 17183, + [SMALL_STATE(828)] = 17236, + [SMALL_STATE(829)] = 17289, + [SMALL_STATE(830)] = 17342, + [SMALL_STATE(831)] = 17395, + [SMALL_STATE(832)] = 17448, + [SMALL_STATE(833)] = 17531, + [SMALL_STATE(834)] = 17614, + [SMALL_STATE(835)] = 17697, + [SMALL_STATE(836)] = 17748, + [SMALL_STATE(837)] = 17831, + [SMALL_STATE(838)] = 17881, + [SMALL_STATE(839)] = 17929, + [SMALL_STATE(840)] = 17977, + [SMALL_STATE(841)] = 18025, + [SMALL_STATE(842)] = 18073, + [SMALL_STATE(843)] = 18121, + [SMALL_STATE(844)] = 18171, + [SMALL_STATE(845)] = 18219, + [SMALL_STATE(846)] = 18267, + [SMALL_STATE(847)] = 18315, + [SMALL_STATE(848)] = 18363, + [SMALL_STATE(849)] = 18411, + [SMALL_STATE(850)] = 18459, + [SMALL_STATE(851)] = 18507, + [SMALL_STATE(852)] = 18555, + [SMALL_STATE(853)] = 18603, + [SMALL_STATE(854)] = 18651, + [SMALL_STATE(855)] = 18699, + [SMALL_STATE(856)] = 18747, + [SMALL_STATE(857)] = 18795, + [SMALL_STATE(858)] = 18847, + [SMALL_STATE(859)] = 18897, + [SMALL_STATE(860)] = 18945, + [SMALL_STATE(861)] = 18993, + [SMALL_STATE(862)] = 19041, + [SMALL_STATE(863)] = 19089, + [SMALL_STATE(864)] = 19137, + [SMALL_STATE(865)] = 19185, + [SMALL_STATE(866)] = 19233, + [SMALL_STATE(867)] = 19281, + [SMALL_STATE(868)] = 19329, + [SMALL_STATE(869)] = 19377, + [SMALL_STATE(870)] = 19425, + [SMALL_STATE(871)] = 19473, + [SMALL_STATE(872)] = 19521, + [SMALL_STATE(873)] = 19569, + [SMALL_STATE(874)] = 19617, + [SMALL_STATE(875)] = 19665, + [SMALL_STATE(876)] = 19713, + [SMALL_STATE(877)] = 19761, + [SMALL_STATE(878)] = 19809, + [SMALL_STATE(879)] = 19858, + [SMALL_STATE(880)] = 19907, + [SMALL_STATE(881)] = 19956, + [SMALL_STATE(882)] = 20005, + [SMALL_STATE(883)] = 20054, + [SMALL_STATE(884)] = 20100, + [SMALL_STATE(885)] = 20146, + [SMALL_STATE(886)] = 20192, + [SMALL_STATE(887)] = 20238, + [SMALL_STATE(888)] = 20284, + [SMALL_STATE(889)] = 20330, + [SMALL_STATE(890)] = 20376, + [SMALL_STATE(891)] = 20422, + [SMALL_STATE(892)] = 20468, + [SMALL_STATE(893)] = 20514, + [SMALL_STATE(894)] = 20560, + [SMALL_STATE(895)] = 20606, + [SMALL_STATE(896)] = 20652, + [SMALL_STATE(897)] = 20698, + [SMALL_STATE(898)] = 20744, + [SMALL_STATE(899)] = 20792, + [SMALL_STATE(900)] = 20838, + [SMALL_STATE(901)] = 20884, + [SMALL_STATE(902)] = 20930, + [SMALL_STATE(903)] = 20976, + [SMALL_STATE(904)] = 21022, + [SMALL_STATE(905)] = 21068, + [SMALL_STATE(906)] = 21114, + [SMALL_STATE(907)] = 21160, + [SMALL_STATE(908)] = 21206, + [SMALL_STATE(909)] = 21252, + [SMALL_STATE(910)] = 21298, + [SMALL_STATE(911)] = 21344, + [SMALL_STATE(912)] = 21390, + [SMALL_STATE(913)] = 21436, + [SMALL_STATE(914)] = 21482, + [SMALL_STATE(915)] = 21528, + [SMALL_STATE(916)] = 21574, + [SMALL_STATE(917)] = 21620, + [SMALL_STATE(918)] = 21666, + [SMALL_STATE(919)] = 21712, + [SMALL_STATE(920)] = 21758, + [SMALL_STATE(921)] = 21804, + [SMALL_STATE(922)] = 21850, + [SMALL_STATE(923)] = 21896, + [SMALL_STATE(924)] = 21942, + [SMALL_STATE(925)] = 21988, + [SMALL_STATE(926)] = 22034, + [SMALL_STATE(927)] = 22080, + [SMALL_STATE(928)] = 22126, + [SMALL_STATE(929)] = 22172, + [SMALL_STATE(930)] = 22218, + [SMALL_STATE(931)] = 22264, + [SMALL_STATE(932)] = 22310, + [SMALL_STATE(933)] = 22356, + [SMALL_STATE(934)] = 22402, + [SMALL_STATE(935)] = 22448, + [SMALL_STATE(936)] = 22494, + [SMALL_STATE(937)] = 22540, + [SMALL_STATE(938)] = 22586, + [SMALL_STATE(939)] = 22632, + [SMALL_STATE(940)] = 22678, + [SMALL_STATE(941)] = 22724, + [SMALL_STATE(942)] = 22770, + [SMALL_STATE(943)] = 22816, + [SMALL_STATE(944)] = 22862, + [SMALL_STATE(945)] = 22908, + [SMALL_STATE(946)] = 22954, + [SMALL_STATE(947)] = 23000, + [SMALL_STATE(948)] = 23045, + [SMALL_STATE(949)] = 23090, + [SMALL_STATE(950)] = 23164, + [SMALL_STATE(951)] = 23244, + [SMALL_STATE(952)] = 23324, + [SMALL_STATE(953)] = 23398, + [SMALL_STATE(954)] = 23480, + [SMALL_STATE(955)] = 23532, + [SMALL_STATE(956)] = 23612, + [SMALL_STATE(957)] = 23662, + [SMALL_STATE(958)] = 23742, + [SMALL_STATE(959)] = 23796, + [SMALL_STATE(960)] = 23876, + [SMALL_STATE(961)] = 23956, + [SMALL_STATE(962)] = 24002, + [SMALL_STATE(963)] = 24076, + [SMALL_STATE(964)] = 24134, + [SMALL_STATE(965)] = 24180, + [SMALL_STATE(966)] = 24260, + [SMALL_STATE(967)] = 24326, + [SMALL_STATE(968)] = 24390, + [SMALL_STATE(969)] = 24436, + [SMALL_STATE(970)] = 24504, + [SMALL_STATE(971)] = 24566, + [SMALL_STATE(972)] = 24646, + [SMALL_STATE(973)] = 24716, + [SMALL_STATE(974)] = 24792, + [SMALL_STATE(975)] = 24872, + [SMALL_STATE(976)] = 24950, + [SMALL_STATE(977)] = 25024, + [SMALL_STATE(978)] = 25098, + [SMALL_STATE(979)] = 25178, + [SMALL_STATE(980)] = 25226, + [SMALL_STATE(981)] = 25300, + [SMALL_STATE(982)] = 25374, + [SMALL_STATE(983)] = 25453, + [SMALL_STATE(984)] = 25526, + [SMALL_STATE(985)] = 25605, + [SMALL_STATE(986)] = 25650, + [SMALL_STATE(987)] = 25729, + [SMALL_STATE(988)] = 25790, + [SMALL_STATE(989)] = 25835, + [SMALL_STATE(990)] = 25900, + [SMALL_STATE(991)] = 25947, + [SMALL_STATE(992)] = 26020, + [SMALL_STATE(993)] = 26093, + [SMALL_STATE(994)] = 26170, + [SMALL_STATE(995)] = 26245, + [SMALL_STATE(996)] = 26314, + [SMALL_STATE(997)] = 26381, + [SMALL_STATE(998)] = 26426, + [SMALL_STATE(999)] = 26489, + [SMALL_STATE(1000)] = 26546, + [SMALL_STATE(1001)] = 26599, + [SMALL_STATE(1002)] = 26648, + [SMALL_STATE(1003)] = 26699, + [SMALL_STATE(1004)] = 26772, + [SMALL_STATE(1005)] = 26845, + [SMALL_STATE(1006)] = 26924, + [SMALL_STATE(1007)] = 27003, + [SMALL_STATE(1008)] = 27082, + [SMALL_STATE(1009)] = 27155, + [SMALL_STATE(1010)] = 27234, + [SMALL_STATE(1011)] = 27315, + [SMALL_STATE(1012)] = 27394, + [SMALL_STATE(1013)] = 27467, + [SMALL_STATE(1014)] = 27546, + [SMALL_STATE(1015)] = 27625, + [SMALL_STATE(1016)] = 27667, + [SMALL_STATE(1017)] = 27743, + [SMALL_STATE(1018)] = 27785, + [SMALL_STATE(1019)] = 27827, + [SMALL_STATE(1020)] = 27869, + [SMALL_STATE(1021)] = 27911, + [SMALL_STATE(1022)] = 27953, + [SMALL_STATE(1023)] = 27995, + [SMALL_STATE(1024)] = 28037, + [SMALL_STATE(1025)] = 28079, + [SMALL_STATE(1026)] = 28135, + [SMALL_STATE(1027)] = 28177, + [SMALL_STATE(1028)] = 28219, + [SMALL_STATE(1029)] = 28261, + [SMALL_STATE(1030)] = 28303, + [SMALL_STATE(1031)] = 28345, + [SMALL_STATE(1032)] = 28387, + [SMALL_STATE(1033)] = 28429, + [SMALL_STATE(1034)] = 28471, + [SMALL_STATE(1035)] = 28513, + [SMALL_STATE(1036)] = 28555, + [SMALL_STATE(1037)] = 28633, + [SMALL_STATE(1038)] = 28675, + [SMALL_STATE(1039)] = 28717, + [SMALL_STATE(1040)] = 28759, + [SMALL_STATE(1041)] = 28831, + [SMALL_STATE(1042)] = 28903, + [SMALL_STATE(1043)] = 28975, + [SMALL_STATE(1044)] = 29017, + [SMALL_STATE(1045)] = 29095, + [SMALL_STATE(1046)] = 29137, + [SMALL_STATE(1047)] = 29179, + [SMALL_STATE(1048)] = 29257, + [SMALL_STATE(1049)] = 29299, + [SMALL_STATE(1050)] = 29341, + [SMALL_STATE(1051)] = 29383, + [SMALL_STATE(1052)] = 29425, + [SMALL_STATE(1053)] = 29467, + [SMALL_STATE(1054)] = 29509, + [SMALL_STATE(1055)] = 29551, + [SMALL_STATE(1056)] = 29593, + [SMALL_STATE(1057)] = 29635, + [SMALL_STATE(1058)] = 29677, + [SMALL_STATE(1059)] = 29719, + [SMALL_STATE(1060)] = 29763, + [SMALL_STATE(1061)] = 29805, + [SMALL_STATE(1062)] = 29847, + [SMALL_STATE(1063)] = 29889, + [SMALL_STATE(1064)] = 29931, + [SMALL_STATE(1065)] = 29973, + [SMALL_STATE(1066)] = 30051, + [SMALL_STATE(1067)] = 30093, + [SMALL_STATE(1068)] = 30173, + [SMALL_STATE(1069)] = 30215, + [SMALL_STATE(1070)] = 30293, + [SMALL_STATE(1071)] = 30335, + [SMALL_STATE(1072)] = 30379, + [SMALL_STATE(1073)] = 30421, + [SMALL_STATE(1074)] = 30499, + [SMALL_STATE(1075)] = 30541, + [SMALL_STATE(1076)] = 30583, + [SMALL_STATE(1077)] = 30627, + [SMALL_STATE(1078)] = 30669, + [SMALL_STATE(1079)] = 30729, + [SMALL_STATE(1080)] = 30773, + [SMALL_STATE(1081)] = 30845, + [SMALL_STATE(1082)] = 30917, + [SMALL_STATE(1083)] = 30995, + [SMALL_STATE(1084)] = 31037, + [SMALL_STATE(1085)] = 31079, + [SMALL_STATE(1086)] = 31121, + [SMALL_STATE(1087)] = 31163, + [SMALL_STATE(1088)] = 31205, + [SMALL_STATE(1089)] = 31247, + [SMALL_STATE(1090)] = 31289, + [SMALL_STATE(1091)] = 31331, + [SMALL_STATE(1092)] = 31373, + [SMALL_STATE(1093)] = 31423, + [SMALL_STATE(1094)] = 31471, + [SMALL_STATE(1095)] = 31513, + [SMALL_STATE(1096)] = 31565, + [SMALL_STATE(1097)] = 31621, + [SMALL_STATE(1098)] = 31663, + [SMALL_STATE(1099)] = 31725, + [SMALL_STATE(1100)] = 31791, + [SMALL_STATE(1101)] = 31869, + [SMALL_STATE(1102)] = 31911, + [SMALL_STATE(1103)] = 31975, + [SMALL_STATE(1104)] = 32043, + [SMALL_STATE(1105)] = 32085, + [SMALL_STATE(1106)] = 32163, + [SMALL_STATE(1107)] = 32205, + [SMALL_STATE(1108)] = 32247, + [SMALL_STATE(1109)] = 32289, + [SMALL_STATE(1110)] = 32363, + [SMALL_STATE(1111)] = 32405, + [SMALL_STATE(1112)] = 32477, + [SMALL_STATE(1113)] = 32549, + [SMALL_STATE(1114)] = 32595, + [SMALL_STATE(1115)] = 32673, + [SMALL_STATE(1116)] = 32744, + [SMALL_STATE(1117)] = 32821, + [SMALL_STATE(1118)] = 32898, + [SMALL_STATE(1119)] = 32969, + [SMALL_STATE(1120)] = 33046, + [SMALL_STATE(1121)] = 33121, + [SMALL_STATE(1122)] = 33198, + [SMALL_STATE(1123)] = 33275, + [SMALL_STATE(1124)] = 33354, + [SMALL_STATE(1125)] = 33431, + [SMALL_STATE(1126)] = 33474, + [SMALL_STATE(1127)] = 33545, + [SMALL_STATE(1128)] = 33622, + [SMALL_STATE(1129)] = 33699, + [SMALL_STATE(1130)] = 33758, + [SMALL_STATE(1131)] = 33801, + [SMALL_STATE(1132)] = 33864, + [SMALL_STATE(1133)] = 33907, + [SMALL_STATE(1134)] = 33984, + [SMALL_STATE(1135)] = 34029, + [SMALL_STATE(1136)] = 34100, + [SMALL_STATE(1137)] = 34171, + [SMALL_STATE(1138)] = 34244, + [SMALL_STATE(1139)] = 34315, + [SMALL_STATE(1140)] = 34370, + [SMALL_STATE(1141)] = 34441, + [SMALL_STATE(1142)] = 34502, + [SMALL_STATE(1143)] = 34551, + [SMALL_STATE(1144)] = 34598, + [SMALL_STATE(1145)] = 34663, + [SMALL_STATE(1146)] = 34730, + [SMALL_STATE(1147)] = 34807, + [SMALL_STATE(1148)] = 34858, + [SMALL_STATE(1149)] = 34926, + [SMALL_STATE(1150)] = 35001, + [SMALL_STATE(1151)] = 35066, + [SMALL_STATE(1152)] = 35143, + [SMALL_STATE(1153)] = 35218, + [SMALL_STATE(1154)] = 35293, + [SMALL_STATE(1155)] = 35368, + [SMALL_STATE(1156)] = 35443, + [SMALL_STATE(1157)] = 35520, + [SMALL_STATE(1158)] = 35595, + [SMALL_STATE(1159)] = 35670, + [SMALL_STATE(1160)] = 35745, + [SMALL_STATE(1161)] = 35820, + [SMALL_STATE(1162)] = 35897, + [SMALL_STATE(1163)] = 35974, + [SMALL_STATE(1164)] = 36049, + [SMALL_STATE(1165)] = 36124, + [SMALL_STATE(1166)] = 36201, + [SMALL_STATE(1167)] = 36280, + [SMALL_STATE(1168)] = 36355, + [SMALL_STATE(1169)] = 36431, + [SMALL_STATE(1170)] = 36505, + [SMALL_STATE(1171)] = 36579, + [SMALL_STATE(1172)] = 36653, + [SMALL_STATE(1173)] = 36727, + [SMALL_STATE(1174)] = 36803, + [SMALL_STATE(1175)] = 36877, + [SMALL_STATE(1176)] = 36951, + [SMALL_STATE(1177)] = 37025, + [SMALL_STATE(1178)] = 37099, + [SMALL_STATE(1179)] = 37173, + [SMALL_STATE(1180)] = 37249, + [SMALL_STATE(1181)] = 37323, + [SMALL_STATE(1182)] = 37397, + [SMALL_STATE(1183)] = 37471, + [SMALL_STATE(1184)] = 37545, + [SMALL_STATE(1185)] = 37619, + [SMALL_STATE(1186)] = 37693, + [SMALL_STATE(1187)] = 37767, + [SMALL_STATE(1188)] = 37843, + [SMALL_STATE(1189)] = 37917, + [SMALL_STATE(1190)] = 37993, + [SMALL_STATE(1191)] = 38067, + [SMALL_STATE(1192)] = 38143, + [SMALL_STATE(1193)] = 38217, + [SMALL_STATE(1194)] = 38291, + [SMALL_STATE(1195)] = 38367, + [SMALL_STATE(1196)] = 38441, + [SMALL_STATE(1197)] = 38515, + [SMALL_STATE(1198)] = 38589, + [SMALL_STATE(1199)] = 38663, + [SMALL_STATE(1200)] = 38737, + [SMALL_STATE(1201)] = 38811, + [SMALL_STATE(1202)] = 38855, + [SMALL_STATE(1203)] = 38929, + [SMALL_STATE(1204)] = 38973, + [SMALL_STATE(1205)] = 39047, + [SMALL_STATE(1206)] = 39123, + [SMALL_STATE(1207)] = 39196, + [SMALL_STATE(1208)] = 39269, + [SMALL_STATE(1209)] = 39342, + [SMALL_STATE(1210)] = 39415, + [SMALL_STATE(1211)] = 39488, + [SMALL_STATE(1212)] = 39561, + [SMALL_STATE(1213)] = 39634, + [SMALL_STATE(1214)] = 39699, + [SMALL_STATE(1215)] = 39772, + [SMALL_STATE(1216)] = 39845, + [SMALL_STATE(1217)] = 39910, + [SMALL_STATE(1218)] = 39969, + [SMALL_STATE(1219)] = 40042, + [SMALL_STATE(1220)] = 40115, + [SMALL_STATE(1221)] = 40188, + [SMALL_STATE(1222)] = 40261, + [SMALL_STATE(1223)] = 40334, + [SMALL_STATE(1224)] = 40407, + [SMALL_STATE(1225)] = 40480, + [SMALL_STATE(1226)] = 40553, + [SMALL_STATE(1227)] = 40626, + [SMALL_STATE(1228)] = 40699, + [SMALL_STATE(1229)] = 40772, + [SMALL_STATE(1230)] = 40845, + [SMALL_STATE(1231)] = 40918, + [SMALL_STATE(1232)] = 40991, + [SMALL_STATE(1233)] = 41064, + [SMALL_STATE(1234)] = 41137, + [SMALL_STATE(1235)] = 41210, + [SMALL_STATE(1236)] = 41275, + [SMALL_STATE(1237)] = 41348, + [SMALL_STATE(1238)] = 41421, + [SMALL_STATE(1239)] = 41494, + [SMALL_STATE(1240)] = 41567, + [SMALL_STATE(1241)] = 41640, + [SMALL_STATE(1242)] = 41713, + [SMALL_STATE(1243)] = 41786, + [SMALL_STATE(1244)] = 41859, + [SMALL_STATE(1245)] = 41932, + [SMALL_STATE(1246)] = 42005, + [SMALL_STATE(1247)] = 42078, + [SMALL_STATE(1248)] = 42151, + [SMALL_STATE(1249)] = 42224, + [SMALL_STATE(1250)] = 42297, + [SMALL_STATE(1251)] = 42370, + [SMALL_STATE(1252)] = 42443, + [SMALL_STATE(1253)] = 42516, + [SMALL_STATE(1254)] = 42589, + [SMALL_STATE(1255)] = 42662, + [SMALL_STATE(1256)] = 42735, + [SMALL_STATE(1257)] = 42808, + [SMALL_STATE(1258)] = 42881, + [SMALL_STATE(1259)] = 42954, + [SMALL_STATE(1260)] = 42991, + [SMALL_STATE(1261)] = 43064, + [SMALL_STATE(1262)] = 43137, + [SMALL_STATE(1263)] = 43210, + [SMALL_STATE(1264)] = 43283, + [SMALL_STATE(1265)] = 43356, + [SMALL_STATE(1266)] = 43421, + [SMALL_STATE(1267)] = 43494, + [SMALL_STATE(1268)] = 43567, + [SMALL_STATE(1269)] = 43640, + [SMALL_STATE(1270)] = 43713, + [SMALL_STATE(1271)] = 43786, + [SMALL_STATE(1272)] = 43859, + [SMALL_STATE(1273)] = 43924, + [SMALL_STATE(1274)] = 43997, + [SMALL_STATE(1275)] = 44070, + [SMALL_STATE(1276)] = 44143, + [SMALL_STATE(1277)] = 44216, + [SMALL_STATE(1278)] = 44289, + [SMALL_STATE(1279)] = 44345, + [SMALL_STATE(1280)] = 44383, + [SMALL_STATE(1281)] = 44419, + [SMALL_STATE(1282)] = 44455, + [SMALL_STATE(1283)] = 44511, + [SMALL_STATE(1284)] = 44546, + [SMALL_STATE(1285)] = 44581, + [SMALL_STATE(1286)] = 44627, + [SMALL_STATE(1287)] = 44673, + [SMALL_STATE(1288)] = 44719, + [SMALL_STATE(1289)] = 44765, + [SMALL_STATE(1290)] = 44811, + [SMALL_STATE(1291)] = 44857, + [SMALL_STATE(1292)] = 44892, + [SMALL_STATE(1293)] = 44927, + [SMALL_STATE(1294)] = 44968, + [SMALL_STATE(1295)] = 45009, + [SMALL_STATE(1296)] = 45050, + [SMALL_STATE(1297)] = 45079, + [SMALL_STATE(1298)] = 45108, + [SMALL_STATE(1299)] = 45137, + [SMALL_STATE(1300)] = 45165, + [SMALL_STATE(1301)] = 45213, + [SMALL_STATE(1302)] = 45261, + [SMALL_STATE(1303)] = 45288, + [SMALL_STATE(1304)] = 45333, + [SMALL_STATE(1305)] = 45382, + [SMALL_STATE(1306)] = 45424, + [SMALL_STATE(1307)] = 45466, + [SMALL_STATE(1308)] = 45508, + [SMALL_STATE(1309)] = 45550, + [SMALL_STATE(1310)] = 45577, + [SMALL_STATE(1311)] = 45616, + [SMALL_STATE(1312)] = 45655, + [SMALL_STATE(1313)] = 45682, + [SMALL_STATE(1314)] = 45718, + [SMALL_STATE(1315)] = 45742, + [SMALL_STATE(1316)] = 45763, + [SMALL_STATE(1317)] = 45784, + [SMALL_STATE(1318)] = 45819, + [SMALL_STATE(1319)] = 45840, + [SMALL_STATE(1320)] = 45876, + [SMALL_STATE(1321)] = 45912, + [SMALL_STATE(1322)] = 45948, + [SMALL_STATE(1323)] = 45968, + [SMALL_STATE(1324)] = 45988, + [SMALL_STATE(1325)] = 46008, + [SMALL_STATE(1326)] = 46038, + [SMALL_STATE(1327)] = 46058, + [SMALL_STATE(1328)] = 46078, + [SMALL_STATE(1329)] = 46098, + [SMALL_STATE(1330)] = 46120, + [SMALL_STATE(1331)] = 46140, + [SMALL_STATE(1332)] = 46160, + [SMALL_STATE(1333)] = 46180, + [SMALL_STATE(1334)] = 46200, + [SMALL_STATE(1335)] = 46220, + [SMALL_STATE(1336)] = 46240, + [SMALL_STATE(1337)] = 46260, + [SMALL_STATE(1338)] = 46280, + [SMALL_STATE(1339)] = 46300, + [SMALL_STATE(1340)] = 46320, + [SMALL_STATE(1341)] = 46340, + [SMALL_STATE(1342)] = 46368, + [SMALL_STATE(1343)] = 46404, + [SMALL_STATE(1344)] = 46440, + [SMALL_STATE(1345)] = 46460, + [SMALL_STATE(1346)] = 46479, + [SMALL_STATE(1347)] = 46512, + [SMALL_STATE(1348)] = 46531, + [SMALL_STATE(1349)] = 46550, + [SMALL_STATE(1350)] = 46569, + [SMALL_STATE(1351)] = 46588, + [SMALL_STATE(1352)] = 46607, + [SMALL_STATE(1353)] = 46640, + [SMALL_STATE(1354)] = 46659, + [SMALL_STATE(1355)] = 46692, + [SMALL_STATE(1356)] = 46711, + [SMALL_STATE(1357)] = 46744, + [SMALL_STATE(1358)] = 46763, + [SMALL_STATE(1359)] = 46782, + [SMALL_STATE(1360)] = 46815, + [SMALL_STATE(1361)] = 46834, + [SMALL_STATE(1362)] = 46853, + [SMALL_STATE(1363)] = 46872, + [SMALL_STATE(1364)] = 46907, + [SMALL_STATE(1365)] = 46926, + [SMALL_STATE(1366)] = 46965, + [SMALL_STATE(1367)] = 47000, + [SMALL_STATE(1368)] = 47019, + [SMALL_STATE(1369)] = 47058, + [SMALL_STATE(1370)] = 47077, + [SMALL_STATE(1371)] = 47096, + [SMALL_STATE(1372)] = 47115, + [SMALL_STATE(1373)] = 47134, + [SMALL_STATE(1374)] = 47153, + [SMALL_STATE(1375)] = 47187, + [SMALL_STATE(1376)] = 47221, + [SMALL_STATE(1377)] = 47255, + [SMALL_STATE(1378)] = 47289, + [SMALL_STATE(1379)] = 47320, + [SMALL_STATE(1380)] = 47339, + [SMALL_STATE(1381)] = 47368, + [SMALL_STATE(1382)] = 47387, + [SMALL_STATE(1383)] = 47406, + [SMALL_STATE(1384)] = 47425, + [SMALL_STATE(1385)] = 47456, + [SMALL_STATE(1386)] = 47475, + [SMALL_STATE(1387)] = 47504, + [SMALL_STATE(1388)] = 47523, + [SMALL_STATE(1389)] = 47542, + [SMALL_STATE(1390)] = 47561, + [SMALL_STATE(1391)] = 47590, + [SMALL_STATE(1392)] = 47621, + [SMALL_STATE(1393)] = 47652, + [SMALL_STATE(1394)] = 47683, + [SMALL_STATE(1395)] = 47702, + [SMALL_STATE(1396)] = 47733, + [SMALL_STATE(1397)] = 47759, + [SMALL_STATE(1398)] = 47781, + [SMALL_STATE(1399)] = 47809, + [SMALL_STATE(1400)] = 47837, + [SMALL_STATE(1401)] = 47863, + [SMALL_STATE(1402)] = 47881, + [SMALL_STATE(1403)] = 47907, + [SMALL_STATE(1404)] = 47935, + [SMALL_STATE(1405)] = 47963, + [SMALL_STATE(1406)] = 47985, + [SMALL_STATE(1407)] = 48009, + [SMALL_STATE(1408)] = 48031, + [SMALL_STATE(1409)] = 48059, + [SMALL_STATE(1410)] = 48084, + [SMALL_STATE(1411)] = 48107, + [SMALL_STATE(1412)] = 48132, + [SMALL_STATE(1413)] = 48155, + [SMALL_STATE(1414)] = 48170, + [SMALL_STATE(1415)] = 48195, + [SMALL_STATE(1416)] = 48214, + [SMALL_STATE(1417)] = 48237, + [SMALL_STATE(1418)] = 48260, + [SMALL_STATE(1419)] = 48287, + [SMALL_STATE(1420)] = 48312, + [SMALL_STATE(1421)] = 48327, + [SMALL_STATE(1422)] = 48342, + [SMALL_STATE(1423)] = 48367, + [SMALL_STATE(1424)] = 48390, + [SMALL_STATE(1425)] = 48413, + [SMALL_STATE(1426)] = 48436, + [SMALL_STATE(1427)] = 48459, + [SMALL_STATE(1428)] = 48480, + [SMALL_STATE(1429)] = 48501, + [SMALL_STATE(1430)] = 48524, + [SMALL_STATE(1431)] = 48549, + [SMALL_STATE(1432)] = 48570, + [SMALL_STATE(1433)] = 48593, + [SMALL_STATE(1434)] = 48616, + [SMALL_STATE(1435)] = 48639, + [SMALL_STATE(1436)] = 48654, + [SMALL_STATE(1437)] = 48677, + [SMALL_STATE(1438)] = 48700, + [SMALL_STATE(1439)] = 48725, + [SMALL_STATE(1440)] = 48746, + [SMALL_STATE(1441)] = 48769, + [SMALL_STATE(1442)] = 48794, + [SMALL_STATE(1443)] = 48817, + [SMALL_STATE(1444)] = 48840, + [SMALL_STATE(1445)] = 48863, + [SMALL_STATE(1446)] = 48886, + [SMALL_STATE(1447)] = 48907, + [SMALL_STATE(1448)] = 48930, + [SMALL_STATE(1449)] = 48953, + [SMALL_STATE(1450)] = 48980, + [SMALL_STATE(1451)] = 49005, + [SMALL_STATE(1452)] = 49022, + [SMALL_STATE(1453)] = 49045, + [SMALL_STATE(1454)] = 49070, + [SMALL_STATE(1455)] = 49095, + [SMALL_STATE(1456)] = 49118, + [SMALL_STATE(1457)] = 49141, + [SMALL_STATE(1458)] = 49164, + [SMALL_STATE(1459)] = 49189, + [SMALL_STATE(1460)] = 49212, + [SMALL_STATE(1461)] = 49233, + [SMALL_STATE(1462)] = 49254, + [SMALL_STATE(1463)] = 49277, + [SMALL_STATE(1464)] = 49300, + [SMALL_STATE(1465)] = 49325, + [SMALL_STATE(1466)] = 49340, + [SMALL_STATE(1467)] = 49368, + [SMALL_STATE(1468)] = 49396, + [SMALL_STATE(1469)] = 49424, + [SMALL_STATE(1470)] = 49446, + [SMALL_STATE(1471)] = 49466, + [SMALL_STATE(1472)] = 49486, + [SMALL_STATE(1473)] = 49506, + [SMALL_STATE(1474)] = 49532, + [SMALL_STATE(1475)] = 49560, + [SMALL_STATE(1476)] = 49588, + [SMALL_STATE(1477)] = 49616, + [SMALL_STATE(1478)] = 49636, + [SMALL_STATE(1479)] = 49658, + [SMALL_STATE(1480)] = 49673, + [SMALL_STATE(1481)] = 49694, + [SMALL_STATE(1482)] = 49709, + [SMALL_STATE(1483)] = 49726, + [SMALL_STATE(1484)] = 49743, + [SMALL_STATE(1485)] = 49760, + [SMALL_STATE(1486)] = 49777, + [SMALL_STATE(1487)] = 49790, + [SMALL_STATE(1488)] = 49805, + [SMALL_STATE(1489)] = 49824, + [SMALL_STATE(1490)] = 49843, + [SMALL_STATE(1491)] = 49862, + [SMALL_STATE(1492)] = 49877, + [SMALL_STATE(1493)] = 49898, + [SMALL_STATE(1494)] = 49913, + [SMALL_STATE(1495)] = 49930, + [SMALL_STATE(1496)] = 49947, + [SMALL_STATE(1497)] = 49964, + [SMALL_STATE(1498)] = 49981, + [SMALL_STATE(1499)] = 49998, + [SMALL_STATE(1500)] = 50013, + [SMALL_STATE(1501)] = 50028, + [SMALL_STATE(1502)] = 50045, + [SMALL_STATE(1503)] = 50060, + [SMALL_STATE(1504)] = 50077, + [SMALL_STATE(1505)] = 50094, + [SMALL_STATE(1506)] = 50109, + [SMALL_STATE(1507)] = 50124, + [SMALL_STATE(1508)] = 50143, + [SMALL_STATE(1509)] = 50158, + [SMALL_STATE(1510)] = 50175, + [SMALL_STATE(1511)] = 50192, + [SMALL_STATE(1512)] = 50217, + [SMALL_STATE(1513)] = 50238, + [SMALL_STATE(1514)] = 50253, + [SMALL_STATE(1515)] = 50270, + [SMALL_STATE(1516)] = 50291, + [SMALL_STATE(1517)] = 50312, + [SMALL_STATE(1518)] = 50333, + [SMALL_STATE(1519)] = 50350, + [SMALL_STATE(1520)] = 50367, + [SMALL_STATE(1521)] = 50384, + [SMALL_STATE(1522)] = 50399, + [SMALL_STATE(1523)] = 50417, + [SMALL_STATE(1524)] = 50431, + [SMALL_STATE(1525)] = 50449, + [SMALL_STATE(1526)] = 50471, + [SMALL_STATE(1527)] = 50493, + [SMALL_STATE(1528)] = 50515, + [SMALL_STATE(1529)] = 50535, + [SMALL_STATE(1530)] = 50549, + [SMALL_STATE(1531)] = 50571, + [SMALL_STATE(1532)] = 50593, + [SMALL_STATE(1533)] = 50615, + [SMALL_STATE(1534)] = 50637, + [SMALL_STATE(1535)] = 50651, + [SMALL_STATE(1536)] = 50669, + [SMALL_STATE(1537)] = 50691, + [SMALL_STATE(1538)] = 50709, + [SMALL_STATE(1539)] = 50731, + [SMALL_STATE(1540)] = 50745, + [SMALL_STATE(1541)] = 50759, + [SMALL_STATE(1542)] = 50781, + [SMALL_STATE(1543)] = 50799, + [SMALL_STATE(1544)] = 50821, + [SMALL_STATE(1545)] = 50843, + [SMALL_STATE(1546)] = 50865, + [SMALL_STATE(1547)] = 50887, + [SMALL_STATE(1548)] = 50901, + [SMALL_STATE(1549)] = 50923, + [SMALL_STATE(1550)] = 50935, + [SMALL_STATE(1551)] = 50957, + [SMALL_STATE(1552)] = 50979, + [SMALL_STATE(1553)] = 50997, + [SMALL_STATE(1554)] = 51019, + [SMALL_STATE(1555)] = 51041, + [SMALL_STATE(1556)] = 51061, + [SMALL_STATE(1557)] = 51075, + [SMALL_STATE(1558)] = 51097, + [SMALL_STATE(1559)] = 51119, + [SMALL_STATE(1560)] = 51141, + [SMALL_STATE(1561)] = 51159, + [SMALL_STATE(1562)] = 51181, + [SMALL_STATE(1563)] = 51203, + [SMALL_STATE(1564)] = 51225, + [SMALL_STATE(1565)] = 51237, + [SMALL_STATE(1566)] = 51255, + [SMALL_STATE(1567)] = 51277, + [SMALL_STATE(1568)] = 51295, + [SMALL_STATE(1569)] = 51315, + [SMALL_STATE(1570)] = 51333, + [SMALL_STATE(1571)] = 51355, + [SMALL_STATE(1572)] = 51377, + [SMALL_STATE(1573)] = 51399, + [SMALL_STATE(1574)] = 51421, + [SMALL_STATE(1575)] = 51441, + [SMALL_STATE(1576)] = 51453, + [SMALL_STATE(1577)] = 51475, + [SMALL_STATE(1578)] = 51493, + [SMALL_STATE(1579)] = 51515, + [SMALL_STATE(1580)] = 51537, + [SMALL_STATE(1581)] = 51559, + [SMALL_STATE(1582)] = 51577, + [SMALL_STATE(1583)] = 51593, + [SMALL_STATE(1584)] = 51611, + [SMALL_STATE(1585)] = 51629, + [SMALL_STATE(1586)] = 51647, + [SMALL_STATE(1587)] = 51669, + [SMALL_STATE(1588)] = 51683, + [SMALL_STATE(1589)] = 51705, + [SMALL_STATE(1590)] = 51725, + [SMALL_STATE(1591)] = 51740, + [SMALL_STATE(1592)] = 51755, + [SMALL_STATE(1593)] = 51770, + [SMALL_STATE(1594)] = 51789, + [SMALL_STATE(1595)] = 51808, + [SMALL_STATE(1596)] = 51823, + [SMALL_STATE(1597)] = 51840, + [SMALL_STATE(1598)] = 51855, + [SMALL_STATE(1599)] = 51872, + [SMALL_STATE(1600)] = 51889, + [SMALL_STATE(1601)] = 51908, + [SMALL_STATE(1602)] = 51925, + [SMALL_STATE(1603)] = 51942, + [SMALL_STATE(1604)] = 51957, + [SMALL_STATE(1605)] = 51974, + [SMALL_STATE(1606)] = 51987, + [SMALL_STATE(1607)] = 52002, + [SMALL_STATE(1608)] = 52017, + [SMALL_STATE(1609)] = 52032, + [SMALL_STATE(1610)] = 52049, + [SMALL_STATE(1611)] = 52066, + [SMALL_STATE(1612)] = 52081, + [SMALL_STATE(1613)] = 52100, + [SMALL_STATE(1614)] = 52117, + [SMALL_STATE(1615)] = 52136, + [SMALL_STATE(1616)] = 52153, + [SMALL_STATE(1617)] = 52170, + [SMALL_STATE(1618)] = 52187, + [SMALL_STATE(1619)] = 52206, + [SMALL_STATE(1620)] = 52219, + [SMALL_STATE(1621)] = 52234, + [SMALL_STATE(1622)] = 52253, + [SMALL_STATE(1623)] = 52272, + [SMALL_STATE(1624)] = 52287, + [SMALL_STATE(1625)] = 52302, + [SMALL_STATE(1626)] = 52321, + [SMALL_STATE(1627)] = 52338, + [SMALL_STATE(1628)] = 52353, + [SMALL_STATE(1629)] = 52372, + [SMALL_STATE(1630)] = 52391, + [SMALL_STATE(1631)] = 52406, + [SMALL_STATE(1632)] = 52425, + [SMALL_STATE(1633)] = 52442, + [SMALL_STATE(1634)] = 52459, + [SMALL_STATE(1635)] = 52474, + [SMALL_STATE(1636)] = 52489, + [SMALL_STATE(1637)] = 52504, + [SMALL_STATE(1638)] = 52521, + [SMALL_STATE(1639)] = 52540, + [SMALL_STATE(1640)] = 52555, + [SMALL_STATE(1641)] = 52570, + [SMALL_STATE(1642)] = 52587, + [SMALL_STATE(1643)] = 52606, + [SMALL_STATE(1644)] = 52621, + [SMALL_STATE(1645)] = 52632, + [SMALL_STATE(1646)] = 52647, + [SMALL_STATE(1647)] = 52658, + [SMALL_STATE(1648)] = 52669, + [SMALL_STATE(1649)] = 52686, + [SMALL_STATE(1650)] = 52701, + [SMALL_STATE(1651)] = 52712, + [SMALL_STATE(1652)] = 52731, + [SMALL_STATE(1653)] = 52750, + [SMALL_STATE(1654)] = 52767, + [SMALL_STATE(1655)] = 52784, + [SMALL_STATE(1656)] = 52801, + [SMALL_STATE(1657)] = 52820, + [SMALL_STATE(1658)] = 52835, + [SMALL_STATE(1659)] = 52852, + [SMALL_STATE(1660)] = 52871, + [SMALL_STATE(1661)] = 52886, + [SMALL_STATE(1662)] = 52905, + [SMALL_STATE(1663)] = 52922, + [SMALL_STATE(1664)] = 52937, + [SMALL_STATE(1665)] = 52952, + [SMALL_STATE(1666)] = 52967, + [SMALL_STATE(1667)] = 52982, + [SMALL_STATE(1668)] = 52999, + [SMALL_STATE(1669)] = 53014, + [SMALL_STATE(1670)] = 53033, + [SMALL_STATE(1671)] = 53048, + [SMALL_STATE(1672)] = 53063, + [SMALL_STATE(1673)] = 53078, + [SMALL_STATE(1674)] = 53093, + [SMALL_STATE(1675)] = 53104, + [SMALL_STATE(1676)] = 53121, + [SMALL_STATE(1677)] = 53138, + [SMALL_STATE(1678)] = 53151, + [SMALL_STATE(1679)] = 53170, + [SMALL_STATE(1680)] = 53185, + [SMALL_STATE(1681)] = 53204, + [SMALL_STATE(1682)] = 53219, + [SMALL_STATE(1683)] = 53234, + [SMALL_STATE(1684)] = 53249, + [SMALL_STATE(1685)] = 53265, + [SMALL_STATE(1686)] = 53279, + [SMALL_STATE(1687)] = 53289, + [SMALL_STATE(1688)] = 53299, + [SMALL_STATE(1689)] = 53309, + [SMALL_STATE(1690)] = 53323, + [SMALL_STATE(1691)] = 53333, + [SMALL_STATE(1692)] = 53347, + [SMALL_STATE(1693)] = 53361, + [SMALL_STATE(1694)] = 53371, + [SMALL_STATE(1695)] = 53385, + [SMALL_STATE(1696)] = 53401, + [SMALL_STATE(1697)] = 53415, + [SMALL_STATE(1698)] = 53429, + [SMALL_STATE(1699)] = 53445, + [SMALL_STATE(1700)] = 53459, + [SMALL_STATE(1701)] = 53475, + [SMALL_STATE(1702)] = 53485, + [SMALL_STATE(1703)] = 53501, + [SMALL_STATE(1704)] = 53517, + [SMALL_STATE(1705)] = 53527, + [SMALL_STATE(1706)] = 53537, + [SMALL_STATE(1707)] = 53553, + [SMALL_STATE(1708)] = 53569, + [SMALL_STATE(1709)] = 53585, + [SMALL_STATE(1710)] = 53599, + [SMALL_STATE(1711)] = 53615, + [SMALL_STATE(1712)] = 53631, + [SMALL_STATE(1713)] = 53647, + [SMALL_STATE(1714)] = 53663, + [SMALL_STATE(1715)] = 53679, + [SMALL_STATE(1716)] = 53695, + [SMALL_STATE(1717)] = 53711, + [SMALL_STATE(1718)] = 53727, + [SMALL_STATE(1719)] = 53741, + [SMALL_STATE(1720)] = 53751, + [SMALL_STATE(1721)] = 53765, + [SMALL_STATE(1722)] = 53779, + [SMALL_STATE(1723)] = 53795, + [SMALL_STATE(1724)] = 53811, + [SMALL_STATE(1725)] = 53821, + [SMALL_STATE(1726)] = 53835, + [SMALL_STATE(1727)] = 53849, + [SMALL_STATE(1728)] = 53865, + [SMALL_STATE(1729)] = 53879, + [SMALL_STATE(1730)] = 53889, + [SMALL_STATE(1731)] = 53905, + [SMALL_STATE(1732)] = 53919, + [SMALL_STATE(1733)] = 53933, + [SMALL_STATE(1734)] = 53949, + [SMALL_STATE(1735)] = 53959, + [SMALL_STATE(1736)] = 53975, + [SMALL_STATE(1737)] = 53985, + [SMALL_STATE(1738)] = 53999, + [SMALL_STATE(1739)] = 54015, + [SMALL_STATE(1740)] = 54025, + [SMALL_STATE(1741)] = 54039, + [SMALL_STATE(1742)] = 54055, + [SMALL_STATE(1743)] = 54069, + [SMALL_STATE(1744)] = 54085, + [SMALL_STATE(1745)] = 54099, + [SMALL_STATE(1746)] = 54113, + [SMALL_STATE(1747)] = 54127, + [SMALL_STATE(1748)] = 54141, + [SMALL_STATE(1749)] = 54157, + [SMALL_STATE(1750)] = 54171, + [SMALL_STATE(1751)] = 54187, + [SMALL_STATE(1752)] = 54203, + [SMALL_STATE(1753)] = 54219, + [SMALL_STATE(1754)] = 54233, + [SMALL_STATE(1755)] = 54247, + [SMALL_STATE(1756)] = 54263, + [SMALL_STATE(1757)] = 54277, + [SMALL_STATE(1758)] = 54289, + [SMALL_STATE(1759)] = 54305, + [SMALL_STATE(1760)] = 54321, + [SMALL_STATE(1761)] = 54337, + [SMALL_STATE(1762)] = 54351, + [SMALL_STATE(1763)] = 54367, + [SMALL_STATE(1764)] = 54381, + [SMALL_STATE(1765)] = 54393, + [SMALL_STATE(1766)] = 54403, + [SMALL_STATE(1767)] = 54417, + [SMALL_STATE(1768)] = 54431, + [SMALL_STATE(1769)] = 54447, + [SMALL_STATE(1770)] = 54461, + [SMALL_STATE(1771)] = 54477, + [SMALL_STATE(1772)] = 54491, + [SMALL_STATE(1773)] = 54505, + [SMALL_STATE(1774)] = 54519, + [SMALL_STATE(1775)] = 54535, + [SMALL_STATE(1776)] = 54549, + [SMALL_STATE(1777)] = 54563, + [SMALL_STATE(1778)] = 54577, + [SMALL_STATE(1779)] = 54591, + [SMALL_STATE(1780)] = 54605, + [SMALL_STATE(1781)] = 54619, + [SMALL_STATE(1782)] = 54633, + [SMALL_STATE(1783)] = 54647, + [SMALL_STATE(1784)] = 54661, + [SMALL_STATE(1785)] = 54675, + [SMALL_STATE(1786)] = 54691, + [SMALL_STATE(1787)] = 54705, + [SMALL_STATE(1788)] = 54719, + [SMALL_STATE(1789)] = 54735, + [SMALL_STATE(1790)] = 54751, + [SMALL_STATE(1791)] = 54767, + [SMALL_STATE(1792)] = 54783, + [SMALL_STATE(1793)] = 54799, + [SMALL_STATE(1794)] = 54815, + [SMALL_STATE(1795)] = 54829, + [SMALL_STATE(1796)] = 54843, + [SMALL_STATE(1797)] = 54859, + [SMALL_STATE(1798)] = 54871, + [SMALL_STATE(1799)] = 54885, + [SMALL_STATE(1800)] = 54901, + [SMALL_STATE(1801)] = 54917, + [SMALL_STATE(1802)] = 54933, + [SMALL_STATE(1803)] = 54949, + [SMALL_STATE(1804)] = 54965, + [SMALL_STATE(1805)] = 54979, + [SMALL_STATE(1806)] = 54993, + [SMALL_STATE(1807)] = 55009, + [SMALL_STATE(1808)] = 55025, + [SMALL_STATE(1809)] = 55037, + [SMALL_STATE(1810)] = 55047, + [SMALL_STATE(1811)] = 55063, + [SMALL_STATE(1812)] = 55077, + [SMALL_STATE(1813)] = 55093, + [SMALL_STATE(1814)] = 55107, + [SMALL_STATE(1815)] = 55121, + [SMALL_STATE(1816)] = 55137, + [SMALL_STATE(1817)] = 55151, + [SMALL_STATE(1818)] = 55167, + [SMALL_STATE(1819)] = 55181, + [SMALL_STATE(1820)] = 55195, + [SMALL_STATE(1821)] = 55209, + [SMALL_STATE(1822)] = 55223, + [SMALL_STATE(1823)] = 55237, + [SMALL_STATE(1824)] = 55249, + [SMALL_STATE(1825)] = 55262, + [SMALL_STATE(1826)] = 55275, + [SMALL_STATE(1827)] = 55286, + [SMALL_STATE(1828)] = 55297, + [SMALL_STATE(1829)] = 55308, + [SMALL_STATE(1830)] = 55319, + [SMALL_STATE(1831)] = 55332, + [SMALL_STATE(1832)] = 55341, + [SMALL_STATE(1833)] = 55352, + [SMALL_STATE(1834)] = 55363, + [SMALL_STATE(1835)] = 55374, + [SMALL_STATE(1836)] = 55385, + [SMALL_STATE(1837)] = 55398, + [SMALL_STATE(1838)] = 55409, + [SMALL_STATE(1839)] = 55420, + [SMALL_STATE(1840)] = 55431, + [SMALL_STATE(1841)] = 55440, + [SMALL_STATE(1842)] = 55453, + [SMALL_STATE(1843)] = 55464, + [SMALL_STATE(1844)] = 55475, + [SMALL_STATE(1845)] = 55488, + [SMALL_STATE(1846)] = 55499, + [SMALL_STATE(1847)] = 55510, + [SMALL_STATE(1848)] = 55523, + [SMALL_STATE(1849)] = 55536, + [SMALL_STATE(1850)] = 55549, + [SMALL_STATE(1851)] = 55560, + [SMALL_STATE(1852)] = 55571, + [SMALL_STATE(1853)] = 55582, + [SMALL_STATE(1854)] = 55595, + [SMALL_STATE(1855)] = 55606, + [SMALL_STATE(1856)] = 55617, + [SMALL_STATE(1857)] = 55630, + [SMALL_STATE(1858)] = 55641, + [SMALL_STATE(1859)] = 55652, + [SMALL_STATE(1860)] = 55663, + [SMALL_STATE(1861)] = 55674, + [SMALL_STATE(1862)] = 55687, + [SMALL_STATE(1863)] = 55700, + [SMALL_STATE(1864)] = 55711, + [SMALL_STATE(1865)] = 55724, + [SMALL_STATE(1866)] = 55733, + [SMALL_STATE(1867)] = 55744, + [SMALL_STATE(1868)] = 55757, + [SMALL_STATE(1869)] = 55770, + [SMALL_STATE(1870)] = 55783, + [SMALL_STATE(1871)] = 55796, + [SMALL_STATE(1872)] = 55809, + [SMALL_STATE(1873)] = 55820, + [SMALL_STATE(1874)] = 55829, + [SMALL_STATE(1875)] = 55840, + [SMALL_STATE(1876)] = 55853, + [SMALL_STATE(1877)] = 55864, + [SMALL_STATE(1878)] = 55875, + [SMALL_STATE(1879)] = 55886, + [SMALL_STATE(1880)] = 55897, + [SMALL_STATE(1881)] = 55908, + [SMALL_STATE(1882)] = 55919, + [SMALL_STATE(1883)] = 55932, + [SMALL_STATE(1884)] = 55943, + [SMALL_STATE(1885)] = 55954, + [SMALL_STATE(1886)] = 55965, + [SMALL_STATE(1887)] = 55976, + [SMALL_STATE(1888)] = 55985, + [SMALL_STATE(1889)] = 55996, + [SMALL_STATE(1890)] = 56009, + [SMALL_STATE(1891)] = 56020, + [SMALL_STATE(1892)] = 56033, + [SMALL_STATE(1893)] = 56046, + [SMALL_STATE(1894)] = 56059, + [SMALL_STATE(1895)] = 56070, + [SMALL_STATE(1896)] = 56081, + [SMALL_STATE(1897)] = 56092, + [SMALL_STATE(1898)] = 56103, + [SMALL_STATE(1899)] = 56116, + [SMALL_STATE(1900)] = 56127, + [SMALL_STATE(1901)] = 56138, + [SMALL_STATE(1902)] = 56149, + [SMALL_STATE(1903)] = 56162, + [SMALL_STATE(1904)] = 56173, + [SMALL_STATE(1905)] = 56186, + [SMALL_STATE(1906)] = 56197, + [SMALL_STATE(1907)] = 56206, + [SMALL_STATE(1908)] = 56217, + [SMALL_STATE(1909)] = 56230, + [SMALL_STATE(1910)] = 56243, + [SMALL_STATE(1911)] = 56256, + [SMALL_STATE(1912)] = 56269, + [SMALL_STATE(1913)] = 56282, + [SMALL_STATE(1914)] = 56295, + [SMALL_STATE(1915)] = 56306, + [SMALL_STATE(1916)] = 56317, + [SMALL_STATE(1917)] = 56330, + [SMALL_STATE(1918)] = 56341, + [SMALL_STATE(1919)] = 56352, + [SMALL_STATE(1920)] = 56365, + [SMALL_STATE(1921)] = 56376, + [SMALL_STATE(1922)] = 56387, + [SMALL_STATE(1923)] = 56398, + [SMALL_STATE(1924)] = 56411, + [SMALL_STATE(1925)] = 56422, + [SMALL_STATE(1926)] = 56431, + [SMALL_STATE(1927)] = 56440, + [SMALL_STATE(1928)] = 56451, + [SMALL_STATE(1929)] = 56460, + [SMALL_STATE(1930)] = 56471, + [SMALL_STATE(1931)] = 56482, + [SMALL_STATE(1932)] = 56493, + [SMALL_STATE(1933)] = 56506, + [SMALL_STATE(1934)] = 56519, + [SMALL_STATE(1935)] = 56528, + [SMALL_STATE(1936)] = 56537, + [SMALL_STATE(1937)] = 56548, + [SMALL_STATE(1938)] = 56559, + [SMALL_STATE(1939)] = 56570, + [SMALL_STATE(1940)] = 56581, + [SMALL_STATE(1941)] = 56594, + [SMALL_STATE(1942)] = 56603, + [SMALL_STATE(1943)] = 56616, + [SMALL_STATE(1944)] = 56625, + [SMALL_STATE(1945)] = 56638, + [SMALL_STATE(1946)] = 56651, + [SMALL_STATE(1947)] = 56662, + [SMALL_STATE(1948)] = 56675, + [SMALL_STATE(1949)] = 56688, + [SMALL_STATE(1950)] = 56699, + [SMALL_STATE(1951)] = 56712, + [SMALL_STATE(1952)] = 56723, + [SMALL_STATE(1953)] = 56734, + [SMALL_STATE(1954)] = 56745, + [SMALL_STATE(1955)] = 56758, + [SMALL_STATE(1956)] = 56769, + [SMALL_STATE(1957)] = 56780, + [SMALL_STATE(1958)] = 56791, + [SMALL_STATE(1959)] = 56800, + [SMALL_STATE(1960)] = 56811, + [SMALL_STATE(1961)] = 56820, + [SMALL_STATE(1962)] = 56833, + [SMALL_STATE(1963)] = 56842, + [SMALL_STATE(1964)] = 56851, + [SMALL_STATE(1965)] = 56860, + [SMALL_STATE(1966)] = 56871, + [SMALL_STATE(1967)] = 56884, + [SMALL_STATE(1968)] = 56897, + [SMALL_STATE(1969)] = 56910, + [SMALL_STATE(1970)] = 56921, + [SMALL_STATE(1971)] = 56934, + [SMALL_STATE(1972)] = 56945, + [SMALL_STATE(1973)] = 56958, + [SMALL_STATE(1974)] = 56971, + [SMALL_STATE(1975)] = 56982, + [SMALL_STATE(1976)] = 56993, + [SMALL_STATE(1977)] = 57006, + [SMALL_STATE(1978)] = 57017, + [SMALL_STATE(1979)] = 57026, + [SMALL_STATE(1980)] = 57039, + [SMALL_STATE(1981)] = 57048, + [SMALL_STATE(1982)] = 57059, + [SMALL_STATE(1983)] = 57072, + [SMALL_STATE(1984)] = 57085, + [SMALL_STATE(1985)] = 57096, + [SMALL_STATE(1986)] = 57107, + [SMALL_STATE(1987)] = 57120, + [SMALL_STATE(1988)] = 57133, + [SMALL_STATE(1989)] = 57146, + [SMALL_STATE(1990)] = 57157, + [SMALL_STATE(1991)] = 57168, + [SMALL_STATE(1992)] = 57179, + [SMALL_STATE(1993)] = 57192, + [SMALL_STATE(1994)] = 57201, + [SMALL_STATE(1995)] = 57212, + [SMALL_STATE(1996)] = 57225, + [SMALL_STATE(1997)] = 57238, + [SMALL_STATE(1998)] = 57249, + [SMALL_STATE(1999)] = 57262, + [SMALL_STATE(2000)] = 57275, + [SMALL_STATE(2001)] = 57288, + [SMALL_STATE(2002)] = 57301, + [SMALL_STATE(2003)] = 57312, + [SMALL_STATE(2004)] = 57325, + [SMALL_STATE(2005)] = 57338, + [SMALL_STATE(2006)] = 57351, + [SMALL_STATE(2007)] = 57364, + [SMALL_STATE(2008)] = 57375, + [SMALL_STATE(2009)] = 57388, + [SMALL_STATE(2010)] = 57401, + [SMALL_STATE(2011)] = 57414, + [SMALL_STATE(2012)] = 57425, + [SMALL_STATE(2013)] = 57436, + [SMALL_STATE(2014)] = 57445, + [SMALL_STATE(2015)] = 57458, + [SMALL_STATE(2016)] = 57469, + [SMALL_STATE(2017)] = 57480, + [SMALL_STATE(2018)] = 57491, + [SMALL_STATE(2019)] = 57504, + [SMALL_STATE(2020)] = 57517, + [SMALL_STATE(2021)] = 57530, + [SMALL_STATE(2022)] = 57543, + [SMALL_STATE(2023)] = 57554, + [SMALL_STATE(2024)] = 57567, + [SMALL_STATE(2025)] = 57578, + [SMALL_STATE(2026)] = 57589, + [SMALL_STATE(2027)] = 57598, + [SMALL_STATE(2028)] = 57611, + [SMALL_STATE(2029)] = 57622, + [SMALL_STATE(2030)] = 57635, + [SMALL_STATE(2031)] = 57646, + [SMALL_STATE(2032)] = 57657, + [SMALL_STATE(2033)] = 57666, + [SMALL_STATE(2034)] = 57679, + [SMALL_STATE(2035)] = 57688, + [SMALL_STATE(2036)] = 57701, + [SMALL_STATE(2037)] = 57714, + [SMALL_STATE(2038)] = 57727, + [SMALL_STATE(2039)] = 57738, + [SMALL_STATE(2040)] = 57751, + [SMALL_STATE(2041)] = 57764, + [SMALL_STATE(2042)] = 57775, + [SMALL_STATE(2043)] = 57788, + [SMALL_STATE(2044)] = 57799, + [SMALL_STATE(2045)] = 57812, + [SMALL_STATE(2046)] = 57825, + [SMALL_STATE(2047)] = 57836, + [SMALL_STATE(2048)] = 57847, + [SMALL_STATE(2049)] = 57860, + [SMALL_STATE(2050)] = 57871, + [SMALL_STATE(2051)] = 57884, + [SMALL_STATE(2052)] = 57897, + [SMALL_STATE(2053)] = 57908, + [SMALL_STATE(2054)] = 57919, + [SMALL_STATE(2055)] = 57932, + [SMALL_STATE(2056)] = 57943, + [SMALL_STATE(2057)] = 57954, + [SMALL_STATE(2058)] = 57965, + [SMALL_STATE(2059)] = 57978, + [SMALL_STATE(2060)] = 57991, + [SMALL_STATE(2061)] = 58002, + [SMALL_STATE(2062)] = 58015, + [SMALL_STATE(2063)] = 58028, + [SMALL_STATE(2064)] = 58041, + [SMALL_STATE(2065)] = 58054, + [SMALL_STATE(2066)] = 58065, + [SMALL_STATE(2067)] = 58076, + [SMALL_STATE(2068)] = 58087, + [SMALL_STATE(2069)] = 58097, + [SMALL_STATE(2070)] = 58107, + [SMALL_STATE(2071)] = 58117, + [SMALL_STATE(2072)] = 58125, + [SMALL_STATE(2073)] = 58135, + [SMALL_STATE(2074)] = 58145, + [SMALL_STATE(2075)] = 58155, + [SMALL_STATE(2076)] = 58163, + [SMALL_STATE(2077)] = 58173, + [SMALL_STATE(2078)] = 58183, + [SMALL_STATE(2079)] = 58193, + [SMALL_STATE(2080)] = 58203, + [SMALL_STATE(2081)] = 58211, + [SMALL_STATE(2082)] = 58219, + [SMALL_STATE(2083)] = 58229, + [SMALL_STATE(2084)] = 58239, + [SMALL_STATE(2085)] = 58249, + [SMALL_STATE(2086)] = 58259, + [SMALL_STATE(2087)] = 58269, + [SMALL_STATE(2088)] = 58279, + [SMALL_STATE(2089)] = 58289, + [SMALL_STATE(2090)] = 58299, + [SMALL_STATE(2091)] = 58309, + [SMALL_STATE(2092)] = 58317, + [SMALL_STATE(2093)] = 58327, + [SMALL_STATE(2094)] = 58337, + [SMALL_STATE(2095)] = 58345, + [SMALL_STATE(2096)] = 58355, + [SMALL_STATE(2097)] = 58363, + [SMALL_STATE(2098)] = 58373, + [SMALL_STATE(2099)] = 58383, + [SMALL_STATE(2100)] = 58393, + [SMALL_STATE(2101)] = 58401, + [SMALL_STATE(2102)] = 58411, + [SMALL_STATE(2103)] = 58419, + [SMALL_STATE(2104)] = 58429, + [SMALL_STATE(2105)] = 58437, + [SMALL_STATE(2106)] = 58445, + [SMALL_STATE(2107)] = 58453, + [SMALL_STATE(2108)] = 58463, + [SMALL_STATE(2109)] = 58473, + [SMALL_STATE(2110)] = 58481, + [SMALL_STATE(2111)] = 58491, + [SMALL_STATE(2112)] = 58501, + [SMALL_STATE(2113)] = 58509, + [SMALL_STATE(2114)] = 58519, + [SMALL_STATE(2115)] = 58529, + [SMALL_STATE(2116)] = 58539, + [SMALL_STATE(2117)] = 58547, + [SMALL_STATE(2118)] = 58555, + [SMALL_STATE(2119)] = 58565, + [SMALL_STATE(2120)] = 58573, + [SMALL_STATE(2121)] = 58583, + [SMALL_STATE(2122)] = 58593, + [SMALL_STATE(2123)] = 58601, + [SMALL_STATE(2124)] = 58611, + [SMALL_STATE(2125)] = 58619, + [SMALL_STATE(2126)] = 58627, + [SMALL_STATE(2127)] = 58635, + [SMALL_STATE(2128)] = 58645, + [SMALL_STATE(2129)] = 58655, + [SMALL_STATE(2130)] = 58665, + [SMALL_STATE(2131)] = 58673, + [SMALL_STATE(2132)] = 58683, + [SMALL_STATE(2133)] = 58693, + [SMALL_STATE(2134)] = 58703, + [SMALL_STATE(2135)] = 58711, + [SMALL_STATE(2136)] = 58719, + [SMALL_STATE(2137)] = 58729, + [SMALL_STATE(2138)] = 58737, + [SMALL_STATE(2139)] = 58747, + [SMALL_STATE(2140)] = 58757, + [SMALL_STATE(2141)] = 58767, + [SMALL_STATE(2142)] = 58777, + [SMALL_STATE(2143)] = 58787, + [SMALL_STATE(2144)] = 58797, + [SMALL_STATE(2145)] = 58807, + [SMALL_STATE(2146)] = 58817, + [SMALL_STATE(2147)] = 58827, + [SMALL_STATE(2148)] = 58837, + [SMALL_STATE(2149)] = 58847, + [SMALL_STATE(2150)] = 58857, + [SMALL_STATE(2151)] = 58867, + [SMALL_STATE(2152)] = 58877, + [SMALL_STATE(2153)] = 58887, + [SMALL_STATE(2154)] = 58895, + [SMALL_STATE(2155)] = 58905, + [SMALL_STATE(2156)] = 58915, + [SMALL_STATE(2157)] = 58925, + [SMALL_STATE(2158)] = 58935, + [SMALL_STATE(2159)] = 58943, + [SMALL_STATE(2160)] = 58953, + [SMALL_STATE(2161)] = 58961, + [SMALL_STATE(2162)] = 58969, + [SMALL_STATE(2163)] = 58979, + [SMALL_STATE(2164)] = 58989, + [SMALL_STATE(2165)] = 58999, + [SMALL_STATE(2166)] = 59007, + [SMALL_STATE(2167)] = 59015, + [SMALL_STATE(2168)] = 59025, + [SMALL_STATE(2169)] = 59035, + [SMALL_STATE(2170)] = 59045, + [SMALL_STATE(2171)] = 59053, + [SMALL_STATE(2172)] = 59061, + [SMALL_STATE(2173)] = 59071, + [SMALL_STATE(2174)] = 59079, + [SMALL_STATE(2175)] = 59087, + [SMALL_STATE(2176)] = 59095, + [SMALL_STATE(2177)] = 59105, + [SMALL_STATE(2178)] = 59113, + [SMALL_STATE(2179)] = 59123, + [SMALL_STATE(2180)] = 59133, + [SMALL_STATE(2181)] = 59143, + [SMALL_STATE(2182)] = 59153, + [SMALL_STATE(2183)] = 59163, + [SMALL_STATE(2184)] = 59173, + [SMALL_STATE(2185)] = 59183, + [SMALL_STATE(2186)] = 59193, + [SMALL_STATE(2187)] = 59203, + [SMALL_STATE(2188)] = 59211, + [SMALL_STATE(2189)] = 59221, + [SMALL_STATE(2190)] = 59229, + [SMALL_STATE(2191)] = 59237, + [SMALL_STATE(2192)] = 59245, + [SMALL_STATE(2193)] = 59253, + [SMALL_STATE(2194)] = 59261, + [SMALL_STATE(2195)] = 59271, + [SMALL_STATE(2196)] = 59279, + [SMALL_STATE(2197)] = 59289, + [SMALL_STATE(2198)] = 59297, + [SMALL_STATE(2199)] = 59307, + [SMALL_STATE(2200)] = 59315, + [SMALL_STATE(2201)] = 59323, + [SMALL_STATE(2202)] = 59331, + [SMALL_STATE(2203)] = 59339, + [SMALL_STATE(2204)] = 59347, + [SMALL_STATE(2205)] = 59357, + [SMALL_STATE(2206)] = 59367, + [SMALL_STATE(2207)] = 59377, + [SMALL_STATE(2208)] = 59385, + [SMALL_STATE(2209)] = 59395, + [SMALL_STATE(2210)] = 59403, + [SMALL_STATE(2211)] = 59413, + [SMALL_STATE(2212)] = 59423, + [SMALL_STATE(2213)] = 59431, + [SMALL_STATE(2214)] = 59439, + [SMALL_STATE(2215)] = 59447, + [SMALL_STATE(2216)] = 59457, + [SMALL_STATE(2217)] = 59465, + [SMALL_STATE(2218)] = 59475, + [SMALL_STATE(2219)] = 59483, + [SMALL_STATE(2220)] = 59493, + [SMALL_STATE(2221)] = 59501, + [SMALL_STATE(2222)] = 59509, + [SMALL_STATE(2223)] = 59519, + [SMALL_STATE(2224)] = 59527, + [SMALL_STATE(2225)] = 59537, + [SMALL_STATE(2226)] = 59547, + [SMALL_STATE(2227)] = 59555, + [SMALL_STATE(2228)] = 59565, + [SMALL_STATE(2229)] = 59575, + [SMALL_STATE(2230)] = 59585, + [SMALL_STATE(2231)] = 59595, + [SMALL_STATE(2232)] = 59605, + [SMALL_STATE(2233)] = 59613, + [SMALL_STATE(2234)] = 59623, + [SMALL_STATE(2235)] = 59633, + [SMALL_STATE(2236)] = 59641, + [SMALL_STATE(2237)] = 59649, + [SMALL_STATE(2238)] = 59659, + [SMALL_STATE(2239)] = 59667, + [SMALL_STATE(2240)] = 59675, + [SMALL_STATE(2241)] = 59683, + [SMALL_STATE(2242)] = 59693, + [SMALL_STATE(2243)] = 59703, + [SMALL_STATE(2244)] = 59713, + [SMALL_STATE(2245)] = 59723, + [SMALL_STATE(2246)] = 59733, + [SMALL_STATE(2247)] = 59743, + [SMALL_STATE(2248)] = 59751, + [SMALL_STATE(2249)] = 59761, + [SMALL_STATE(2250)] = 59771, + [SMALL_STATE(2251)] = 59779, + [SMALL_STATE(2252)] = 59789, + [SMALL_STATE(2253)] = 59799, + [SMALL_STATE(2254)] = 59809, + [SMALL_STATE(2255)] = 59817, + [SMALL_STATE(2256)] = 59825, + [SMALL_STATE(2257)] = 59833, + [SMALL_STATE(2258)] = 59843, + [SMALL_STATE(2259)] = 59853, + [SMALL_STATE(2260)] = 59863, + [SMALL_STATE(2261)] = 59871, + [SMALL_STATE(2262)] = 59881, + [SMALL_STATE(2263)] = 59891, + [SMALL_STATE(2264)] = 59901, + [SMALL_STATE(2265)] = 59911, + [SMALL_STATE(2266)] = 59921, + [SMALL_STATE(2267)] = 59929, + [SMALL_STATE(2268)] = 59939, + [SMALL_STATE(2269)] = 59949, + [SMALL_STATE(2270)] = 59957, + [SMALL_STATE(2271)] = 59965, + [SMALL_STATE(2272)] = 59975, + [SMALL_STATE(2273)] = 59983, + [SMALL_STATE(2274)] = 59993, + [SMALL_STATE(2275)] = 60001, + [SMALL_STATE(2276)] = 60011, + [SMALL_STATE(2277)] = 60019, + [SMALL_STATE(2278)] = 60027, + [SMALL_STATE(2279)] = 60035, + [SMALL_STATE(2280)] = 60043, + [SMALL_STATE(2281)] = 60051, + [SMALL_STATE(2282)] = 60061, + [SMALL_STATE(2283)] = 60069, + [SMALL_STATE(2284)] = 60079, + [SMALL_STATE(2285)] = 60087, + [SMALL_STATE(2286)] = 60097, + [SMALL_STATE(2287)] = 60105, + [SMALL_STATE(2288)] = 60115, + [SMALL_STATE(2289)] = 60123, + [SMALL_STATE(2290)] = 60133, + [SMALL_STATE(2291)] = 60143, + [SMALL_STATE(2292)] = 60153, + [SMALL_STATE(2293)] = 60163, + [SMALL_STATE(2294)] = 60173, + [SMALL_STATE(2295)] = 60183, + [SMALL_STATE(2296)] = 60193, + [SMALL_STATE(2297)] = 60203, + [SMALL_STATE(2298)] = 60213, + [SMALL_STATE(2299)] = 60223, + [SMALL_STATE(2300)] = 60233, + [SMALL_STATE(2301)] = 60243, + [SMALL_STATE(2302)] = 60253, + [SMALL_STATE(2303)] = 60263, + [SMALL_STATE(2304)] = 60273, + [SMALL_STATE(2305)] = 60283, + [SMALL_STATE(2306)] = 60293, + [SMALL_STATE(2307)] = 60301, + [SMALL_STATE(2308)] = 60311, + [SMALL_STATE(2309)] = 60321, + [SMALL_STATE(2310)] = 60331, + [SMALL_STATE(2311)] = 60341, + [SMALL_STATE(2312)] = 60349, + [SMALL_STATE(2313)] = 60359, + [SMALL_STATE(2314)] = 60369, + [SMALL_STATE(2315)] = 60377, + [SMALL_STATE(2316)] = 60385, + [SMALL_STATE(2317)] = 60393, + [SMALL_STATE(2318)] = 60401, + [SMALL_STATE(2319)] = 60411, + [SMALL_STATE(2320)] = 60421, + [SMALL_STATE(2321)] = 60428, + [SMALL_STATE(2322)] = 60435, + [SMALL_STATE(2323)] = 60442, + [SMALL_STATE(2324)] = 60449, + [SMALL_STATE(2325)] = 60456, + [SMALL_STATE(2326)] = 60463, + [SMALL_STATE(2327)] = 60470, + [SMALL_STATE(2328)] = 60477, + [SMALL_STATE(2329)] = 60484, + [SMALL_STATE(2330)] = 60491, + [SMALL_STATE(2331)] = 60498, + [SMALL_STATE(2332)] = 60505, + [SMALL_STATE(2333)] = 60512, + [SMALL_STATE(2334)] = 60519, + [SMALL_STATE(2335)] = 60526, + [SMALL_STATE(2336)] = 60533, + [SMALL_STATE(2337)] = 60540, + [SMALL_STATE(2338)] = 60547, + [SMALL_STATE(2339)] = 60554, + [SMALL_STATE(2340)] = 60561, + [SMALL_STATE(2341)] = 60568, + [SMALL_STATE(2342)] = 60575, + [SMALL_STATE(2343)] = 60582, + [SMALL_STATE(2344)] = 60589, + [SMALL_STATE(2345)] = 60596, + [SMALL_STATE(2346)] = 60603, + [SMALL_STATE(2347)] = 60610, + [SMALL_STATE(2348)] = 60617, + [SMALL_STATE(2349)] = 60624, + [SMALL_STATE(2350)] = 60631, + [SMALL_STATE(2351)] = 60638, + [SMALL_STATE(2352)] = 60645, + [SMALL_STATE(2353)] = 60652, + [SMALL_STATE(2354)] = 60659, + [SMALL_STATE(2355)] = 60666, + [SMALL_STATE(2356)] = 60673, + [SMALL_STATE(2357)] = 60680, + [SMALL_STATE(2358)] = 60687, + [SMALL_STATE(2359)] = 60694, + [SMALL_STATE(2360)] = 60701, + [SMALL_STATE(2361)] = 60708, + [SMALL_STATE(2362)] = 60715, + [SMALL_STATE(2363)] = 60722, + [SMALL_STATE(2364)] = 60729, + [SMALL_STATE(2365)] = 60736, + [SMALL_STATE(2366)] = 60743, + [SMALL_STATE(2367)] = 60750, + [SMALL_STATE(2368)] = 60757, + [SMALL_STATE(2369)] = 60764, + [SMALL_STATE(2370)] = 60771, + [SMALL_STATE(2371)] = 60778, + [SMALL_STATE(2372)] = 60785, + [SMALL_STATE(2373)] = 60792, + [SMALL_STATE(2374)] = 60799, + [SMALL_STATE(2375)] = 60806, + [SMALL_STATE(2376)] = 60813, + [SMALL_STATE(2377)] = 60820, + [SMALL_STATE(2378)] = 60827, + [SMALL_STATE(2379)] = 60834, + [SMALL_STATE(2380)] = 60841, + [SMALL_STATE(2381)] = 60848, + [SMALL_STATE(2382)] = 60855, + [SMALL_STATE(2383)] = 60862, + [SMALL_STATE(2384)] = 60869, + [SMALL_STATE(2385)] = 60876, + [SMALL_STATE(2386)] = 60883, + [SMALL_STATE(2387)] = 60890, + [SMALL_STATE(2388)] = 60897, + [SMALL_STATE(2389)] = 60904, + [SMALL_STATE(2390)] = 60911, + [SMALL_STATE(2391)] = 60918, + [SMALL_STATE(2392)] = 60925, + [SMALL_STATE(2393)] = 60932, + [SMALL_STATE(2394)] = 60939, + [SMALL_STATE(2395)] = 60946, + [SMALL_STATE(2396)] = 60953, + [SMALL_STATE(2397)] = 60960, + [SMALL_STATE(2398)] = 60967, + [SMALL_STATE(2399)] = 60974, + [SMALL_STATE(2400)] = 60981, + [SMALL_STATE(2401)] = 60988, + [SMALL_STATE(2402)] = 60995, + [SMALL_STATE(2403)] = 61002, + [SMALL_STATE(2404)] = 61009, + [SMALL_STATE(2405)] = 61016, + [SMALL_STATE(2406)] = 61023, + [SMALL_STATE(2407)] = 61030, + [SMALL_STATE(2408)] = 61037, + [SMALL_STATE(2409)] = 61044, + [SMALL_STATE(2410)] = 61051, + [SMALL_STATE(2411)] = 61058, + [SMALL_STATE(2412)] = 61065, + [SMALL_STATE(2413)] = 61072, + [SMALL_STATE(2414)] = 61079, + [SMALL_STATE(2415)] = 61086, + [SMALL_STATE(2416)] = 61093, + [SMALL_STATE(2417)] = 61100, + [SMALL_STATE(2418)] = 61107, + [SMALL_STATE(2419)] = 61114, + [SMALL_STATE(2420)] = 61121, + [SMALL_STATE(2421)] = 61128, + [SMALL_STATE(2422)] = 61135, + [SMALL_STATE(2423)] = 61142, + [SMALL_STATE(2424)] = 61149, + [SMALL_STATE(2425)] = 61156, + [SMALL_STATE(2426)] = 61163, + [SMALL_STATE(2427)] = 61170, + [SMALL_STATE(2428)] = 61177, + [SMALL_STATE(2429)] = 61184, + [SMALL_STATE(2430)] = 61191, + [SMALL_STATE(2431)] = 61198, + [SMALL_STATE(2432)] = 61205, + [SMALL_STATE(2433)] = 61212, + [SMALL_STATE(2434)] = 61219, + [SMALL_STATE(2435)] = 61226, + [SMALL_STATE(2436)] = 61233, + [SMALL_STATE(2437)] = 61240, + [SMALL_STATE(2438)] = 61247, + [SMALL_STATE(2439)] = 61254, + [SMALL_STATE(2440)] = 61261, + [SMALL_STATE(2441)] = 61268, + [SMALL_STATE(2442)] = 61275, + [SMALL_STATE(2443)] = 61282, + [SMALL_STATE(2444)] = 61289, + [SMALL_STATE(2445)] = 61296, + [SMALL_STATE(2446)] = 61303, + [SMALL_STATE(2447)] = 61310, + [SMALL_STATE(2448)] = 61317, + [SMALL_STATE(2449)] = 61324, + [SMALL_STATE(2450)] = 61331, + [SMALL_STATE(2451)] = 61338, + [SMALL_STATE(2452)] = 61345, + [SMALL_STATE(2453)] = 61352, + [SMALL_STATE(2454)] = 61359, + [SMALL_STATE(2455)] = 61366, + [SMALL_STATE(2456)] = 61373, + [SMALL_STATE(2457)] = 61380, + [SMALL_STATE(2458)] = 61387, + [SMALL_STATE(2459)] = 61394, + [SMALL_STATE(2460)] = 61401, + [SMALL_STATE(2461)] = 61408, + [SMALL_STATE(2462)] = 61415, + [SMALL_STATE(2463)] = 61422, + [SMALL_STATE(2464)] = 61429, + [SMALL_STATE(2465)] = 61436, + [SMALL_STATE(2466)] = 61443, + [SMALL_STATE(2467)] = 61450, + [SMALL_STATE(2468)] = 61457, + [SMALL_STATE(2469)] = 61464, + [SMALL_STATE(2470)] = 61471, + [SMALL_STATE(2471)] = 61478, + [SMALL_STATE(2472)] = 61485, + [SMALL_STATE(2473)] = 61492, + [SMALL_STATE(2474)] = 61499, + [SMALL_STATE(2475)] = 61506, + [SMALL_STATE(2476)] = 61513, + [SMALL_STATE(2477)] = 61520, + [SMALL_STATE(2478)] = 61527, + [SMALL_STATE(2479)] = 61534, + [SMALL_STATE(2480)] = 61541, + [SMALL_STATE(2481)] = 61548, + [SMALL_STATE(2482)] = 61555, + [SMALL_STATE(2483)] = 61562, + [SMALL_STATE(2484)] = 61569, + [SMALL_STATE(2485)] = 61576, + [SMALL_STATE(2486)] = 61583, + [SMALL_STATE(2487)] = 61590, + [SMALL_STATE(2488)] = 61597, + [SMALL_STATE(2489)] = 61604, + [SMALL_STATE(2490)] = 61611, + [SMALL_STATE(2491)] = 61618, + [SMALL_STATE(2492)] = 61625, + [SMALL_STATE(2493)] = 61632, + [SMALL_STATE(2494)] = 61639, + [SMALL_STATE(2495)] = 61646, + [SMALL_STATE(2496)] = 61653, + [SMALL_STATE(2497)] = 61660, + [SMALL_STATE(2498)] = 61667, + [SMALL_STATE(2499)] = 61674, + [SMALL_STATE(2500)] = 61681, + [SMALL_STATE(2501)] = 61688, + [SMALL_STATE(2502)] = 61695, + [SMALL_STATE(2503)] = 61702, + [SMALL_STATE(2504)] = 61709, + [SMALL_STATE(2505)] = 61716, + [SMALL_STATE(2506)] = 61723, + [SMALL_STATE(2507)] = 61730, + [SMALL_STATE(2508)] = 61737, + [SMALL_STATE(2509)] = 61744, + [SMALL_STATE(2510)] = 61751, + [SMALL_STATE(2511)] = 61758, + [SMALL_STATE(2512)] = 61765, + [SMALL_STATE(2513)] = 61772, + [SMALL_STATE(2514)] = 61779, + [SMALL_STATE(2515)] = 61786, + [SMALL_STATE(2516)] = 61793, + [SMALL_STATE(2517)] = 61800, + [SMALL_STATE(2518)] = 61807, + [SMALL_STATE(2519)] = 61814, + [SMALL_STATE(2520)] = 61821, + [SMALL_STATE(2521)] = 61828, + [SMALL_STATE(2522)] = 61835, + [SMALL_STATE(2523)] = 61842, + [SMALL_STATE(2524)] = 61849, + [SMALL_STATE(2525)] = 61856, + [SMALL_STATE(2526)] = 61863, + [SMALL_STATE(2527)] = 61870, + [SMALL_STATE(2528)] = 61877, + [SMALL_STATE(2529)] = 61884, + [SMALL_STATE(2530)] = 61891, + [SMALL_STATE(2531)] = 61898, + [SMALL_STATE(2532)] = 61905, + [SMALL_STATE(2533)] = 61912, + [SMALL_STATE(2534)] = 61919, + [SMALL_STATE(2535)] = 61926, + [SMALL_STATE(2536)] = 61933, + [SMALL_STATE(2537)] = 61940, + [SMALL_STATE(2538)] = 61947, + [SMALL_STATE(2539)] = 61954, + [SMALL_STATE(2540)] = 61961, + [SMALL_STATE(2541)] = 61968, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(783), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(452), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1380), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1826), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1593), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1366), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1418), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1560), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2070), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(54), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2532), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2531), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2528), + [170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2526), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1259), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1281), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1302), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1299), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1710), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(94), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2522), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(201), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2520), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2518), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1053), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2073), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2512), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(200), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(197), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(187), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(260), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2079), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(80), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2508), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2507), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2085), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2086), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2087), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(270), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(272), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(272), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(550), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(276), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(643), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(812), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2503), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(102), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(711), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1384), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2502), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1319), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1830), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1354), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(1599), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(87), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(309), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(310), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(312), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(313), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 122), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 122), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), + [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 122), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 122), + [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), + [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2529), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2159), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2537), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2541), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_repeat1, 2), SHIFT_REPEAT(2138), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php, 1), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php, 2), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(876), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(729), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2345), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2294), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 2), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 2), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 16), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(2233), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(77), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(2233), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(77), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 165), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 165), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 2), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 2), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 151), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 151), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 85), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 85), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 85), SHIFT_REPEAT(2233), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 138), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 138), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 139), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 139), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 50), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 50), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 39), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 39), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 160), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 160), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 82), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 82), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 10), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 10), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 99), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 99), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 160), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 160), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 139), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 139), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 138), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 138), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 159), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 159), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 128), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 128), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 8), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 8), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 84), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 84), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 152), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 152), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 81), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 81), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 39), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 39), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 16), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 16), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 25), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 25), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 16), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 16), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 43), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 43), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 97), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 97), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 137), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 137), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 10), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 10), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 83), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 83), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 16), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 16), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 119), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 119), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 89), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 89), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 2), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 2), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 84), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 84), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 82), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 82), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 16), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 16), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 10), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 10), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 10), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 10), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 39), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 39), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 10), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 10), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 42), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 42), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 58), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 58), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 58), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 58), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 152), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 152), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 97), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 97), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 50), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 50), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 44), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 44), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 43), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 43), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 16), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 16), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 10), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 10), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 92), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 92), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 41), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 41), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 92), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 92), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 130), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 130), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 130), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 130), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 129), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 129), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2408), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 21), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1390), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(711), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1844), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2070), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(96), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2461), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(113), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2458), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1343), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2019), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1662), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 15), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 15), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, .production_id = 125), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, .production_id = 125), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, .production_id = 126), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, .production_id = 126), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 15), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 15), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 15), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 15), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, .production_id = 153), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, .production_id = 153), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, .production_id = 154), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, .production_id = 154), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 88), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 88), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, .production_id = 48), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, .production_id = 48), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, .production_id = 87), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, .production_id = 87), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 86), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 86), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 15), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 15), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, .production_id = 17), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, .production_id = 17), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 166), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 166), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 158), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 158), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 157), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 157), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 156), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 156), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 155), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 155), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 45), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 45), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 41), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 41), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 141), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 141), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 136), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 136), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 135), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 135), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 134), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 134), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 133), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 133), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 132), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 132), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 131), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 131), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 12), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 12), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 16), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 16), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 45), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 45), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 45), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 45), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 45), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 45), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 20), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 20), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 57), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 57), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 64), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 64), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 104), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 104), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 75), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 75), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 103), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 103), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 102), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 102), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 34), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 34), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 94), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 94), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 93), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 93), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 19), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 21), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, .production_id = 54), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1284), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1259), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1281), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1283), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1025), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1280), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1284), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1399), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1517), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1535), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1259), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1281), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1283), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(632), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1280), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1384), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 27), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 143), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 107), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 73), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 109), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 113), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 121), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 161), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 147), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 145), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 49), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 144), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 142), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, .production_id = 127), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 105), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 1), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 120), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 162), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1465), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1399), + [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1517), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), + [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2361), + [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1421), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1420), + [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1435), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1311), + [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1413), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1384), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1391), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(400), + [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1307), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1387), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1317), + [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1655), + [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1387), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_heredoc_body, 2), SHIFT(1317), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(400), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1305), + [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1387), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), + [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1655), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1387), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1384), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1465), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1421), + [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1420), + [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1435), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1313), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1413), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(371), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1320), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1502), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1502), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), + [2815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1626), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 117), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 79), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 25), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 116), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 148), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 118), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 149), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 8), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 80), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 163), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 9), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 167), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 115), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 70), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 80), + [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(288), + [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1359), + [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1359), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1632), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 80), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 150), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 38), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 164), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 150), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 163), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 78), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 6), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 6), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 5), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 5), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 23), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 23), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2517), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2242), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(346), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2221), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 5), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 5), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(2128), + [3256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(81), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3285] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), SHIFT(1288), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), + [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(2128), + [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(81), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 11), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1290), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), + [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), SHIFT_REPEAT(1602), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc_body, 2), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2401), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 85), + [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 85), SHIFT_REPEAT(2231), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 85), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2401), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1398), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1289), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 85), SHIFT_REPEAT(2128), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), + [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2408), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2401), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1285), + [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1286), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 33), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1287), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), + [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1884), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), + [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1378), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2), SHIFT(1288), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), + [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1584), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [3672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1288), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), + [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1882), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1404), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 1), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1511), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), + [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1972), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(153), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, .production_id = 3), + [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1798), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 4), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1616), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 124), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 1), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 13), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(143), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 18), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 24), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 74), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 28), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 29), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 124), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 30), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(271), + [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(154), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 16), + [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 16), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 31), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 35), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 32), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 42), + [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 42), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 46), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 47), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 112), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(155), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 47), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 106), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), SHIFT_REPEAT(1395), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 100), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 51), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(149), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 59), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 61), + [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(147), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 66), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 67), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 47), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(747), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 69), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 71), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 72), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(832), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2088), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 70), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 68), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 65), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2088), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 146), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), + [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), + [4244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2408), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), + [4255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 108), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 110), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 111), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 123), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 9), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 3), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 2), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 14), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 40), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php, 3), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, .production_id = 140), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 101), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 98), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 52), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 90), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 60), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4610] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_php_only_external_scanner_create(void); +void tree_sitter_php_only_external_scanner_destroy(void *); +bool tree_sitter_php_only_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_php_only_external_scanner_serialize(void *, char *); +void tree_sitter_php_only_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef _WIN32 +#define extern __declspec(dllexport) +#endif + +extern const TSLanguage *tree_sitter_php_only(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_name, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_php_only_external_scanner_create, + tree_sitter_php_only_external_scanner_destroy, + tree_sitter_php_only_external_scanner_scan, + tree_sitter_php_only_external_scanner_serialize, + tree_sitter_php_only_external_scanner_deserialize, + }, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/src/scanner.c b/tree-sitter-php-only/src/scanner.c similarity index 97% rename from src/scanner.c rename to tree-sitter-php-only/src/scanner.c index 6899fb41..cf7990b0 100644 --- a/src/scanner.c +++ b/tree-sitter-php-only/src/scanner.c @@ -76,7 +76,6 @@ enum TokenType { EXECUTION_STRING_CHARS_AFTER_VARIABLE, ENCAPSED_STRING_CHARS_HEREDOC, ENCAPSED_STRING_CHARS_AFTER_VARIABLE_HEREDOC, - EOF_TOKEN, HEREDOC_START, HEREDOC_END, NOWDOC_STRING, @@ -526,11 +525,6 @@ bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { if (!scan_whitespace(lexer)) return false; - if (valid_symbols[EOF_TOKEN] && lexer->eof(lexer)) { - lexer->result_symbol = EOF_TOKEN; - return true; - } - if (valid_symbols[HEREDOC_START]) { lexer->result_symbol = HEREDOC_START; Heredoc heredoc; @@ -564,32 +558,32 @@ bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { return false; } -void *tree_sitter_php_external_scanner_create() { +void *tree_sitter_php_only_external_scanner_create() { Scanner *scanner = calloc(1, sizeof(Scanner)); scanner->open_heredocs = vec_new(); return scanner; } -unsigned tree_sitter_php_external_scanner_serialize(void *payload, +unsigned tree_sitter_php_only_external_scanner_serialize(void *payload, char *buffer) { Scanner *scanner = (Scanner *)payload; return serialize(scanner, buffer); } -void tree_sitter_php_external_scanner_deserialize(void *payload, +void tree_sitter_php_only_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { Scanner *scanner = (Scanner *)payload; deserialize(scanner, buffer, length); } -bool tree_sitter_php_external_scanner_scan(void *payload, TSLexer *lexer, +bool tree_sitter_php_only_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { Scanner *scanner = (Scanner *)payload; return scan(scanner, lexer, valid_symbols); } -void tree_sitter_php_external_scanner_destroy(void *payload) { +void tree_sitter_php_only_external_scanner_destroy(void *payload) { Scanner *scanner = (Scanner *)payload; for (size_t i = 0; i < scanner->open_heredocs.len; i++) { STRING_FREE(scanner->open_heredocs.data[i].word); diff --git a/src/tree_sitter/parser.h b/tree-sitter-php-only/src/tree_sitter/parser.h similarity index 100% rename from src/tree_sitter/parser.h rename to tree-sitter-php-only/src/tree_sitter/parser.h diff --git a/test/corpus/bugs.txt b/tree-sitter-php-only/test/corpus/bugs.txt similarity index 50% rename from test/corpus/bugs.txt rename to tree-sitter-php-only/test/corpus/bugs.txt index 6f029837..588fd013 100644 --- a/test/corpus/bugs.txt +++ b/tree-sitter-php-only/test/corpus/bugs.txt @@ -1,42 +1,42 @@ -========================================= +================================================================================ #131: Parse error when using self as constant -========================================= +================================================================================ foo; + } +} + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (interface_declaration + name: (name) + body: (declaration_list + (method_declaration + (visibility_modifier) + name: (name) + parameters: (formal_parameters)))) + (class_declaration + name: (name) + (class_interface_clause + (name)) + body: (declaration_list + (property_declaration + (visibility_modifier) + (property_element + (variable_name + (name)) + (property_initializer + (encapsed_string + (string_value))))) + (method_declaration + (visibility_modifier) + name: (name) + parameters: (formal_parameters) + body: (compound_statement + (return_statement + (member_access_expression + object: (variable_name + (name)) + name: (name)))))))) + +================================================================================ +Use declarations +================================================================================ + +Name = $name; + $GLOBALS['List']->echoName(); + } + + function echoName() { + $GLOBALS['names'][]=$this->Name; + } +} + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (class_declaration + name: (name) + body: (declaration_list + (method_declaration + name: (name) + parameters: (formal_parameters + (simple_parameter + name: (variable_name + (name)))) + body: (compound_statement + (expression_statement + (reference_assignment_expression + left: (subscript_expression + (variable_name + (name)) + (string + (string_value))) + right: (variable_name + (name)))) + (expression_statement + (assignment_expression + left: (member_access_expression + object: (variable_name + (name)) + name: (name)) + right: (variable_name + (name)))) + (expression_statement + (member_call_expression + object: (subscript_expression + (variable_name + (name)) + (string + (string_value))) + name: (name) + arguments: (arguments))))) + (method_declaration + name: (name) + parameters: (formal_parameters) + body: (compound_statement + (expression_statement + (assignment_expression + left: (subscript_expression + (subscript_expression + (variable_name + (name)) + (string + (string_value)))) + right: (member_access_expression + object: (variable_name + (name)) + name: (name))))))))) + +================================================================================ +Class declarations with base classes +================================================================================ + + "value"))] +#[MyAttribute(100 + 200)] +class Thing +{ +} + +new #[ExampleAttribute] class() {}; +#[ExampleAttribute] fn($x) => $x; +$baz = #[ExampleAttribute] function($x) {return $x;}; + +class A { + #[\Assert\All( + new \Assert\NotNull, + new \Assert\Length(min: 5)) + ] + public string $name = ''; + +} + +#[ + A1, + A2(), + A3(0), + A4(x: 1), +] +function a() { +} + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (function_definition + attributes: (attribute_list + (attribute_group + (attribute + (name)))) + name: (name) + parameters: (formal_parameters + (simple_parameter + attributes: (attribute_list + (attribute_group + (attribute + (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_group + (attribute + (name)))) + (const_element + (name) + (string + (string_value)))) + (property_declaration + attributes: (attribute_list + (attribute_group + (attribute + (name)))) + (visibility_modifier) + type: (union_type + (primitive_type)) + (property_element + (variable_name + (name)) + (property_initializer + (string + (string_value))))) + (method_declaration + attributes: (attribute_list + (attribute_group + (attribute + (name) + parameters: (arguments + (argument + (encapsed_string + (string_value))) + (argument + (array_creation_expression + (array_element_initializer + (encapsed_string + (string_value))))))))) + (visibility_modifier) + name: (name) + parameters: (formal_parameters + (simple_parameter + attributes: (attribute_list + (attribute_group + (attribute + (name)))) + name: (variable_name + (name)))) + body: (compound_statement + (comment))))) + (class_declaration + attributes: (attribute_list + (attribute_group + (attribute + (name))) + (attribute_group + (attribute + (qualified_name + (namespace_name_as_prefix + (namespace_name + (name))) + (name)))) + (attribute_group + (attribute + (name) + parameters: (arguments + (argument + (integer))))) + (attribute_group + (attribute + (name) + parameters: (arguments + (argument + (class_constant_access_expression + (name) + (name)))))) + (attribute_group + (attribute + (name) + parameters: (arguments + (argument + (array_creation_expression + (array_element_initializer + (encapsed_string + (string_value)) + (encapsed_string + (string_value)))))))) + (attribute_group + (attribute + (name) + parameters: (arguments + (argument + (binary_expression + left: (integer) + right: (integer))))))) + name: (name) + body: (declaration_list)) + (expression_statement + (object_creation_expression + attributes: (attribute_list + (attribute_group + (attribute + (name)))) + (arguments) + (declaration_list))) + (expression_statement + (arrow_function + attributes: (attribute_list + (attribute_group + (attribute + (name)))) + parameters: (formal_parameters + (simple_parameter + name: (variable_name + (name)))) + body: (variable_name + (name)))) + (expression_statement + (assignment_expression + left: (variable_name + (name)) + right: (anonymous_function_creation_expression + attributes: (attribute_list + (attribute_group + (attribute + (name)))) + parameters: (formal_parameters + (simple_parameter + name: (variable_name + (name)))) + body: (compound_statement + (return_statement + (variable_name + (name))))))) + (class_declaration + name: (name) + body: (declaration_list + (property_declaration + attributes: (attribute_list + (attribute_group + (attribute + (qualified_name + (namespace_name_as_prefix + (namespace_name + (name))) + (name)) + parameters: (arguments + (argument + (object_creation_expression + (qualified_name + (namespace_name_as_prefix + (namespace_name + (name))) + (name)))) + (argument + (object_creation_expression + (qualified_name + (namespace_name_as_prefix + (namespace_name + (name))) + (name)) + (arguments + (argument + name: (name) + (integer))))))))) + (visibility_modifier) + type: (union_type + (primitive_type)) + (property_element + (variable_name + (name)) + (property_initializer + (string + (string_value))))))) + (function_definition + attributes: (attribute_list + (attribute_group + (attribute + (name)) + (attribute + (name) + parameters: (arguments)) + (attribute + (name) + parameters: (arguments + (argument + (integer)))) + (attribute + (name) + parameters: (arguments + (argument + name: (name) + (integer)))))) + name: (name) + parameters: (formal_parameters) + body: (compound_statement))) + +================================================================================ +Enums +================================================================================ + + 'Red', + Suit::Clubs, Suit::Spades => 'Black', + }; + } +} + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (enum_declaration + (name) + (enum_declaration_list)) + (enum_declaration + (name) + (class_interface_clause + (name) + (name)) + (enum_declaration_list)) + (enum_declaration + (name) + (primitive_type) + (class_interface_clause + (name)) + (enum_declaration_list)) + (enum_declaration + (name) + (primitive_type) + (enum_declaration_list + (enum_case + (name) + (string + (string_value))) + (enum_case + (name)) + (enum_case + (name) + (string + (string_value))) + (enum_case + (name) + (string + (string_value))) + (comment) + (method_declaration + (visibility_modifier) + (name) + (formal_parameters) + (union_type + (primitive_type)) + (compound_statement + (return_statement + (match_expression + (parenthesized_expression + (variable_name + (name))) + (match_block + (match_conditional_expression + (match_condition_list + (class_constant_access_expression + (name) + (name)) + (class_constant_access_expression + (name) + (name))) + (string + (string_value))) + (match_conditional_expression + (match_condition_list + (class_constant_access_expression + (name) + (name)) + (class_constant_access_expression + (name) + (name))) + (string + (string_value))))))))))) diff --git a/test/corpus/execution_operator.txt b/tree-sitter-php-only/test/corpus/execution_operator.txt similarity index 95% rename from test/corpus/execution_operator.txt rename to tree-sitter-php-only/test/corpus/execution_operator.txt index d3607250..0790ef25 100644 --- a/test/corpus/execution_operator.txt +++ b/tree-sitter-php-only/test/corpus/execution_operator.txt @@ -7,7 +7,7 @@ Quotes in backticks -------------------------------------------------------------------------------- -(program +(php (php_tag) (expression_statement (shell_command_expression @@ -23,7 +23,7 @@ Escape sequences in backticks -------------------------------------------------------------------------------- -(program +(php (php_tag) (expression_statement (shell_command_expression @@ -45,13 +45,14 @@ $cmd = 'ls'; -------------------------------------------------------------------------------- -(program +(php (php_tag) (expression_statement (assignment_expression (variable_name (name)) - (string (string_value)))) + (string + (string_value)))) (expression_statement (shell_command_expression (variable_name @@ -68,7 +69,7 @@ $obj->cmd = 'ls'; -------------------------------------------------------------------------------- -(program +(php (php_tag) (expression_statement (assignment_expression @@ -83,7 +84,8 @@ $obj->cmd = 'ls'; (variable_name (name)) (name)) - (string (string_value)))) + (string + (string_value)))) (expression_statement (shell_command_expression (member_access_expression @@ -101,7 +103,7 @@ $cmd = array('ls'); -------------------------------------------------------------------------------- -(program +(php (php_tag) (expression_statement (assignment_expression @@ -109,7 +111,8 @@ $cmd = array('ls'); (name)) (array_creation_expression (array_element_initializer - (string (string_value)))))) + (string + (string_value)))))) (expression_statement (shell_command_expression (subscript_expression @@ -127,13 +130,14 @@ $cmd = 'ls'; -------------------------------------------------------------------------------- -(program +(php (php_tag) (expression_statement (assignment_expression (variable_name (name)) - (string (string_value)))) + (string + (string_value)))) (expression_statement (shell_command_expression (variable_name @@ -148,7 +152,7 @@ Nesting of expression in backticks -------------------------------------------------------------------------------- -(program +(php (php_tag) (expression_statement (binary_expression @@ -166,7 +170,7 @@ Nested escaped backticks -------------------------------------------------------------------------------- -(program +(php (php_tag) (expression_statement (shell_command_expression @@ -183,7 +187,7 @@ Comment in backticks -------------------------------------------------------------------------------- -(program +(php (php_tag) (expression_statement (shell_command_expression diff --git a/tree-sitter-php-only/test/corpus/expressions.txt b/tree-sitter-php-only/test/corpus/expressions.txt new file mode 100644 index 00000000..c980b09c --- /dev/null +++ b/tree-sitter-php-only/test/corpus/expressions.txt @@ -0,0 +1,1551 @@ +================================================================================ +Dynamic variable names +================================================================================ + +current()); + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (assignment_expression + (variable_name + (name)) + (object_creation_expression + (name) + (arguments + (argument + (member_call_expression + (variable_name + (name)) + (name) + (arguments)))))))) + +================================================================================ +Scoped self call expressions +================================================================================ + + + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (conditional_expression + (conditional_expression + (boolean) + (boolean) + (boolean)) + (encapsed_string + (string_value)) + (encapsed_string + (string_value))))) + +================================================================================ +Associativity of null-coalescence +================================================================================ + + + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (binary_expression + (null) + (binary_expression + (null) + (integer))))) + +================================================================================ +Associativity of negation +================================================================================ + + + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (binary_expression + (unary_op_expression + (integer)) + (unary_op_expression + (integer)))) + (expression_statement + (unary_op_expression + (binary_expression + (variable_name + (name)) + (name))))) + +================================================================================ +Augmented assignment +================================================================================ + + + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (augmented_assignment_expression + (variable_name + (name)) + (assignment_expression + (variable_name + (name)) + (encapsed_string + (string_value))))) + (expression_statement + (augmented_assignment_expression + (variable_name + (name)) + (augmented_assignment_expression + (variable_name + (name)) + (integer)))) + (expression_statement + (augmented_assignment_expression + (variable_name + (name)) + (binary_expression + (encapsed_string + (string_value)) + (encapsed_string + (string_value))))) + (expression_statement + (binary_expression + (encapsed_string + (string_value)) + (augmented_assignment_expression + (variable_name + (name)) + (encapsed_string + (string_value)))))) + +================================================================================ +Nested assignemnts +================================================================================ + + 12 << 13 + 14 * (int) 15 instanceof foo; +(int) 1 instanceof foo / 3 - 4 >> 5 <= 6 <=> 7 & 8 ^ 9 | 10 && 11 || 12 ?? $i += 13 and 14 xor 15 or 16; + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (binary_expression + (integer) + (binary_expression + (integer) + (binary_expression + (integer) + (augmented_assignment_expression + (variable_name + (name)) + (binary_expression + (integer) + (binary_expression + (integer) + (binary_expression + (integer) + (binary_expression + (integer) + (binary_expression + (integer) + (binary_expression + (integer) + (binary_expression + (integer) + (binary_expression + (integer) + (binary_expression + (integer) + (binary_expression + (integer) + (binary_expression + (integer) + (binary_expression + (cast_expression + (cast_type) + (integer)) + (name)))))))))))))))))) + (expression_statement + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (binary_expression + (cast_expression + (cast_type) + (integer)) + (name)) + (integer)) + (integer)) + (integer)) + (integer)) + (integer)) + (integer)) + (integer)) + (integer)) + (integer)) + (integer)) + (augmented_assignment_expression + (variable_name + (name)) + (integer))) + (integer)) + (integer)) + (integer)))) + +================================================================================ +Concatenation precedence +================================================================================ + + "orange", "bar" => "apple", "baz" => "lemon"]); +$a = [...$values]; +?> + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (function_call_expression + (name) + (arguments + (argument + (array_creation_expression + (array_element_initializer + (integer)) + (array_element_initializer + (integer)) + (array_element_initializer + (integer))))))) + (expression_statement + (function_call_expression + (name) + (arguments + (argument + (array_creation_expression + (array_element_initializer + (encapsed_string + (string_value)) + (encapsed_string + (string_value))) + (array_element_initializer + (encapsed_string + (string_value)) + (encapsed_string + (string_value))) + (array_element_initializer + (encapsed_string + (string_value)) + (encapsed_string + (string_value)))))))) + (expression_statement + (assignment_expression + (variable_name + (name)) + (array_creation_expression + (array_element_initializer + (variadic_unpacking + (variable_name + (name)))))))) + +================================================================================ +Anonymous functions +================================================================================ + +createNotFoundException(); +throw static::createNotFoundException(); +throw $userIsAuthorized ? new ForbiddenException() : new UnauthorizedException(); +throw $maybeNullException ?? new Exception(); +throw $exception = new Exception(); +throw $condition1 && $condition2 ? new Exception1() : new Exception2(); +throw $exception ??= new Exception(); + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (throw_expression + (object_creation_expression + (name) + (arguments + (argument + (name)))))) + (expression_statement + (assignment_expression + left: (variable_name + (name)) + right: (conditional_expression + condition: (unary_op_expression + (function_call_expression + function: (name) + arguments: (arguments + (argument + (variable_name + (name)))))) + body: (function_call_expression + function: (name) + arguments: (arguments + (argument + (variable_name + (name))))) + alternative: (throw_expression + (object_creation_expression + (name) + (arguments)))))) + (expression_statement + (binary_expression + left: (variable_name + (name)) + right: (throw_expression + (object_creation_expression + (name) + (arguments))))) + (expression_statement + (binary_expression + left: (variable_name + (name)) + right: (throw_expression + (object_creation_expression + (name) + (arguments))))) + (expression_statement + (binary_expression + left: (variable_name + (name)) + right: (throw_expression + (object_creation_expression + (name) + (arguments))))) + (expression_statement + (binary_expression + left: (variable_name + (name)) + right: (throw_expression + (object_creation_expression + (name) + (arguments))))) + (expression_statement + (throw_expression + (member_call_expression + object: (variable_name + (name)) + name: (name) + arguments: (arguments)))) + (expression_statement + (throw_expression + (scoped_call_expression + scope: (relative_scope) + name: (name) + arguments: (arguments)))) + (expression_statement + (throw_expression + (conditional_expression + condition: (variable_name + (name)) + body: (object_creation_expression + (name) + (arguments)) + alternative: (object_creation_expression + (name) + (arguments))))) + (expression_statement + (throw_expression + (binary_expression + left: (variable_name + (name)) + right: (object_creation_expression + (name) + (arguments))))) + (expression_statement + (throw_expression + (assignment_expression + left: (variable_name + (name)) + right: (object_creation_expression + (name) + (arguments))))) + (expression_statement + (throw_expression + (conditional_expression + condition: (binary_expression + left: (variable_name + (name)) + right: (variable_name + (name))) + body: (object_creation_expression + (name) + (arguments)) + alternative: (object_creation_expression + (name) + (arguments))))) + (expression_statement + (throw_expression + (augmented_assignment_expression + left: (variable_name + (name)) + right: (object_creation_expression + (name) + (arguments)))))) + +================================================================================ +Nullsafe operator +================================================================================ + +b; +$a?->b($c); +new $a?->b; +$country = $session?->user?->getAddress()?->country; + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (nullsafe_member_access_expression + (variable_name + (name)) + (name))) + (expression_statement + (nullsafe_member_call_expression + (variable_name + (name)) + (name) + (arguments + (argument + (variable_name + (name)))))) + (expression_statement + (object_creation_expression + (nullsafe_member_access_expression + (variable_name + (name)) + (name)))) + (expression_statement + (assignment_expression + (variable_name + (name)) + (nullsafe_member_access_expression + (nullsafe_member_call_expression + (nullsafe_member_access_expression + (variable_name + (name)) + (name)) + (name) + (arguments)) + (name))))) + +================================================================================ +First class callable syntax +================================================================================ + +foo(...); +A::foo(...); + +// These are invalid, but accepted on the parser level. +new Foo(...); + +#[Foo(...)] +function foo() {} + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (function_call_expression + (name) + (arguments + (variadic_placeholder)))) + (expression_statement + (member_call_expression + (variable_name + (name)) + (name) + (arguments + (variadic_placeholder)))) + (expression_statement + (scoped_call_expression + (name) + (name) + (arguments + (variadic_placeholder)))) + (comment) + (expression_statement + (object_creation_expression + (name) + (arguments + (variadic_placeholder)))) + (function_definition + (attribute_list + (attribute_group + (attribute + (name) + (arguments + (variadic_placeholder))))) + (name) + (formal_parameters) + (compound_statement))) + +================================================================================ +Match expressions +================================================================================ + + $b, + Lexer::T_UPDATE => updateStatement(), + Lexer::T_DELETE => $this->DeleteStatement(), + default => $this->syntaxError('SELECT, UPDATE or DELETE'), +}; + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (assignment_expression + (variable_name + (name)) + (match_expression + (parenthesized_expression + (variable_name + (name))) + (match_block + (match_conditional_expression + (match_condition_list + (class_constant_access_expression + (name) + (name)) + (variable_name + (name))) + (variable_name + (name))) + (match_conditional_expression + (match_condition_list + (class_constant_access_expression + (name) + (name))) + (function_call_expression + (name) + (arguments))) + (match_conditional_expression + (match_condition_list + (class_constant_access_expression + (name) + (name))) + (member_call_expression + (variable_name + (name)) + (name) + (arguments))) + (match_default_expression + (member_call_expression + (variable_name + (name)) + (name) + (arguments + (argument + (string + (string_value))))))))))) + +================================================================================ +Arrow functions +================================================================================ + + $a; +fn($x = 42) => $x; +static fn(&$x) => $x; +fn&($x) => $x; +fn($x, ...$rest) => $rest; +fn(): int => $x; + +$fn1 = fn($x) => $x + $y; + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (arrow_function + parameters: (formal_parameters + (simple_parameter + type: (union_type + (primitive_type)) + name: (variable_name + (name)))) + body: (variable_name + (name)))) + (expression_statement + (arrow_function + parameters: (formal_parameters + (simple_parameter + name: (variable_name + (name)) + default_value: (integer))) + body: (variable_name + (name)))) + (expression_statement + (arrow_function + (static_modifier) + parameters: (formal_parameters + (simple_parameter + reference_modifier: (reference_modifier) + name: (variable_name + (name)))) + body: (variable_name + (name)))) + (expression_statement + (arrow_function + reference_modifier: (reference_modifier) + parameters: (formal_parameters + (simple_parameter + name: (variable_name + (name)))) + body: (variable_name + (name)))) + (expression_statement + (arrow_function + parameters: (formal_parameters + (simple_parameter + name: (variable_name + (name))) + (variadic_parameter + name: (variable_name + (name)))) + body: (variable_name + (name)))) + (expression_statement + (arrow_function + parameters: (formal_parameters) + return_type: (union_type + (primitive_type)) + body: (variable_name + (name)))) + (expression_statement + (assignment_expression + left: (variable_name + (name)) + right: (arrow_function + parameters: (formal_parameters + (simple_parameter + name: (variable_name + (name)))) + body: (binary_expression + left: (variable_name + (name)) + right: (variable_name + (name))))))) + +================================================================================ +Functions with named arguments +================================================================================ + + $x; +fn&($x) => $x; + +function() use($a, &$b) {}; +function &($a) {}; + +foreach ($a as &$b) {} +foreach ($a as $b => &$c) {} + +f(&$a); + +function a(&$b) {} +function &a($b) {} + +$target = &$GLOBALS['_' . \strtoupper($array)]; + +array('a', &$b, 'c' => 'd', 'e' => &$f); + +[&$x]; + +list(&$v) = $x; + +list('k' => &$v) = $x; + +[&$v] = $x; + +['k' => &$v] = $x; + +class A { + function foo() { + $this->a = 3; + return [&$this->a]; + } +} + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (reference_assignment_expression + (variable_name + (name)) + (object_creation_expression + (name)))) + (expression_statement + (reference_assignment_expression + (variable_name + (name)) + (variable_name + (name)))) + (function_definition + (name) + (formal_parameters + (simple_parameter + (variable_name + (name))) + (variadic_parameter + (reference_modifier) + (variable_name + (name)))) + (compound_statement)) + (function_definition + (name) + (formal_parameters + (simple_parameter + (variable_name + (name))) + (variadic_parameter + (union_type + (named_type + (name))) + (reference_modifier) + (variable_name + (name)))) + (compound_statement)) + (expression_statement + (arrow_function + (static_modifier) + (formal_parameters + (simple_parameter + (reference_modifier) + (variable_name + (name)))) + (variable_name + (name)))) + (expression_statement + (arrow_function + (reference_modifier) + (formal_parameters + (simple_parameter + (variable_name + (name)))) + (variable_name + (name)))) + (expression_statement + (anonymous_function_creation_expression + (formal_parameters) + (anonymous_function_use_clause + (variable_name + (name)) + (by_ref + (variable_name + (name)))) + (compound_statement))) + (expression_statement + (anonymous_function_creation_expression + (reference_modifier) + (formal_parameters + (simple_parameter + (variable_name + (name)))) + (compound_statement))) + (foreach_statement + (variable_name + (name)) + (by_ref + (variable_name + (name))) + (compound_statement)) + (foreach_statement + (variable_name + (name)) + (pair + (variable_name + (name)) + (by_ref + (variable_name + (name)))) + (compound_statement)) + (expression_statement + (function_call_expression + (name) + (arguments + (argument + (reference_modifier) + (variable_name + (name)))))) + (function_definition + (name) + (formal_parameters + (simple_parameter + (reference_modifier) + (variable_name + (name)))) + (compound_statement)) + (function_definition + (reference_modifier) + (name) + (formal_parameters + (simple_parameter + (variable_name + (name)))) + (compound_statement)) + (expression_statement + (reference_assignment_expression + (variable_name + (name)) + (subscript_expression + (variable_name + (name)) + (binary_expression + (string + (string_value)) + (function_call_expression + (qualified_name + (namespace_name_as_prefix) + (name)) + (arguments + (argument + (variable_name + (name))))))))) + (expression_statement + (array_creation_expression + (array_element_initializer + (string + (string_value))) + (array_element_initializer + (by_ref + (variable_name + (name)))) + (array_element_initializer + (string + (string_value)) + (string + (string_value))) + (array_element_initializer + (string + (string_value)) + (by_ref + (variable_name + (name)))))) + (expression_statement + (array_creation_expression + (array_element_initializer + (by_ref + (variable_name + (name)))))) + (expression_statement + (assignment_expression + (list_literal + (by_ref + (variable_name + (name)))) + (variable_name + (name)))) + (expression_statement + (assignment_expression + (list_literal + (string + (string_value)) + (by_ref + (variable_name + (name)))) + (variable_name + (name)))) + (expression_statement + (assignment_expression + (list_literal + (by_ref + (variable_name + (name)))) + (variable_name + (name)))) + (expression_statement + (assignment_expression + (list_literal + (string + (string_value)) + (by_ref + (variable_name + (name)))) + (variable_name + (name)))) + (class_declaration + (name) + (declaration_list + (method_declaration + (name) + (formal_parameters) + (compound_statement + (expression_statement + (assignment_expression + (member_access_expression + (variable_name + (name)) + (name)) + (integer))) + (return_statement + (array_creation_expression + (array_element_initializer + (by_ref + (member_access_expression + (variable_name + (name)) + (name))))))))))) + +================================================================================ +Empty match expressions +================================================================================ + + + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (boolean)) + (expression_statement + (boolean)) + (expression_statement + (boolean)) + (expression_statement + (boolean)) + (expression_statement + (boolean)) + (expression_statement + (boolean))) + +================================================================================ +Floats +================================================================================ + + + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (echo_statement + (binary_expression + (encapsed_string + (escape_sequence) + (escape_sequence) + (escape_sequence) + (string_value)) + (string + (string_value))))) + +================================================================================ +Shell command +================================================================================ + 0) { + echo "Yes"; +} + +if ($a==0) { + echo "bad"; +} else { + echo "good"; +} + +if ($a==0) { + echo "bad"; +} elseif ($a==3) { + echo "bad"; +} else { + echo "good"; +} + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (if_statement + condition: (parenthesized_expression + (binary_expression + left: (variable_name + (name)) + right: (integer))) + body: (compound_statement + (echo_statement + (encapsed_string + (string_value))))) + (if_statement + condition: (parenthesized_expression + (binary_expression + left: (variable_name + (name)) + right: (integer))) + body: (compound_statement + (echo_statement + (encapsed_string + (string_value)))) + alternative: (else_clause + body: (compound_statement + (echo_statement + (encapsed_string + (string_value)))))) + (if_statement + condition: (parenthesized_expression + (binary_expression + left: (variable_name + (name)) + right: (integer))) + body: (compound_statement + (echo_statement + (encapsed_string + (string_value)))) + alternative: (else_if_clause + condition: (parenthesized_expression + (binary_expression + left: (variable_name + (name)) + right: (integer))) + body: (compound_statement + (echo_statement + (encapsed_string + (string_value))))) + alternative: (else_clause + body: (compound_statement + (echo_statement + (encapsed_string + (string_value))))))) + +================================================================================ +Alternative if statements +================================================================================ + + + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (switch_statement + condition: (parenthesized_expression + (variable_name + (name))) + body: (switch_block + (case_statement + value: (integer) + (echo_statement + (encapsed_string + (string_value))) + (break_statement)) + (case_statement + value: (integer) + (echo_statement + (encapsed_string + (string_value))) + (break_statement)) + (default_statement + (echo_statement + (encapsed_string + (string_value))) + (break_statement))))) + +================================================================================ +Alternative switch statements +================================================================================ + +0); + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (do_statement + body: (compound_statement + (echo_statement + (variable_name + (name))) + (expression_statement + (update_expression + (variable_name + (name))))) + condition: (parenthesized_expression + (binary_expression + left: (variable_name + (name)) + right: (integer))))) + +================================================================================ +Try statements +================================================================================ + +getException(); + print "\n"; +} + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (try_statement + body: (compound_statement) + (catch_clause + type: (type_list + (named_type + (name))) + body: (compound_statement)) + (catch_clause + type: (type_list + (named_type + (name)) + (named_type + (name))) + name: (variable_name + (name)) + body: (compound_statement)) + (finally_clause + body: (compound_statement))) + (try_statement + body: (compound_statement + (expression_statement + (function_call_expression + function: (name) + arguments: (arguments)))) + (catch_clause + type: (type_list + (named_type + (name))) + name: (variable_name + (name)) + body: (compound_statement + (expression_statement + (print_intrinsic + (binary_expression + left: (encapsed_string + (string_value)) + right: (member_call_expression + object: (variable_name + (name)) + name: (name) + arguments: (arguments))))) + (expression_statement + (print_intrinsic + (encapsed_string + (escape_sequence)))))))) + +================================================================================ +Foreach statements +================================================================================ + + $value); + +foreach($a as $b): + echo $a; + echo $b; +endforeach; + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (foreach_statement + (variable_name + (name)) + (subscript_expression + (variable_name + (name)) + (integer)) + body: (compound_statement + (echo_statement + (binary_expression + left: (subscript_expression + (variable_name + (name)) + (integer)) + right: (encapsed_string + (escape_sequence)))))) + (foreach_statement + (variable_name + (name)) + (pair + (variable_name + (name)) + (variable_name + (name)))) + (foreach_statement + (variable_name + (name)) + (variable_name + (name)) + body: (colon_block + (echo_statement + (variable_name + (name))) + (echo_statement + (variable_name + (name)))))) + +================================================================================ +Case insensitive keywords +================================================================================ + +john drank some $juices[0] juice.".PHP_EOL; "$people->john then said hello to $people->jane.".PHP_EOL; "$people->john's wife greeted $people->robert."; "The character at index -2 is $string[-2]."; - ---- - -(program - (php_tag) - (expression_statement - (binary_expression - (encapsed_string - (member_access_expression - (variable_name (name)) - (name) - ) - (string_value) - (subscript_expression - (variable_name (name)) - (integer) - ) - (string_value) - ) - (name) - ) - ) - (expression_statement - (binary_expression - (encapsed_string - (member_access_expression - (variable_name (name)) - (name) - ) - (string_value) - (member_access_expression - (variable_name (name)) - (name) - ) - (string_value) - ) - (name) - ) - ) - (expression_statement - (encapsed_string - (member_access_expression - (variable_name (name)) - (name) - ) - (string_value) - (member_access_expression - (variable_name (name)) - (name) - ) - (string_value) - ) - ) - (expression_statement - (encapsed_string - (string_value) - (subscript_expression - (variable_name (name)) - (unary_op_expression (integer)) - ) - (string_value) - ) - ) -) - - -========================================= -Corner cases -========================================= + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (binary_expression + (encapsed_string + (member_access_expression + (variable_name + (name)) + (name)) + (string_value) + (subscript_expression + (variable_name + (name)) + (integer)) + (string_value)) + (name))) + (expression_statement + (binary_expression + (encapsed_string + (member_access_expression + (variable_name + (name)) + (name)) + (string_value) + (member_access_expression + (variable_name + (name)) + (name)) + (string_value)) + (name))) + (expression_statement + (encapsed_string + (member_access_expression + (variable_name + (name)) + (name)) + (string_value) + (member_access_expression + (variable_name + (name)) + (name)) + (string_value))) + (expression_statement + (encapsed_string + (string_value) + (subscript_expression + (variable_name + (name)) + (unary_op_expression + (integer))) + (string_value)))) + +================================================================================ +Corner cases +================================================================================ atlas?->go(); EOF; - ---- - -(program - (php_tag) - (expression_statement - (nowdoc - identifier: (heredoc_start) - value: (nowdoc_body - (nowdoc_string) - ) - end_tag: (heredoc_end) - ) - ) - (expression_statement - (nowdoc - identifier: (heredoc_start) - end_tag: (heredoc_end) - ) - ) - (expression_statement - (nowdoc - identifier: (heredoc_start) - end_tag: (heredoc_end) - ) - ) - (expression_statement - (nowdoc - identifier: (heredoc_start) - end_tag: (heredoc_end) - ) - ) - (expression_statement - (nowdoc - identifier: (heredoc_start) - value: (nowdoc_body - (nowdoc_string) - ) - end_tag: (heredoc_end) - ) - ) - (expression_statement - (nowdoc - identifier: (heredoc_start) - value: (nowdoc_body - (nowdoc_string) - ) - end_tag: (heredoc_end) - ) - ) - (expression_statement - (nowdoc - identifier: (heredoc_start) - value: (nowdoc_body - (nowdoc_string) - ) - end_tag: (heredoc_end) - ) - ) - (expression_statement - (nowdoc - identifier: (heredoc_start) - value: (nowdoc_body - (nowdoc_string) - ) - end_tag: (heredoc_end) - ) - ) - (expression_statement - (nowdoc - identifier: (heredoc_start) - value: (nowdoc_body - (nowdoc_string) - (nowdoc_string) - (nowdoc_string) - ) - end_tag: (heredoc_end) - ) - ) - (expression_statement - (nowdoc - identifier: (heredoc_start) - value: (nowdoc_body - (nowdoc_string) - ) - end_tag: (heredoc_end) - ) - ) - (expression_statement - (nowdoc - identifier: (heredoc_start) - value: (nowdoc_body - (nowdoc_string) - ) - end_tag: (heredoc_end) - ) - ) -) - - -============================== -Unicode escape sequences -============================== + +-------------------------------------------------------------------------------- + +(php + (php_tag) + (expression_statement + (nowdoc + identifier: (heredoc_start) + value: (nowdoc_body + (nowdoc_string)) + end_tag: (heredoc_end))) + (expression_statement + (nowdoc + identifier: (heredoc_start) + end_tag: (heredoc_end))) + (expression_statement + (nowdoc + identifier: (heredoc_start) + end_tag: (heredoc_end))) + (expression_statement + (nowdoc + identifier: (heredoc_start) + end_tag: (heredoc_end))) + (expression_statement + (nowdoc + identifier: (heredoc_start) + value: (nowdoc_body + (nowdoc_string)) + end_tag: (heredoc_end))) + (expression_statement + (nowdoc + identifier: (heredoc_start) + value: (nowdoc_body + (nowdoc_string)) + end_tag: (heredoc_end))) + (expression_statement + (nowdoc + identifier: (heredoc_start) + value: (nowdoc_body + (nowdoc_string)) + end_tag: (heredoc_end))) + (expression_statement + (nowdoc + identifier: (heredoc_start) + value: (nowdoc_body + (nowdoc_string)) + end_tag: (heredoc_end))) + (expression_statement + (nowdoc + identifier: (heredoc_start) + value: (nowdoc_body + (nowdoc_string) + (nowdoc_string) + (nowdoc_string)) + end_tag: (heredoc_end))) + (expression_statement + (nowdoc + identifier: (heredoc_start) + value: (nowdoc_body + (nowdoc_string)) + end_tag: (heredoc_end))) + (expression_statement + (nowdoc + identifier: (heredoc_start) + value: (nowdoc_body + (nowdoc_string)) + end_tag: (heredoc_end)))) + +================================================================================ +Unicode escape sequences +================================================================================ [ + $._eof, + $._php_content, + $.sentinel_error, // Unused token used to indicate error recovery mode + ], + + // extras: $ => [/\s/], + + rules: { + program: $ => repeat(choice( + $.text, + $.php_only, + )), + + _php_tag: $ => /<\?([pP][hH][pP]|=)?/, + + php_only: $ => seq( + $._php_tag, + optional($._php_content), + choice('?>', $._eof), + ), + + text: $ => prec.right(repeat1(/[^<]+|" + }, + { + "type": "SYMBOL", + "name": "_eof" + } + ] + } + ] + }, + "text": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[^<]+|<" + } + } + } + }, + "extras": [ + { + "type": "PATTERN", + "value": "\\s" + } + ], + "conflicts": [], + "precedences": [], + "externals": [ + { + "type": "SYMBOL", + "name": "_eof" + }, + { + "type": "SYMBOL", + "name": "_php_content" + }, + { + "type": "SYMBOL", + "name": "sentinel_error" + } + ], + "inline": [], + "supertypes": [] +} + diff --git a/tree-sitter-php/src/node-types.json b/tree-sitter-php/src/node-types.json new file mode 100644 index 00000000..0ba6f17c --- /dev/null +++ b/tree-sitter-php/src/node-types.json @@ -0,0 +1,35 @@ +[ + { + "type": "php_only", + "named": true, + "fields": {} + }, + { + "type": "program", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "php_only", + "named": true + }, + { + "type": "text", + "named": true + } + ] + } + }, + { + "type": "text", + "named": true, + "fields": {} + }, + { + "type": "?>", + "named": false + } +] \ No newline at end of file diff --git a/tree-sitter-php/src/parser.c b/tree-sitter-php/src/parser.c new file mode 100644 index 00000000..d01adb77 --- /dev/null +++ b/tree-sitter-php/src/parser.c @@ -0,0 +1,423 @@ +#include + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 11 +#define LARGE_STATE_COUNT 4 +#define SYMBOL_COUNT 12 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 7 +#define EXTERNAL_TOKEN_COUNT 3 +#define FIELD_COUNT 0 +#define MAX_ALIAS_SEQUENCE_LENGTH 3 +#define PRODUCTION_ID_COUNT 1 + +enum { + sym__php_tag = 1, + anon_sym_QMARK_GT = 2, + aux_sym_text_token1 = 3, + sym__eof = 4, + sym__php_content = 5, + sym_sentinel_error = 6, + sym_program = 7, + sym_php_only = 8, + sym_text = 9, + aux_sym_program_repeat1 = 10, + aux_sym_text_repeat1 = 11, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym__php_tag] = "_php_tag", + [anon_sym_QMARK_GT] = "\?>", + [aux_sym_text_token1] = "text_token1", + [sym__eof] = "_eof", + [sym__php_content] = "_php_content", + [sym_sentinel_error] = "sentinel_error", + [sym_program] = "program", + [sym_php_only] = "php_only", + [sym_text] = "text", + [aux_sym_program_repeat1] = "program_repeat1", + [aux_sym_text_repeat1] = "text_repeat1", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym__php_tag] = sym__php_tag, + [anon_sym_QMARK_GT] = anon_sym_QMARK_GT, + [aux_sym_text_token1] = aux_sym_text_token1, + [sym__eof] = sym__eof, + [sym__php_content] = sym__php_content, + [sym_sentinel_error] = sym_sentinel_error, + [sym_program] = sym_program, + [sym_php_only] = sym_php_only, + [sym_text] = sym_text, + [aux_sym_program_repeat1] = aux_sym_program_repeat1, + [aux_sym_text_repeat1] = aux_sym_text_repeat1, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym__php_tag] = { + .visible = false, + .named = true, + }, + [anon_sym_QMARK_GT] = { + .visible = true, + .named = false, + }, + [aux_sym_text_token1] = { + .visible = false, + .named = false, + }, + [sym__eof] = { + .visible = false, + .named = true, + }, + [sym__php_content] = { + .visible = false, + .named = true, + }, + [sym_sentinel_error] = { + .visible = true, + .named = true, + }, + [sym_program] = { + .visible = true, + .named = true, + }, + [sym_php_only] = { + .visible = true, + .named = true, + }, + [sym_text] = { + .visible = true, + .named = true, + }, + [aux_sym_program_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_text_repeat1] = { + .visible = false, + .named = false, + }, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 9, + [10] = 10, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(6); + if (lookahead == '<') ADVANCE(2); + if (lookahead == '?') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + END_STATE(); + case 1: + if (lookahead == '>') ADVANCE(9); + END_STATE(); + case 2: + if (lookahead == '?') ADVANCE(8); + END_STATE(); + case 3: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(4); + END_STATE(); + case 4: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(7); + END_STATE(); + case 5: + if (eof) ADVANCE(6); + if (lookahead == '<') ADVANCE(11); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(10); + if (lookahead != 0) ADVANCE(12); + END_STATE(); + case 6: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 7: + ACCEPT_TOKEN(sym__php_tag); + END_STATE(); + case 8: + ACCEPT_TOKEN(sym__php_tag); + if (lookahead == '=') ADVANCE(7); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(3); + END_STATE(); + case 9: + ACCEPT_TOKEN(anon_sym_QMARK_GT); + END_STATE(); + case 10: + ACCEPT_TOKEN(aux_sym_text_token1); + if (lookahead == '<') ADVANCE(11); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(10); + if (lookahead != 0) ADVANCE(12); + END_STATE(); + case 11: + ACCEPT_TOKEN(aux_sym_text_token1); + if (lookahead == '?') ADVANCE(8); + END_STATE(); + case 12: + ACCEPT_TOKEN(aux_sym_text_token1); + if (lookahead != 0 && + lookahead != '<') ADVANCE(12); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 5}, + [2] = {.lex_state = 5}, + [3] = {.lex_state = 5}, + [4] = {.lex_state = 5}, + [5] = {.lex_state = 5}, + [6] = {.lex_state = 0, .external_lex_state = 2}, + [7] = {.lex_state = 5}, + [8] = {.lex_state = 5}, + [9] = {.lex_state = 0, .external_lex_state = 3}, + [10] = {.lex_state = 0}, +}; + +enum { + ts_external_token__eof = 0, + ts_external_token__php_content = 1, + ts_external_token_sentinel_error = 2, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__eof] = sym__eof, + [ts_external_token__php_content] = sym__php_content, + [ts_external_token_sentinel_error] = sym_sentinel_error, +}; + +static const bool ts_external_scanner_states[4][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__eof] = true, + [ts_external_token__php_content] = true, + [ts_external_token_sentinel_error] = true, + }, + [2] = { + [ts_external_token__eof] = true, + [ts_external_token__php_content] = true, + }, + [3] = { + [ts_external_token__eof] = true, + }, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym__php_tag] = ACTIONS(1), + [anon_sym_QMARK_GT] = ACTIONS(1), + [sym__eof] = ACTIONS(1), + [sym__php_content] = ACTIONS(1), + [sym_sentinel_error] = ACTIONS(1), + }, + [1] = { + [sym_program] = STATE(10), + [sym_php_only] = STATE(2), + [sym_text] = STATE(2), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_text_repeat1] = STATE(4), + [ts_builtin_sym_end] = ACTIONS(3), + [sym__php_tag] = ACTIONS(5), + [aux_sym_text_token1] = ACTIONS(7), + }, + [2] = { + [sym_php_only] = STATE(3), + [sym_text] = STATE(3), + [aux_sym_program_repeat1] = STATE(3), + [aux_sym_text_repeat1] = STATE(4), + [ts_builtin_sym_end] = ACTIONS(9), + [sym__php_tag] = ACTIONS(5), + [aux_sym_text_token1] = ACTIONS(7), + }, + [3] = { + [sym_php_only] = STATE(3), + [sym_text] = STATE(3), + [aux_sym_program_repeat1] = STATE(3), + [aux_sym_text_repeat1] = STATE(4), + [ts_builtin_sym_end] = ACTIONS(11), + [sym__php_tag] = ACTIONS(13), + [aux_sym_text_token1] = ACTIONS(16), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 4, + ACTIONS(19), 1, + ts_builtin_sym_end, + ACTIONS(21), 1, + sym__php_tag, + ACTIONS(23), 1, + aux_sym_text_token1, + STATE(5), 1, + aux_sym_text_repeat1, + [13] = 4, + ACTIONS(25), 1, + ts_builtin_sym_end, + ACTIONS(27), 1, + sym__php_tag, + ACTIONS(29), 1, + aux_sym_text_token1, + STATE(5), 1, + aux_sym_text_repeat1, + [26] = 2, + ACTIONS(34), 1, + sym__php_content, + ACTIONS(32), 2, + sym__eof, + anon_sym_QMARK_GT, + [34] = 2, + ACTIONS(36), 1, + ts_builtin_sym_end, + ACTIONS(38), 2, + sym__php_tag, + aux_sym_text_token1, + [42] = 2, + ACTIONS(40), 1, + ts_builtin_sym_end, + ACTIONS(42), 2, + sym__php_tag, + aux_sym_text_token1, + [50] = 1, + ACTIONS(44), 2, + sym__eof, + anon_sym_QMARK_GT, + [55] = 1, + ACTIONS(46), 1, + ts_builtin_sym_end, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(4)] = 0, + [SMALL_STATE(5)] = 13, + [SMALL_STATE(6)] = 26, + [SMALL_STATE(7)] = 34, + [SMALL_STATE(8)] = 42, + [SMALL_STATE(9)] = 50, + [SMALL_STATE(10)] = 55, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [11] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [13] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [16] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [19] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), + [21] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [25] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), + [27] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), + [29] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(5), + [32] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [34] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [36] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_only, 2), + [38] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_php_only, 2), + [40] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_only, 3), + [42] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_php_only, 3), + [44] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [46] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_php_external_scanner_create(void); +void tree_sitter_php_external_scanner_destroy(void *); +bool tree_sitter_php_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_php_external_scanner_serialize(void *, char *); +void tree_sitter_php_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef _WIN32 +#define extern __declspec(dllexport) +#endif + +extern const TSLanguage *tree_sitter_php(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_php_external_scanner_create, + tree_sitter_php_external_scanner_destroy, + tree_sitter_php_external_scanner_scan, + tree_sitter_php_external_scanner_serialize, + tree_sitter_php_external_scanner_deserialize, + }, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/tree-sitter-php/src/scanner.c b/tree-sitter-php/src/scanner.c new file mode 100644 index 00000000..162fa2cb --- /dev/null +++ b/tree-sitter-php/src/scanner.c @@ -0,0 +1,47 @@ +#include + +enum TokenType { + EOF_TOKEN, + PHP_CONTENT, + SENTINEL_ERROR, // Unused token used to indicate error recovery mode +}; + +void *tree_sitter_php_external_scanner_create() { } + +unsigned tree_sitter_php_external_scanner_serialize(void *payload, char *buffer) { return 0; } + +void tree_sitter_php_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { } + +void tree_sitter_php_external_scanner_destroy(void *payload) { } + +bool tree_sitter_php_external_scanner_scan(void *payload, TSLexer *lexer, + const bool *valid_symbols) { + if (valid_symbols[SENTINEL_ERROR]) return false; + + if (valid_symbols[EOF_TOKEN] && lexer->eof(lexer)) { + lexer->result_symbol = EOF_TOKEN; + return true; + } + + if (valid_symbols[PHP_CONTENT]) { + while(! lexer->eof(lexer)) { + if (lexer->lookahead != '?') { + lexer->advance(lexer, false); + } else { + lexer->mark_end(lexer); + lexer->advance(lexer, false); + + if (lexer->lookahead == '>') { + break; + } + } + + lexer->mark_end(lexer); + } + + lexer->result_symbol = PHP_CONTENT; + return true; + } + + return false; +} diff --git a/tree-sitter-php/src/tree_sitter/parser.h b/tree-sitter-php/src/tree_sitter/parser.h new file mode 100644 index 00000000..2b14ac10 --- /dev/null +++ b/tree-sitter-php/src/tree_sitter/parser.h @@ -0,0 +1,224 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +/* + * Lexer Macros + */ + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) id - LARGE_STATE_COUNT + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value, \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/tree-sitter-php/test/corpus/combined.txt b/tree-sitter-php/test/corpus/combined.txt new file mode 100644 index 00000000..db0a1c07 --- /dev/null +++ b/tree-sitter-php/test/corpus/combined.txt @@ -0,0 +1,29 @@ +================================================================================ +Text mixed with PHP +================================================================================ + + + + +
+ What is your favorite number? + Mine is: + Mine is: +
+ + +